load (); } /** * Is there a valid access token and refresh token */ public function isValid() { $accessToken = $this->getAccessToken (); $refreshToken = $this->getRefreshToken (); return ! (empty ( $accessToken ) || empty ( $refreshToken )); } /** * Load the Postman OAuth token properties to the database */ private function load() { $a = get_option ( PostmanOAuthToken::OPTIONS_NAME ); if ( ! is_array( $a ) ) { return; } if ( isset( $a [PostmanOAuthToken::ACCESS_TOKEN] ) ) { $this->setAccessToken ( $a [PostmanOAuthToken::ACCESS_TOKEN] ); } if ( isset( $a [PostmanOAuthToken::REFRESH_TOKEN] ) ) { $this->setRefreshToken($a [PostmanOAuthToken::REFRESH_TOKEN]); } if ( isset( $a [PostmanOAuthToken::EXPIRY_TIME] ) ) { $this->setExpiryTime($a [PostmanOAuthToken::EXPIRY_TIME]); } if ( isset( $a [PostmanOAuthToken::VENDOR_NAME] ) ) { $this->setVendorName($a [PostmanOAuthToken::VENDOR_NAME]); } } /** * Save the Postman OAuth token properties to the database */ public function save() { $a [PostmanOAuthToken::ACCESS_TOKEN] = $this->getAccessToken (); $a [PostmanOAuthToken::REFRESH_TOKEN] = $this->getRefreshToken (); $a [PostmanOAuthToken::EXPIRY_TIME] = $this->getExpiryTime (); $a [PostmanOAuthToken::VENDOR_NAME] = $this->getVendorName (); update_option ( PostmanOAuthToken::OPTIONS_NAME, $a ); } public function getVendorName() { return $this->vendorName; } public function getExpiryTime() { return $this->expiryTime; } public function getAccessToken() { return $this->accessToken; } public function getRefreshToken() { return $this->refreshToken; } public function setVendorName($name) { $this->vendorName = sanitize_text_field ( $name ); } public function setExpiryTime($time) { $this->expiryTime = sanitize_text_field ( $time ); } public function setAccessToken($token) { $this->accessToken = sanitize_text_field ( $token ); } public function setRefreshToken($token) { $this->refreshToken = sanitize_text_field ( $token ); } } }