mirror of
https://gh.wpcy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-04-21 11:32:30 +08:00
* update: harden connect security * add: x-elementor-app-type * update: phpcs fixed * add: missing variable * update: add x-elementor-app-type header to request function
66 lines
1.3 KiB
PHP
66 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace EA11y\Modules\Connect\Rest;
|
|
|
|
use EA11y\Modules\Connect\Classes\{
|
|
Data,
|
|
Route_Base,
|
|
Service,
|
|
Utils
|
|
};
|
|
use Throwable;
|
|
use WP_REST_Request;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly
|
|
}
|
|
|
|
/**
|
|
* Class Switch_Domain
|
|
*/
|
|
class Switch_Domain extends Route_Base {
|
|
public string $path = 'switch_domain';
|
|
public const NONCE_NAME = 'wp_rest';
|
|
|
|
public function get_methods(): array {
|
|
return [ 'POST' ];
|
|
}
|
|
|
|
public function get_name(): string {
|
|
return 'switch_domain';
|
|
}
|
|
|
|
public function POST( WP_REST_Request $request ) {
|
|
$valid = $this->verify_nonce_and_capability(
|
|
$request->get_param( self::NONCE_NAME ),
|
|
self::NONCE_NAME
|
|
);
|
|
|
|
if ( is_wp_error( $valid ) ) {
|
|
return $this->respond_error_json( [
|
|
'message' => $valid->get_error_message(),
|
|
'code' => 'forbidden',
|
|
] );
|
|
}
|
|
|
|
try {
|
|
$client_id = Data::get_client_id();
|
|
|
|
if ( ! $client_id ) {
|
|
return $this->respond_error_json( [
|
|
'message' => __( 'Client ID not found', 'pojo-accessibility' ),
|
|
'code' => 'ignore_error',
|
|
] );
|
|
}
|
|
|
|
Service::update_redirect_uri();
|
|
|
|
return $this->respond_success_json( [ 'message' => __( 'Domain updated!', 'pojo-accessibility' ) ] );
|
|
} catch ( Throwable $t ) {
|
|
return $this->respond_error_json( [
|
|
'message' => $t->getMessage(),
|
|
'code' => 'internal_server_error',
|
|
] );
|
|
}
|
|
}
|
|
}
|