1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177:
<?php
if ( ! defined( 'ABSPATH' ) ) { exit; }
if ( ! defined( 'INBOUNDNOW_STORE_URL' ) ) {
define('INBOUNDNOW_STORE_URL', 'http://www.inboundnow.com/');
}
if ( ! class_exists( 'Inbound_License' ) )
{
class Inbound_License {
private $plugin_basename;
private $plugin_slug;
private $plugin_label;
private $plugin_version;
private $remote_download_slug;
private $master_license_key;
private $remote_api_url;
function __construct( $plugin_file, $plugin_label, $plugin_slug, $plugin_version, $remote_download_slug )
{
$this->plugin_basename = plugin_basename( $plugin_file );
$this->plugin_slug = $plugin_slug;
$this->plugin_label = $plugin_label;
$this->plugin_version = $plugin_version;
$this->remote_download_slug = $remote_download_slug;
$this->master_license_key = (defined('INBOUND_ACCESS_LEVEL')) ? Inbound_API_Wrapper::get_api_key() : get_option('inboundnow_master_license_key', '');
$this->remote_api_url = INBOUNDNOW_STORE_URL;
$this->hooks();
}
private function hooks() {
add_filter( 'pre_set_site_transient_update_plugins', array( $this, 'pre_set_site_transient_update_plugins_filter' ) );
add_filter( 'plugins_api', array( $this, 'plugins_api_filter' ), 10, 3);
if (defined('INBOUND_ACCESS_LEVEL') ) {
return;
}
}
public function check_license_status($field){
$date = date("Y-m-d");
$cache_date = get_transient($field['id']."-expire");
$license_status = get_option('inboundnow_license_status_'.$this->plugin_slug);
if (isset($cache_date)&&$license_status=='active') {
return "valid";
}
$api_params = array(
'edd_action' => 'inbound_check_license',
'license' => $field['value'],
'item_name' => urlencode( $this->remote_download_slug ) ,
'cache_bust'=> substr(md5(rand()),0,7)
);
$response = wp_remote_get( add_query_arg( $api_params, $this->remote_api_url ), array( 'timeout' => 30, 'sslverify' => false ) );
if ( is_wp_error( $response ) ) {
return false;
}
$license_data = json_decode( wp_remote_retrieve_body( $response ) );
if( $license_data->license == 'active' ) {
$newDate = date('Y-m-d', strtotime($license_data->expires));
set_transient($field['id']."-expire", true, YEAR_IN_SECONDS / 2 );
return 'active';
} else {
return 'inactive';
}
}
public function pre_set_site_transient_update_plugins_filter( $_transient_data )
{
if( empty( $_transient_data ) ) {
return $_transient_data;
}
$to_send = array( 'slug' => $this->plugin_slug );
$api_response = $this->api_request( );
if( false !== $api_response && is_object( $api_response ) ) {
if ( !isset($api_response->new_version) ) {
return $_transient_data;
}
if( version_compare( $this->plugin_version, $api_response->new_version, '<' ) ) {
$_transient_data->response[$this->plugin_basename] = $api_response;
}
}
return $_transient_data;
}
public function plugins_api_filter( $_data, $_action = '', $_args = null ) {
if ( ( $_action != 'plugin_information' ) || !isset( $_args->slug ) || ( $_args->slug != $this->plugin_slug ) ) return $_data;
$api_response = $this->api_request();
if ( false !== $api_response ) $_data = $api_response;
return $_data;
}
public function api_request() {
$api_params = array(
'edd_action' => 'inbound_get_version',
'license' => $this->master_license_key,
'name' => $this->remote_download_slug,
'slug' => $this->plugin_slug
);
$request = wp_remote_post( $this->remote_api_url, array( 'timeout' => 15, 'sslverify' => false, 'body' => $api_params ) );
if ( !is_wp_error( $request ) ):
$request = json_decode( wp_remote_retrieve_body( $request ) );
if( isset($request->sections) ) {
$request->sections = maybe_unserialize( $request->sections );
}
return $request;
else:
return false;
endif;
}
}
}
if ( !class_exists('INBOUNDNOW_EXTEND') ) {
if (
!defined('INBOUND_ACCESS_LEVEL')
||
( defined('INBOUND_ACCESS_LEVEL') && INBOUND_ACCESS_LEVEL < 1 )
) {
class INBOUNDNOW_EXTEND extends Inbound_License {
}
}
}