class-licenses.php
139 lines
| 1 | <?php |
| 2 | /** |
| 3 | * License expiry crons via Action Scheduler. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | */ |
| 7 | |
| 8 | namespace AdvancedAds\Crons; |
| 9 | |
| 10 | use AdvancedAds\Constants; |
| 11 | use AdvancedAds\Framework\Interfaces\Integration_Interface; |
| 12 | use AdvancedAds\License\License; |
| 13 | use AdvancedAds\License\License_Utils; |
| 14 | |
| 15 | defined( 'ABSPATH' ) || exit; |
| 16 | |
| 17 | /** |
| 18 | * Schedules and runs license expiry crons. |
| 19 | */ |
| 20 | class Licenses implements Integration_Interface { |
| 21 | |
| 22 | /** |
| 23 | * Register Action Scheduler callbacks for license expiry cron hooks. |
| 24 | * |
| 25 | * @return void |
| 26 | */ |
| 27 | public function hooks(): void { |
| 28 | foreach ( array_keys( Constants::LICENSE_EXPIRY_CRONS ) as $hook ) { |
| 29 | add_action( $hook, [ $this, 'run_license_expiry' ], 10, 1 ); |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | /** |
| 34 | * Unschedule all license validate and expiry actions (plugin deactivation). |
| 35 | * |
| 36 | * @return void |
| 37 | */ |
| 38 | public static function unschedule_all(): void { |
| 39 | if ( ! function_exists( 'as_unschedule_all_actions' ) ) { |
| 40 | return; |
| 41 | } |
| 42 | |
| 43 | as_unschedule_all_actions( Constants::CRON_JOB_LICENSE_VALIDATE, [], Constants::CRON_GROUP_ADVANCED_ADS ); |
| 44 | |
| 45 | foreach ( array_keys( Constants::LICENSE_EXPIRY_CRONS ) as $hook ) { |
| 46 | as_unschedule_all_actions( $hook, null, Constants::CRON_GROUP_ADVANCED_ADS ); |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | /** |
| 51 | * Schedule one-time expiry actions for each stored license key. |
| 52 | * |
| 53 | * Creates up to three pending jobs per license (one month, ten days, grace) |
| 54 | * when their scheduled run times are still in the future. Existing jobs for |
| 55 | * the same hook, key, and group are replaced. |
| 56 | * |
| 57 | * @param array<int, array<string, mixed>> $rich Rich license list; loads from storage when empty. |
| 58 | * |
| 59 | * @return void |
| 60 | */ |
| 61 | public static function schedule_license_expiry( array $rich = [] ): void { |
| 62 | if ( ! function_exists( 'as_schedule_single_action' ) || ! function_exists( 'as_unschedule_all_actions' ) ) { |
| 63 | return; |
| 64 | } |
| 65 | |
| 66 | if ( [] === $rich ) { |
| 67 | if ( ! License::has_stored_licenses() ) { |
| 68 | return; |
| 69 | } |
| 70 | $rich = License::get_licenses(); |
| 71 | } |
| 72 | |
| 73 | $now = time(); |
| 74 | |
| 75 | foreach ( License::normalize_list( $rich ) as $row ) { |
| 76 | $key = trim( (string) ( $row['licenseKey'] ?? '' ) ); |
| 77 | if ( '' === $key ) { |
| 78 | continue; |
| 79 | } |
| 80 | |
| 81 | $ts = License_Utils::license_expiry_timestamps( $row ); |
| 82 | $args = [ $key ]; |
| 83 | |
| 84 | foreach ( Constants::LICENSE_EXPIRY_CRONS as $hook => $level ) { |
| 85 | as_unschedule_all_actions( $hook, $args, Constants::CRON_GROUP_ADVANCED_ADS ); |
| 86 | $t = $ts[ $level ] ?? 0; |
| 87 | if ( $t > $now ) { |
| 88 | as_schedule_single_action( $t, $hook, $args, Constants::CRON_GROUP_ADVANCED_ADS ); |
| 89 | } |
| 90 | } |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | /** |
| 95 | * Run a scheduled license expiry action for one license key. |
| 96 | * |
| 97 | * Refreshes the license from the shop, then either sets an admin notice flag |
| 98 | * (one month / ten days) or syncs local expiry state after the grace period. |
| 99 | * |
| 100 | * @param string $license_key License key (Action Scheduler passes indexed args). |
| 101 | * |
| 102 | * @return void |
| 103 | */ |
| 104 | public function run_license_expiry( string $license_key ): void { |
| 105 | $key = trim( $license_key ); |
| 106 | $level = Constants::LICENSE_EXPIRY_CRONS[ current_action() ] ?? null; |
| 107 | |
| 108 | if ( '' === $key || null === $level ) { |
| 109 | return; |
| 110 | } |
| 111 | |
| 112 | $rich = License::get_licenses(); |
| 113 | if ( null === License_Utils::get_rich_license_row_by_key( $rich, $key ) ) { |
| 114 | return; |
| 115 | } |
| 116 | |
| 117 | $rich = License::sync_persisted_license_from_shop( $key ); |
| 118 | $row = License_Utils::get_rich_license_row_by_key( $rich, $key ); |
| 119 | if ( null === $row ) { |
| 120 | return; |
| 121 | } |
| 122 | |
| 123 | if ( 'grace' === $level ) { |
| 124 | if ( ! License_Utils::license_expiry_is_future( $row ) ) { |
| 125 | License::sync_local_expiry( $rich, $key ); |
| 126 | } |
| 127 | |
| 128 | return; |
| 129 | } |
| 130 | |
| 131 | if ( |
| 132 | License_Utils::license_expiry_is_future( $row ) |
| 133 | && License_Utils::is_license_expiring_soon( $row ) |
| 134 | ) { |
| 135 | License_Utils::set_expiry_notice_flag( $key, $level ); |
| 136 | } |
| 137 | } |
| 138 | } |
| 139 |