mirror of
https://gh.wpcy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-04-24 03:45:41 +08:00
* Initial refactor commit
* ✅ Added build and tests CI/CD
* update: add src for admin settings
* update: incorrect constant names
* update: namespace
* add: accessibility settings
* update: webpack to output files inside a folder
* update: build output folders
* update: removed commented code
* update: npm scripts
* add: webpack config
* add: hooks
* update: move admin setting to the module folder
* update: assets loading logic
* update: add rule to move jsx props to multiline imporving readability
* add: connect modal
* update: hooks import for better readability
* update: replace functions with hooks
* add: connect module
* add: settings and get settings route
* add: hooks and contexts to get settings
* add: hooks
* add: notification component
* add: data api
* add: settings provider and connect settings
* add: husky
* fix: formatting and text-domain
* update: filter names
* fix: hook import
* add: set function for settings
* add: prop-types package
* update: refactor notification component and context
* update: remove filter for authorize url
* update: imports and exports of hooks
* update: plugin settings context filename and relevant imports
---------
Co-authored-by: Ohad <ohad@elementor.com>
59 lines
1.2 KiB
PHP
59 lines
1.2 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 ) {
|
|
$this->verify_nonce_and_capability(
|
|
$request->get_param( self::NONCE_NAME ),
|
|
self::NONCE_NAME
|
|
);
|
|
|
|
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',
|
|
] );
|
|
}
|
|
}
|
|
}
|