PATH:
home
/
lab2454c
/
caimegroup.com
/
wp-content
/
plugins
/
user-registration
/
includes
/
admin
/
updater
<?php /** * Handles the Activation API responses. * * @package UserRegistration/Admin/Updates * @version 1.1.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * UR_Updater_Key_API Class. */ class UR_Updater_Key_API { /** * Endpoint. * * @var string */ private static $endpoint = 'https://wpeverest.com/edd-sl-api/?'; /** * Attempt to check a plugin license. * * @param mixed $api_params Parameters. */ public static function check( $api_params ) { $defaults = array( 'url' => home_url(), 'edd_action' => 'check_license', ); $api_params = wp_parse_args( $defaults, $api_params ); // Call the API. $response = wp_remote_post( self::$endpoint, array( 'timeout' => 15, 'body' => $api_params, /** * Filter to verify HTTPS Local SSL. * * @param boolean Verify or not. */ 'sslverify' => apply_filters( 'https_local_ssl_verify', false ), ) ); if ( is_wp_error( $response ) || wp_remote_retrieve_response_code( $response ) !== 200 ) { return false; } else { return wp_remote_retrieve_body( $response ); } } /** * Attempt to check a plugin version. * * @param mixed $api_params API Params. */ public static function version( $api_params ) { $defaults = array( 'url' => home_url(), 'edd_action' => 'get_version', ); $api_params = wp_parse_args( $defaults, $api_params ); // Call the API. $response = wp_remote_post( self::$endpoint, array( 'timeout' => 15, 'body' => $api_params, /** * Filter to verify HTTPS Local SSL. * * @param boolean Verify or not. */ 'sslverify' => apply_filters( 'https_local_ssl_verify', false ), ) ); if ( is_wp_error( $response ) || wp_remote_retrieve_response_code( $response ) !== 200 ) { return false; } else { return wp_remote_retrieve_body( $response ); } } /** * Attempt to activate a plugin license. * * @param mixed $api_params API Params. * @return string JSON response. */ public static function activate( $api_params ) { $defaults = array( 'url' => home_url(), 'edd_action' => 'activate_license', ); $api_params = wp_parse_args( $defaults, $api_params ); // Call the API. $response = wp_remote_post( self::$endpoint, array( 'timeout' => 15, 'body' => $api_params, /** * Filter to verify HTTPS Local SSL. * * @param boolean Verify or not. */ 'sslverify' => apply_filters( 'https_local_ssl_verify', false ), ) ); // Make sure there are no errors. if ( is_wp_error( $response ) ) { return wp_json_encode( array( 'error_code' => $response->get_error_code(), 'error' => $response->get_error_message(), ) ); } if ( wp_remote_retrieve_response_code( $response ) !== 200 ) { return wp_json_encode( array( 'error_code' => wp_remote_retrieve_response_code( $response ), 'error' => 'Error code: ' . wp_remote_retrieve_response_code( $response ), ) ); } // Tell WordPress to look for updates. set_site_transient( 'update_plugins', null ); return wp_remote_retrieve_body( $response ); } /** * Attempt to deactivate a plugin license. * * @param mixed $api_params API Params. */ public static function deactivate( $api_params ) { $defaults = array( 'url' => home_url(), 'edd_action' => 'deactivate_license', ); $api_params = wp_parse_args( $defaults, $api_params ); // Call the API. $response = wp_remote_post( self::$endpoint, array( 'timeout' => 15, 'body' => $api_params, /** * Filter to verify HTTPS Local SSL. * * @param boolean Verify or not. */ 'sslverify' => apply_filters( 'https_local_ssl_verify', false ), ) ); if ( is_wp_error( $response ) || wp_remote_retrieve_response_code( $response ) !== 200 ) { return false; } else { return wp_remote_retrieve_body( $response ); } } }
[-] class-ur-addon-updater.php
[edit]
[+]
..
[-] class-ur-plugin-updates.php
[edit]
[-] class-ur-plugin-updater-api.php
[edit]