options_helper = $options_helper; } /** * If the integration is activated. * * @return bool If the integration is activated. */ public function is_enabled(): bool { return (bool) $this->options_helper->get( 'semrush_integration_active', true ); } /** * Return this object represented by a key value array. * * @return array Returns the name and if the feature is enabled. */ public function to_array(): array { return [ 'active' => $this->is_enabled(), 'countryCode' => $this->options_helper->get( 'semrush_country_code', false ), 'loginStatus' => $this->options_helper->get( 'semrush_integration_active', true ) && $this->get_semrush_login_status(), ]; } /** * Returns this object represented by a key value structure that is compliant with the script data array. * * @return array Returns the legacy key and if the feature is enabled. */ public function to_legacy_array(): array { return [ 'semrushIntegrationActive' => $this->is_enabled(), 'countryCode' => $this->options_helper->get( 'semrush_country_code', false ), 'SEMrushLoginStatus' => $this->options_helper->get( 'semrush_integration_active', true ) && $this->get_semrush_login_status(), ]; } /** * Checks if the user is logged in to SEMrush. * * @return bool The SEMrush login status. */ private function get_semrush_login_status() { try { // Do this just in time to handle constructor exception. $semrush_client = \YoastSEO()->classes->get( SEMrush_Client::class ); } catch ( Empty_Property_Exception $e ) { // Return false if token is malformed (empty property). return false; } // Get token (and refresh it if it's expired). try { $semrush_client->get_tokens(); } catch ( Authentication_Failed_Exception | Empty_Token_Exception $e ) { return false; } return $semrush_client->has_valid_tokens(); } }