%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/higroup/1618475457800/wp-content/plugins/wp-social/inc/
Upload File :
Create Path :
Current File : /var/www/html/higroup/1618475457800/wp-content/plugins/wp-social/inc/admin-rest-api.php

<?php

defined('ABSPATH') || exit;

/**
 * Function Name : xs_return_call_back_login_function();
 * Function Details : WP Rest API.
 *
 * @params : void
 *
 * @return : array()
 *
 * @since : 1.0
 */
if(!function_exists('xs_return_call_back_login_function')) {

	function xs_return_call_back_login_function(WP_REST_Request $request) {

		$param = $request['data'];
		if(is_null($param)) {
			$typeSocial = '';
		}

		$typeSocial  = $param;
		$socialType  = '';
		$callBackUrl = '';

		require_once(WSLU_LOGIN_PLUGIN . '/inc/admin-create-user.php');
		die();
	}
}

/**
 * wp rest api add action
 */
add_action('rest_api_init', function() {

	//https://dev.finesttheme.com/social/wp-json/wslu-social-login/type/google
	register_rest_route('wslu-social-login', '/type/(?P<data>\w+)/',
		array(
			'methods'  => 'GET',
			'callback' => 'xs_return_call_back_login_function',
			'permission_callback' => '__return_true',
		)
	);


	register_rest_route('wslu/v1', '/check_cache/(?P<type>\w+)/',
		array(
			'methods'  => 'POST',
			'callback' => 'post_check_counter_cache',
			'permission_callback' => '__return_true',
		)
	);

	register_rest_route('wslu/v1', '/save_cache/(?P<type>\w+)/',
		array(
			'methods'  => 'POST',
			'callback' => 'post_save_instagram_counter_cache',
			'permission_callback' => '__return_true',
		)
	);
});


function post_save_instagram_counter_cache(WP_REST_Request $request) {

	$data = $request->get_params();

	$ins = new \WP_Social\Lib\Counter\Instagram_Counter();

	$ins->cache_instagram_return($data['content']['count'], \WP_Social\App\Settings::get_counter_cache_time());

	return array(
		'success' => true,
		'msg'     => 'successfully fetched and cached',
		//'result' => $data,
	);
}


function post_check_counter_cache(WP_REST_Request $request) {

	$data = $request->get_params();

	if($data['type'] == 'instagram') {

		$ins = new \WP_Social\Lib\Counter\Instagram_Counter();

		$ins->load();

		if($ins->cache_expired) {

			return array(
				'msg'     => 'Successfull',
				'expired' => true,
				'unm'     => $ins->user_id,
				'success' => true,
			);
		}


		return array(
			'msg'     => 'Successfull',
			'expired' => false,
			'success' => true,
		);
	}

	return array(
		'msg'     => 'error',
		'success' => false,
	);
}


Zerion Mini Shell 1.0