File: /var/www/html/ch.sumar.com.py/wp-content/plugins/peepso/classes/adminconfiglicense.php
<?php
class PeepSoAdminConfigLicense extends PeepSoAjaxCallback
{
/*
* Builds the required flot data set based on the request
* @param PeepSoAjaxResponse $resp The response object
*/
public function check_license(PeepSoAjaxResponse $resp)
{
if (!PeepSo::is_admin()) {
$resp->success(FALSE);
$resp->error(__('Insufficient permissions.', 'peepso-core'));
return;
}
// delete license display warning
PeepSo3_Mayfly::del('peepso_has_displayed_license_warning');
$plugins = $this->_input->value('plugins','',FALSE); // SQL safe, admin only
$response = array();
$response_details = array();
if(count($plugins)) {
foreach ($plugins as $slug => $name) {
PeepSoLicense::activate_license($slug, $name);
$response[$slug] = (int)PeepSoLicense::check_license($name, $slug, TRUE);
$license = PeepSoLicense::get_license($slug);
$details = '';
if(isset($license['expire']) && $license['expire']) {
$expires = $license['expire'] == 'lifetime' ? 'lifetime' : strtotime($license['expire']);
if ($expires == "lifetime") {
$color = '#dddddd';
$message = sprintf(__('Valid for a %s', 'peepso-core'), $expires);
} else if ($expires > time()) {
$color = '#dddddd';
$message = sprintf(__('Valid until %s', 'peepso-core'), date(get_option('date_format'), $expires));
} else {
$color = '#ff0000';
$message = sprintf(__('Expired %s', 'peepso-core'), date(get_option('date_format'), $expires));
PeepSo3_Mayfly::set('peepso_has_displayed_license_warning', 1, HOUR_IN_SECONDS);
if(strstr($license['expire'], '1999')) {
$message = __('Your license can\'t be checked because of an API request limit.<br/> Please wait a few minutes and try again.<br/>If the problem persists, please contact <a href="https://peepso.com/contact" target="_blank">PeepSo Support</a>.', 'peepso-core');
}
}
$details = sprintf('<span style="font-size:11px;color:%s">%s</span>', $color, $message);
}
$response_details[$slug] = $details;
}
}
$resp->set('valid', $response);
$resp->set('details', $response_details);
$resp->success(TRUE);
}
}
// EOF