| Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/ |
| Current File : /home/x/b/o/xbodynamge/namtation/wp-content/SeoBoost.tar |
Service.php 0000666 00000014005 15115341721 0006661 0 ustar 00 <?php
namespace AIOSEO\Plugin\Common\WritingAssistant\SeoBoost;
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Service class for SeoBoost.
*
* @since 4.7.4
*/
class Service {
/**
* The base URL for the SeoBoost microservice.
*
* @since 4.7.4
*
* @var string
*/
private $baseUrl = 'https://app.seoboost.com/api/';
/**
* Sends the keyword to be processed.
*
* @since 4.7.4
*
* @param string $keyword The keyword.
* @param string $country The country code.
* @param string $language The language code.
* @return array|\WP_Error The response.
*/
public function processKeyword( $keyword, $country = 'US', $language = 'en' ) {
if ( empty( $keyword ) || empty( $country ) || empty( $language ) ) {
return new \WP_Error( 'service-error', __( 'Missing parameters', 'all-in-one-seo-pack' ) );
}
$reportRequest = $this->doRequest( 'waAddNewReport', [
'params' => [
'keyword' => $keyword,
'country' => $country,
'language' => $language
]
] );
if ( is_wp_error( $reportRequest ) ) {
return $reportRequest;
}
if ( empty( $reportRequest ) || empty( $reportRequest['status'] ) ) {
return new \WP_Error( 'service-error', __( 'Empty response from service', 'all-in-one-seo-pack' ) );
}
if ( 'success' !== $reportRequest['status'] ) {
return new \WP_Error( 'service-error', $reportRequest['msg'] );
}
return $reportRequest;
}
/**
* Sends a post content to be analyzed.
*
* @since 4.7.4
*
* @param string $title The title.
* @param string $description The description.
* @param string $content The content.
* @param string $reportSlug The report slug.
* @return array|\WP_Error The response.
*/
public function getContentAnalysis( $title, $description, $content, $reportSlug ) {
return $this->doRequest( 'waAnalyzeContent', [
'title' => $title,
'description' => $description,
'content' => $content,
'slug' => $reportSlug
] );
}
/**
* Gets the progress for a keyword.
*
* @since 4.7.4
*
* @param string $uuid The uuid.
* @return array|\WP_Error The progress.
*/
public function getProgressAndResult( $uuid ) {
$response = $this->doRequest( 'waGetReport', [ 'slug' => $uuid ] );
if ( is_wp_error( $response ) ) {
return $response;
}
if ( empty( $response ) ) {
return new \WP_Error( 'empty-progress-and-result', __( 'Empty progress and result.', 'all-in-one-seo-pack' ) );
}
return $response;
}
/**
* Gets the user options.
*
* @since 4.7.4
*
* @return array|\WP_Error The user options.
*/
public function getUserOptions() {
return $this->doRequest( 'waGetUserOptions' );
}
/**
* Gets the user information.
*
* @since 4.7.4
*
* @return array|\WP_Error The user information.
*/
public function getUserInfo() {
return $this->doRequest( 'waGetUserInfo' );
}
/**
* Gets the access token.
*
* @since 4.7.4
*
* @param string $authToken The auth token.
* @return array|\WP_Error The response.
*/
public function getAccessToken( $authToken ) {
return $this->doRequest( 'oauthaccess', [ 'token' => $authToken ] );
}
/**
* Refreshes the access token.
*
* @since 4.7.4
*
* @return bool Was the token refreshed?
*/
private function refreshAccessToken() {
$newAccessToken = $this->doRequest( 'waRefreshAccessToken' );
if (
is_wp_error( $newAccessToken ) ||
'success' !== $newAccessToken['status']
) {
aioseo()->writingAssistant->seoBoost->setAccessToken( '' );
return false;
}
aioseo()->writingAssistant->seoBoost->setAccessToken( $newAccessToken['token'] );
return true;
}
/**
* Sends a POST request to the microservice.
*
* @since 4.7.4
*
* @param string $path The path.
* @param array $requestBody The request body.
* @return array|\WP_Error Returns the response body or WP_Error if the request failed.
*/
private function doRequest( $path, $requestBody = [] ) {
// Prevent API requests if no access token is present.
if (
'oauthaccess' !== $path && // Except if we're getting the access token.
empty( aioseo()->writingAssistant->seoBoost->getAccessToken() )
) {
return new \WP_Error( 'service-error', __( 'Missing access token', 'all-in-one-seo-pack' ) );
}
$requestData = [
'headers' => [
'X-SeoBoost-Access-Token' => aioseo()->writingAssistant->seoBoost->getAccessToken(),
'X-SeoBoost-Domain' => aioseo()->helpers->getMultiSiteDomain(),
'Content-Type' => 'application/json'
],
'timeout' => 60,
'method' => 'GET'
];
if ( ! empty( $requestBody ) ) {
$requestData['method'] = 'POST';
$requestData['body'] = wp_json_encode( $requestBody );
}
$path = trailingslashit( $this->getUrl() ) . trailingslashit( $path );
$response = wp_remote_request( $path, $requestData );
$responseBody = json_decode( wp_remote_retrieve_body( $response ), true );
if ( ! $responseBody ) {
$response = new \WP_Error( 'service-failed', __( 'Error in the SeoBoost service. Please contact support.', 'all-in-one-seo-pack' ) );
}
if ( is_wp_error( $response ) ) {
return $response;
}
// Refresh access token if expired and redo the request.
if (
isset( $responseBody['error'] ) &&
'invalid-access-token' === $responseBody['error']
) {
if ( $this->refreshAccessToken() ) {
return $this->doRequest( $path, $requestBody );
}
}
return $responseBody;
}
/**
* Returns the URL for the Writing Assistant service.
*
* @since 4.7.4
*
* @return string The URL.
*/
public function getUrl() {
$url = $this->baseUrl;
if ( defined( 'AIOSEO_WRITING_ASSISTANT_SERVICE_URL' ) ) {
$url = AIOSEO_WRITING_ASSISTANT_SERVICE_URL;
}
return $url;
}
/**
* Gets the report history.
*
* @since 4.7.4
*
* @return array|\WP_Error
*/
public function getReportHistory() {
return $this->doRequest( 'waGetReportHistory' );
}
} SeoBoost.php 0000666 00000020236 15115341721 0007021 0 ustar 00 <?php
namespace AIOSEO\Plugin\Common\WritingAssistant\SeoBoost;
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Handles the connection with SEOBoost.
*
* @since 4.7.4
*/
class SeoBoost {
/**
* URL of the login page.
*
* @since 4.7.4
*/
private $loginUrl = 'https://app.seoboost.com/login/';
/**
* URL of the Create Account page.
*
* @since 4.7.4
*/
private $createAccountUrl = 'https://seoboost.com/checkout/';
/**
* The service.
*
* @since 4.7.4
*
* @var Service
*/
public $service;
/**
* Class constructor.
*
* @since 4.7.4
*/
public function __construct() {
$this->service = new Service();
$returnParam = isset( $_GET['aioseo-writing-assistant'] ) // phpcs:ignore HM.Security.NonceVerification.Recommended, WordPress.Security.NonceVerification.Recommended
? sanitize_text_field( wp_unslash( $_GET['aioseo-writing-assistant'] ) ) // phpcs:ignore HM.Security.NonceVerification.Recommended, WordPress.Security.NonceVerification.Recommended
: null;
if ( 'auth_return' === $returnParam ) {
add_action( 'init', [ $this, 'checkToken' ], 50 );
}
if ( 'ms_logged_in' === $returnParam ) {
add_action( 'init', [ $this, 'marketingSiteCallback' ], 50 );
}
add_action( 'init', [ $this, 'migrateUserData' ], 10 );
add_action( 'init', [ $this, 'refreshUserOptionsAfterError' ] );
}
/**
* Returns if the user has an access key.
*
* @since 4.7.4
*
* @return bool
*/
public function isLoggedIn() {
return $this->getAccessToken() !== '';
}
/**
* Gets the login URL.
*
* @since 4.7.4
*
* @return string The login URL.
*/
public function getLoginUrl() {
$url = $this->loginUrl;
if ( defined( 'AIOSEO_WRITING_ASSISTANT_LOGIN_URL' ) ) {
$url = AIOSEO_WRITING_ASSISTANT_LOGIN_URL;
}
$params = [
'oauth' => true,
'redirect' => get_site_url() . '?' . build_query( [ 'aioseo-writing-assistant' => 'auth_return' ] ),
'domain' => aioseo()->helpers->getMultiSiteDomain()
];
return trailingslashit( $url ) . '?' . build_query( $params );
}
/**
* Gets the login URL.
*
* @since 4.7.4
*
* @return string The login URL.
*/
public function getCreateAccountUrl() {
$url = $this->createAccountUrl;
if ( defined( 'AIOSEO_WRITING_ASSISTANT_CREATE_ACCOUNT_URL' ) ) {
$url = AIOSEO_WRITING_ASSISTANT_CREATE_ACCOUNT_URL;
}
$params = [
'url' => base64_encode( get_site_url() . '?' . build_query( [ 'aioseo-writing-assistant' => 'ms_logged_in' ] ) ),
'writing-assistant-checkout' => true
];
return trailingslashit( $url ) . '?' . build_query( $params );
}
/**
* Gets the user's access token.
*
* @since 4.7.4
*
* @return string The access token.
*/
public function getAccessToken() {
$metaKey = 'seoboost_access_token_' . get_current_blog_id();
return get_user_meta( get_current_user_id(), $metaKey, true );
}
/**
* Sets the user's access token.
*
* @since 4.7.4
*
* @return void
*/
public function setAccessToken( $accessToken ) {
$metaKey = 'seoboost_access_token_' . get_current_blog_id();
update_user_meta( get_current_user_id(), $metaKey, $accessToken );
$this->refreshUserOptions();
}
/**
* Refreshes user options from SEOBoost.
*
* @since 4.7.4
*
* @return void
*/
public function refreshUserOptions() {
$userOptions = $this->service->getUserOptions();
if ( is_wp_error( $userOptions ) || ! empty( $userOptions['error'] ) ) {
$userOptions = $this->getDefaultUserOptions();
aioseo()->cache->update( 'seoboost_get_user_options_error', time() + DAY_IN_SECONDS, MONTH_IN_SECONDS );
}
$this->setUserOptions( $userOptions );
}
/**
* Gets the user options.
*
* @since 4.7.4
*
* @param bool $refresh Whether to refresh the user options.
* @return array The user options.
*/
public function getUserOptions( $refresh = false ) {
if ( ! $refresh ) {
$metaKey = 'seoboost_user_options_' . get_current_blog_id();
$userOptions = get_user_meta( get_current_user_id(), $metaKey, true );
if ( ! empty( $userOptions ) ) {
return json_decode( (string) $userOptions, true ) ?? [];
}
}
// If there are no options or we need to refresh them, get them from SEOBoost.
$this->refreshUserOptions();
$userOptions = $this->getUserOptions();
if ( empty( $userOptions ) ) {
return $this->getDefaultUserOptions();
}
return $userOptions;
}
/**
* Gets the user options.
*
* @since 4.7.4
*
* @param array $options The user options.
* @return void
*/
public function setUserOptions( $options ) {
if ( ! is_array( $options ) ) {
return;
}
$metaKey = 'seoboost_user_options_' . get_current_blog_id();
$userOptions = array_intersect_key( $options, $this->getDefaultUserOptions() );
update_user_meta( get_current_user_id(), $metaKey, wp_json_encode( $userOptions ) );
}
/**
* Gets the user info from SEOBoost.
*
* @since 4.7.4
*
* @return array|\WP_Error The user info or a WP_Error.
*/
public function getUserInfo() {
return $this->service->getUserInfo();
}
/**
* Checks the token.
*
* @since 4.7.4
*
* @return void
*/
public function checkToken() {
$authToken = isset( $_GET['token'] ) // phpcs:ignore HM.Security.NonceVerification.Recommended, WordPress.Security.NonceVerification.Recommended
? sanitize_key( wp_unslash( $_GET['token'] ) ) // phpcs:ignore HM.Security.NonceVerification.Recommended, WordPress.Security.NonceVerification.Recommended
: null;
if ( $authToken ) {
$accessToken = $this->service->getAccessToken( $authToken );
if ( ! is_wp_error( $accessToken ) && ! empty( $accessToken['token'] ) ) {
$this->setAccessToken( $accessToken['token'] );
?>
<script>
// Send message to parent window.
window.opener.postMessage('seoboost-authenticated', '*');
</script>
<?php
}
}
?>
<script>
// Close window.
window.close();
</script>
<?php
die;
}
/**
* Handles the callback from the marketing site after completing authentication.
*
* @since 4.7.4
*
* @return void
*/
public function marketingSiteCallback() {
?>
<script>
// Send message to parent window.
window.opener.postMessage('seoboost-ms-logged-in', '*');
window.close();
</script>
<?php
}
/**
* Resets the logins.
*
* @since 4.7.4
*
* @return void
*/
public function resetLogins() {
// Delete access token and user options from the database.
aioseo()->core->db->delete( 'usermeta' )->whereRaw( 'meta_key LIKE \'seoboost_access_token%\'' )->run();
aioseo()->core->db->delete( 'usermeta' )->where( 'meta_key', 'seoboost_user_options' )->run();
}
/**
* Gets the report history.
*
* @since 4.7.4
*
* @return array|\WP_Error The report history.
*/
public function getReportHistory() {
return $this->service->getReportHistory();
}
/**
* Migrate Writing Assistant access tokens.
* This handles the fix for multisites where subsites all used the same workspace/account.
*
* @since 4.7.7
*
* @return void
*/
public function migrateUserData() {
$userToken = get_user_meta( get_current_user_id(), 'seoboost_access_token', true );
if ( ! empty( $userToken ) ) {
$this->setAccessToken( $userToken );
delete_user_meta( get_current_user_id(), 'seoboost_access_token' );
}
$userOptions = get_user_meta( get_current_user_id(), 'seoboost_user_options', true );
if ( ! empty( $userOptions ) ) {
$this->setUserOptions( $userOptions );
delete_user_meta( get_current_user_id(), 'seoboost_user_options' );
}
}
/**
* Refreshes user options after an error.
* This needs to run on init since service class is not available in the constructor.
*
* @since 4.7.7.2
*
* @return void
*/
public function refreshUserOptionsAfterError() {
$userOptionsFetchError = aioseo()->cache->get( 'seoboost_get_user_options_error' );
if ( $userOptionsFetchError && time() > $userOptionsFetchError ) {
aioseo()->cache->delete( 'seoboost_get_user_options_error' );
$this->refreshUserOptions();
}
}
/**
* Returns the default user options.
*
* @since 4.7.7.1
*
* @return array The default user options.
*/
private function getDefaultUserOptions() {
return [
'language' => 'en',
'country' => 'US'
];
}
}