PluginProbe
Boxzilla – WordPress Popup Builder / 3.1.16
Boxzilla – WordPress Popup Builder v3.1.16
3.4.11 3.4.10 3.4.9 3.4.3 3.4.4 3.4.5 3.4.6 3.4.7 3.4.8 trunk 3.0 3.0.1 3.0.2 3.0.3 3.1 3.1.1 3.1.10 3.1.11 3.1.12 3.1.13 3.1.14 3.1.15 3.1.16 3.1.17 3.1.18 All 72 releases
boxzilla / src / licensing / class-poller.php

class-poller.php in Boxzilla – WordPress Popup Builder 3.1.16, at src/licensing/class-poller.php

67 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 }