File: /www/wwwroot/www.scdc-marine.com/wp-content/plugins/Admin-Columns-Pro/classes/Check/Expired.php
<?php
namespace ACP\Check;
use AC\Ajax;
use AC\Capabilities;
use AC\Message;
use AC\Registrable;
use AC\Screen;
use AC\Storage;
use ACP\LicenseKeyRepository;
use ACP\LicenseRepository;
use ACP\Type\License\Key;
use ACP\Type\SiteUrl;
use DateTime;
use Exception;
class Expired implements Registrable {
/**
* @var LicenseRepository
*/
private $license_repository;
/**
* @var LicenseKeyRepository
*/
private $license_key_repository;
/**
* @var string
*/
private $plugin_basename;
/**
* @var SiteUrl
*/
private $site_url;
public function __construct( LicenseRepository $license_repository, LicenseKeyRepository $license_key_repository, $plugin_basename, SiteUrl $site_url ) {
$this->license_repository = $license_repository;
$this->license_key_repository = $license_key_repository;
$this->plugin_basename = $plugin_basename;
$this->site_url = $site_url;
}
public function register() {
add_action( 'ac/screen', [ $this, 'display' ] );
$this->get_ajax_handler()->register();
}
/**
* @param Screen $screen
*
* @throws Exception
*/
public function display( Screen $screen ) {
if ( ! $screen->has_screen() || ! current_user_can( Capabilities::MANAGE ) ) {
return;
}
$license_key = $this->license_key_repository->find();
if ( ! $license_key ) {
return;
}
$license = $this->license_repository->find( $license_key );
if ( ! $license || ! $license->is_expired() || ! $license->get_expiry_date()->exists() ) {
return;
}
$message = $this->get_message( $license->get_expiry_date()->get_value(), $license->get_key() );
if ( $screen->is_plugin_screen() ) {
// Inline message on plugin page
$notice = new Message\Plugin( $message, $this->plugin_basename );
} else if ( $screen->is_admin_screen() ) {
// Permanent displayed on settings page
$notice = new Message\Notice( $message );
} else if ( $screen->is_list_screen() && $this->get_dismiss_option()->is_expired() ) {
// Dismissible on list table
$notice = new Message\Notice\Dismissible( $message, $this->get_ajax_handler() );
} else {
$notice = false;
}
if ( $notice instanceof Message ) {
$notice
->set_type( Message::WARNING )
->register();
}
}
/**
* @param DateTime $expiration_date
* @param Key $license_key
*
* @return string
*/
private function get_message( DateTime $expiration_date, Key $license_key ) {
$expired_on = ac_format_date( get_option( 'date_format' ), $expiration_date->getTimestamp() );
$link = add_query_arg(
[
'subscription_key' => $license_key->get_value(),
'site_url' => $this->site_url->get_url(),
],
ac_get_site_utm_url( 'my-account/subscriptions', 'renewal' )
);
return sprintf(
__( 'Your Admin Columns Pro license has expired on %s. To receive updates, renew your license on the %s.', 'codepress-admin-columns' ),
'<strong>' . $expired_on . '</strong>',
sprintf( '<a href="%s">%s</a>', $link, __( 'My Account Page', 'codepress-admin-columns' ) )
);
}
/**
* @return Ajax\Handler
*/
protected function get_ajax_handler() {
$handler = new Ajax\Handler();
$handler
->set_action( 'ac_notice_dismiss_expired' )
->set_callback( [ $this, 'ajax_dismiss_notice' ] );
return $handler;
}
/**
* @return Storage\Timestamp
*/
protected function get_dismiss_option() {
return new Storage\Timestamp(
new Storage\UserMeta( 'ac_notice_dismiss_expired' )
);
}
public function ajax_dismiss_notice() {
$this->get_ajax_handler()->verify_request();
$this->get_dismiss_option()->save( time() + MONTH_IN_SECONDS );
}
}