update.class.php
3.82 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<?php
/**
* @author ThemePunch <info@themepunch.com>
* @link https://www.themepunch.com/
* @copyright 2024 ThemePunch
*/
if(!defined('ABSPATH')) exit();
class RevAddOnParticlesUpdate {
private $plugin_url = 'https://codecanyon.net/item/slider-revolution-responsive-wordpress-plugin/2751380';
private $remote_url_info = 'addons/revslider-particles-addon/revslider-particles-addon.php';
private $plugin_slug = 'revslider-particles-addon';
private $plugin_path = 'revslider-particles-addon/revslider-particles-addon.php';
private $version;
private $plugins;
private $option;
private $data;
public function __construct($version){
$this->option = $this->plugin_slug . '_update_info';
$this->version = $version;
$this->data = new stdClass;
$this->add_update_checks();
}
public function add_update_checks(){
add_filter('pre_set_site_transient_update_plugins', array(&$this, 'set_update_transient'));
add_filter('plugins_api', array(&$this, 'set_updates_api_results'), 10, 3);
}
public function set_update_transient($transient){
$this->_check_updates();
if(isset($transient) && !isset($transient->response)){
$transient->response = array();
}
if(!empty($this->data->basic) && is_object($this->data->basic)){
$version = (isset($this->data->basic->version)) ? $this->data->basic->version : $this->data->basic->new_version;
if(version_compare($this->version, $version, '<')){
$this->data->basic->new_version = $version;
if(isset($this->data->basic->version)){
unset($this->data->basic->version);
}
$transient->response[$this->plugin_path] = $this->data->basic;
}
}
return $transient;
}
public function set_updates_api_results($result, $action, $args){
$this->_check_updates();
if(isset($args->slug) && $args->slug == $this->plugin_slug && $action == 'plugin_information'){
if(is_object($this->data->full) && !empty($this->data->full)){
$result = $this->data->full;
}
}
return $result;
}
protected function _check_updates($force_check = false){
if((isset($_GET['checkforupdates']) && $_GET['checkforupdates'] == 'true') || isset($_GET["force-check"])) $force_check = true;
//Get data
if(empty($this->data)){
$data = get_option($this->option, false);
$data = $data ? $data : new stdClass;
$this->data = is_object($data) ? $data : maybe_unserialize($data);
}
$last_check = get_option('revslider_particles_addon-update-check');
if($last_check == false){ //first time called
$last_check = time();
update_option('revslider_particles_addon-update-check', $last_check);
}
//Check for updates
if(time() - $last_check > 60 * 60 * 24 * 30 || $force_check == true){
$data = $this->_retrieve_update_info();
if(isset($data->basic)){
update_option('revslider_particles_addon-update-check', time());
$this->data->checked = time();
$this->data->basic = $data->basic;
$this->data->full = $data->full;
update_option('revslider_particles_addon-latest-version', $data->full->version);
}
}
//Save results
update_option($this->option, $this->data);
}
public function _retrieve_update_info(){
$rslb = new RevSliderLoadBalancer();
$data = new stdClass;
//Build request
$purchase = (get_option('revslider-valid', 'false') == 'true') ? get_option('revslider-code', '') : '';
$rattr = array(
'code' => urlencode($purchase),
'version' => urlencode(RS_REVISION),
'addon_version' => urlencode($this->version),
);
$request = $rslb->call_url($this->remote_url_info, $rattr, 'updates');
if(!is_wp_error($request)){
if($response = maybe_unserialize($request['body'])){
if(is_object($response)){
$data = $response;
$data->basic->url = $this->plugin_url;
$data->full->url = $this->plugin_url;
$data->full->external = 1;
}
}
}
return $data;
}
}
?>