Done !
Server IP : 162.0.217.223 / Your IP : 216.73.216.150 Web Server : LiteSpeed System : Linux premium269.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : mypckeys ( 1539) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/mypckeys/yeslicense.org/wp-content/plugins/yaymail/src/License/ |
Upload File : |
<?php namespace YayMail\License; defined( 'ABSPATH' ) || exit; /** * LicenseAPI * * @package LicenseAPI */ class LicenseAPI { public static function activate_license( $item_id, $license_key ) { try { $response = wp_remote_get( YAYCOMMERCE_SELLER_SITE_URL . '?edd_action=activate_license&item_id=' . $item_id . '&license=' . $license_key . '&url=' . home_url() ); $response = json_decode( $response['body'] ); if ( $response->success ) { return [ 'success' => true, 'expires' => $response->expires, 'license_limit' => $response->license_limit, 'payment_id' => $response->payment_id, 'customer_name' => $response->customer_name, ]; } return [ 'success' => false, 'message' => $response->error, ]; } catch ( \Error $error ) { return [ 'success' => false, 'message' => 'server_error', ]; }//end try } public static function check_license( $item_id, $license_key ) { try { $response = wp_remote_get( YAYCOMMERCE_SELLER_SITE_URL . '?edd_action=check_license&item_id=' . $item_id . '&license=' . $license_key . '&url=' . home_url() ); $response = json_decode( $response['body'] ); if ( true === $response->success ) { if ( 'valid' === $response->license || 'expired' === $response->license ) { return [ 'success' => true, 'expires' => $response->expires, 'license_limit' => $response->license_limit, 'payment_id' => $response->payment_id, 'customer_name' => $response->customer_name, ]; } } return [ 'success' => false, ]; } catch ( \Error $error ) { return [ 'success' => false, 'is_server_error' => true, ]; }//end try } public static function get_version( $item_id, $license_key = null ) { try { $api_url = YAYCOMMERCE_SELLER_SITE_URL . '?edd_action=get_version&item_id=' . $item_id; if ( ! empty( $license_key ) ) { $api_url .= '&license=' . $license_key; } $response = wp_remote_get( $api_url ); $response = json_decode( $response['body'] ); if ( isset( $response->new_version ) ) { return (array) $response; } return false; } catch ( \Error $error ) { return false; } } public static function get_error_message( $message ) { $result = ''; switch ( $message ) { case 'missing': $result = "License doesn't exist"; break; case 'license_not_activable': $result = "Attempting to activate a bundle's parent license"; break; case 'disabled': $result = 'License key revoked'; break; case 'no_activations_left': $result = 'No activations left'; break; case 'expired': $result = 'License has expired'; break; case 'key_mismatch': $result = 'License is not valid for this product'; break; case 'item_name_mismatch': $result = 'License is not valid for this product'; break; case 'server_error': $result = 'Your license could not be activated because of server error.'; break; default: $result = 'Your license could not be activated.'; break; }//end switch return $result; } }