| Server IP : 121.121.20.254 / Your IP : 216.73.216.146 Web Server : Microsoft-IIS/10.0 System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64 User : IUSR ( 0) PHP Version : 8.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/AIWEBSTATION/wp-content/plugins/wpbot-pro/plugin-upgrader/ |
Upload File : |
<?php
define('wpbotpro_LICENSING_PLUGIN_SLUG', 'wpbot-pro/qcld-wpwbot.php');
define('wpbotpro_LICENSING_PLUGIN_NAME', 'wpbot-pro');
define('wpbotpro_LICENSING__DIR', plugin_dir_path(__DIR__));
define('wpbotpro_LICENSING_REMOTE_PATH', 'https://www.ultrawebmedia.com/li/plugins/wpbot-pro/update.php');
define('wpbotpro_LICENSING_PRODUCT_DEV_URL', 'https://quantumcloud.com/products/');
//start new-update-for-codecanyon
define('wpbotpro_ENVATO_PLUGIN_ID', 23512075);
//end new-update-for-codecanyon
function get_wpbotpro_licensing_plugin_data(){
include_once(ABSPATH.'wp-admin/includes/plugin.php');
return get_plugin_data(wpbotpro_LICENSING__DIR.'/qcld-wpwbot.php', false);
}
//License Options
function get_wpbotpro_licensing_key(){
return get_option('qcld_wpbotpro_enter_license_key');
}
function get_wpbotpro_envato_key(){
return get_option('qcld_wpbotpro_enter_envato_key');
}
function get_wpbotpro_licensing_buy_from(){
return get_option('qcld_wpbotpro_buy_from_where');
}
//Update Transients
function get_wpbotpro_update_transient(){
return get_transient('qcld_update_wpbotpro');
}
function set_wpbotpro_update_transient($plugin_object){
return set_transient( 'qcld_update_wpbotpro', serialize($plugin_object), 1 * DAY_IN_SECONDS );
}
function delete_wpbotpro_update_transient(){
return delete_transient( 'qcld_update_wpbotpro' );
}
//Renewal Transients
function get_wpbotpro_renew_transient(){
return get_transient('qcld_renew_wpbotpro_subscription');
}
function set_wpbotpro_renew_transient($plugin_object){
return set_transient( 'qcld_renew_wpbotpro_subscription', serialize($plugin_object), 1 * DAY_IN_SECONDS );
}
function delete_wpbotpro_renew_transient(){
return delete_transient( 'qcld_renew_wpbotpro_subscription' );
}
//Invalid License Options
function get_wpbotpro_invalid_license(){
return get_option('wpbotpro_invalid_license');
}
function set_wpbotpro_invalid_license(){
return update_option('wpbotpro_invalid_license', 1);
}
function delete_wpbotpro_invalid_license(){
return delete_option('wpbotpro_invalid_license');
}
function wpbotpro_get_licensing_url(){
return admin_url('admin.php?page=wpbot_license_page');
}
//Valid License
function get_wpbotpro_valid_license(){
return get_option('wpbotpro_valid_license');
}
function set_wpbotpro_valid_license(){
return update_option('wpbotpro_valid_license', 1);
}
function delete_wpbotpro_valid_license(){
return delete_option('wpbotpro_valid_license');
}
//staging or live
function get_wpbotpro_site_type(){
return get_option('qcld_wpbotpro_site_type');
}
//start new-update-for-codecanyon
function get_wpbotpro_license_purchase_code(){
return get_option('qcld_wpbotpro_enter_license_or_purchase_key');
}
function get_wpbotpro_enter_license_notice_dismiss_transient(){
return get_transient('get_wpbotpro_enter_license_notice_dismiss_transient');
}
function set_wpbotpro_enter_license_notice_dismiss_transient(){
return set_transient('get_wpbotpro_enter_license_notice_dismiss_transient', 1, DAY_IN_SECONDS);
}
function get_wpbotpro_invalid_license_notice_dismiss_transient(){
return get_transient('get_wpbotpro_invalid_license_notice_dismiss_transient');
}
function set_wpbotpro_invalid_license_notice_dismiss_transient(){
return set_transient('get_wpbotpro_invalid_license_notice_dismiss_transient', 1, DAY_IN_SECONDS);
}
//end new-update-for-codecanyon
function wpbotpro_display_license_section(){
?>
<div class="qcld-wpbot-section-block">
<div id="licensing">
<h1>Please Insert your license Key</h1>
<?php
$total_active_domain = 0;
$active_domain_lists = array();
$track_domain_request = wp_remote_get(wpbotpro_LICENSING_PRODUCT_DEV_URL."wp-json/qc-domain-tracker/v1/getdomain/?license_key=".get_wpbotpro_licensing_key(), array('timeout' => 300));
if( !is_wp_error( $track_domain_request ) || wp_remote_retrieve_response_code( $track_domain_request ) === 200 ){
$track_domain_result = json_decode($track_domain_request['body']);
$current_domain_url = site_url() ;
$current_domain = str_replace(
array( 'https://', 'http://', 'www.' ),
array('', '', ''),
$current_domain_url
);
if( !empty($track_domain_result) ){
$max_domain_num = $track_domain_result[0]->max_domain + 1;
$total_domains = json_decode($track_domain_result[0]->domain, true);
$total_domains_num = count($total_domains);
foreach ($total_domains as $key => $value) {
if( !isset($value['status']) || $value['status'] == 'active' ){
$total_active_domain++;
$active_domain_lists[] = $value['domain_name'];
}
}
if($total_active_domain == $max_domain_num){
//if( $max_domain_num < $total_active_domain ){
//$first_domain_name = $total_domains[0]['domain_name'];
if( !in_array($current_domain, $active_domain_lists) ){
set_wpbotpro_invalid_license();
delete_wpbotpro_valid_license();
?>
<div class="qcld-error-notice">
<p>You have activated this key for maximum number of sites allowed by your license. Please <a href='https://www.quantumcloud.com/products/'>purchase additional license.</a></p>
</div>
<?php
}
}
}
}
?>
<?php if( get_wpbotpro_valid_license() ){ ?>
<div class="qcld-success-notice">
<p>Thank you, Your License is active. <?php if( get_wpbotpro_licensing_buy_from() == 'codecanyon' ){ ?>Please <a href="https://envato.com/market-plugin/">Download</a> the Envato Market Plugin to Get Auto Updates During Your Support Period. <?php } ?></p>
</div>
<?php } ?>
<form onsubmit="return false" id="qc-license-form" method="post" action="options.php">
<?php
delete_wpbotpro_update_transient();
delete_wpbotpro_renew_transient();
delete_option('_site_transient_update_plugins');
settings_fields( 'qcld_wpbotpro_license' );
do_settings_sections( 'qcld_wpbotpro_license' );
// if( isset($_POST['submit']) ){
// echo 'qcld_wpbotpro_buy_from_where '.$_POST['qcld_wpbotpro_buy_from_where'];
// }
?>
<table class="form-table">
<tr id="quantumcloud_portfolio_license_row" style="display: none">
<th>
<label for="qcld_wpbotpro_enter_license_key">Enter License Key:</label>
</th>
<td>
<input type="<?php echo (get_wpbotpro_licensing_key()!=''?'password':'text'); ?>" id="qcld_wpbotpro_enter_license_key" name="qcld_wpbotpro_enter_license_key" class="regular-text" value="<?php echo get_wpbotpro_licensing_key(); ?>">
<p>You can copy the license key from <a target="_blank" href='https://www.quantumcloud.com/products/account/'>your account</a></p>
</td>
</tr>
<tr id="show_envato_plugin_downloader" style="display: none">
<th>
<label for="qcld_wpbotpro_enter_envato_key">Enter Purchase Code:</label>
</th>
<td colspan="4">
<input type="<?php echo (get_wpbotpro_envato_key()!=''?'password':'text'); ?>" id="qcld_wpbotpro_enter_envato_key" name="qcld_wpbotpro_enter_envato_key" class="regular-text" value="<?php echo get_wpbotpro_envato_key(); ?>">
<p>You can install the <a target="_blank" href="https://envato.com/market-plugin/">Envato Plugin</a> to stay up to date.</p>
</td>
</tr>
<tr>
<th>
<label for="qcld_wpbotpro_enter_license_or_purchase_key">Enter License Key or Purchase Code:</label>
</th>
<td>
<input type="<?php echo (get_wpbotpro_license_purchase_code()!=''?'password':'text'); ?>" id="qcld_wpbotpro_enter_license_or_purchase_key" name="qcld_wpbotpro_enter_license_or_purchase_key" class="regular-text" value="<?php echo get_wpbotpro_license_purchase_code(); ?>" required>
</td>
</tr>
</table>
<!-- //start new-update-for-codecanyon -->
<input type="hidden" name="qcld_wpbotpro_buy_from_where" value="<?php echo get_wpbotpro_licensing_buy_from(); ?>" >
<!-- //end new-update-for-codecanyon -->
<?php submit_button(); ?>
</form>
<script type="text/javascript">
jQuery(document).ready(function(){
//start new-update-for-codecanyon
jQuery('#qcld_wpbotpro_enter_license_or_purchase_key').on('focusout', function(){
qc_wpbotpro_set_plugin_license_fields();
});
jQuery('#qcld_wpbotpro_enter_license_or_purchase_key').on('keypress',function (e) {
qc_wpbotpro_set_plugin_license_fields();
});
jQuery('#qc-license-form input[type="submit"]').on('click', function(){
qc_wpbotpro_set_plugin_license_fields();
jQuery('#qc-license-form').removeAttr('onsubmit').submit();
});
function qc_wpbotpro_set_plugin_license_fields(){
var license_input = jQuery('#qcld_wpbotpro_enter_license_or_purchase_key').val();
if( /^(\w{8})-((\w{4})-){3}(\w{12})$/.test(license_input) ){
jQuery('input[name="qcld_wpbotpro_buy_from_where"]').val('codecanyon');
jQuery('input[name="qcld_wpbotpro_enter_envato_key"]').val(license_input);
}else{
jQuery('input[name="qcld_wpbotpro_buy_from_where"]').val('quantumcloud');
jQuery('input[name="qcld_wpbotpro_enter_license_key"]').val(license_input);
}
}
//end new-update-for-codecanyon
});
</script>
</div>
</div>
<?php
}