V5700.php
1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php
namespace ACP\Plugin\Update;
use AC\Plugin\Update;
use AC\Plugin\Version;
class V5700 extends Update {
public function __construct() {
parent::__construct( new Version( '5.7' ) );
}
public function apply_update() {
$this->update_subscription_details();
$this->update_permissions();
$this->clear_cache_api();
}
protected function clear_cache_api() {
global $wpdb;
$wpdb->query( "DELETE FROM $wpdb->options WHERE option_name LIKE 'ac_api_request_%'" );
}
private function update_permissions() {
$details = $this->get_option( 'acp_subscription_details' );
if ( ! $details ) {
return;
}
$permissions = [ 'usage' ];
$status = isset( $details['status'] )
? $details['status']
: null;
$subscription_key = defined( 'ACP_LICENCE' ) && ACP_LICENCE
? ACP_LICENCE
: $this->get_option( 'acp_subscription_key' );
if ( 'active' === $status && $this->get_option( 'acp_subscription_details_key' ) === $subscription_key ) {
$permissions[] = 'update';
}
$this->update_option( '_acp_access_permissions', $permissions );
}
private function update_subscription_details() {
$details = $this->get_option( 'acp_subscription_details' );
if ( ! $details || ! is_array( $details ) ) {
return;
}
$details['products'] = [];
$this->update_option( 'acp_subscription_details', $details );
}
protected function update_option( $name, $value ) {
update_option( $name, $value );
}
protected function get_option( $name ) {
return get_option( $name );
}
}