| 1 |
<?php |
| 2 |
|
| 3 |
namespace Boxzilla\Licensing; |
| 4 |
|
| 5 |
class Poller { |
| 6 |
|
| 7 |
/** |
| 8 |
* @var API |
| 9 |
*/ |
| 10 |
protected $api; |
| 11 |
|
| 12 |
/** |
| 13 |
* @var License |
| 14 |
*/ |
| 15 |
protected $license; |
| 16 |
|
| 17 |
/** |
| 18 |
* Poller constructor. |
| 19 |
* |
| 20 |
* @param API $api |
| 21 |
* @param License $license |
| 22 |
*/ |
| 23 |
public function __construct( API $api, License $license ) { |
| 24 |
$this->api = $api; |
| 25 |
$this->license = $license; |
| 26 |
} |
| 27 |
|
| 28 |
/** |
| 29 |
* Add hooks. |
| 30 |
*/ |
| 31 |
public function hook() { |
| 32 |
if( ! wp_next_scheduled( 'boxzilla_check_license_status' ) ) { |
| 33 |
wp_schedule_event( time(), 'daily', 'boxzilla_check_license_status' ); |
| 34 |
}; |
| 35 |
|
| 36 |
add_action( 'boxzilla_check_license_status', array( $this, 'run' ) ); |
| 37 |
} |
| 38 |
|
| 39 |
/** |
| 40 |
* Run! |
| 41 |
*/ |
| 42 |
public function run() { |
| 43 |
// don't run if license not active |
| 44 |
if( ! $this->license->activated ) { |
| 45 |
return; |
| 46 |
} |
| 47 |
|
| 48 |
// assume valid by default, in case of server errors on our side. |
| 49 |
$license_still_valid = true; |
| 50 |
|
| 51 |
try { |
| 52 |
$remote_license = $this->api->get_license(); |
| 53 |
$license_still_valid = $remote_license->valid; |
| 54 |
} catch( API_Exception $e ) { |
| 55 |
// license key wasn't found or expired |
| 56 |
if( in_array( $e->getApiCode(), array( 'license_invalid', 'license_expired' ) ) ) { |
| 57 |
$license_still_valid = false; |
| 58 |
} |
| 59 |
} |
| 60 |
|
| 61 |
if( ! $license_still_valid ) { |
| 62 |
$this->license->activated = false; |
| 63 |
$this->license->save(); |
| 64 |
} |
| 65 |
|
| 66 |
} |
| 67 |
} |