This repository has been archived by the owner on Aug 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathupdater.class.php
executable file
·569 lines (474 loc) · 17.2 KB
/
updater.class.php
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
<?php
// Prevent loading this file directly and/or if the class is already defined
if ( !defined( 'ABSPATH' ) || class_exists( 'WP_GitHub_Updater_PS' ) ) {
return;
}
/**
*
*
* @version 1.7
* @author Joachim Kudish <info@jkudish.com>
* @link http://jkudish.com
* @package WP_GitHub_Updater_PS
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
* @copyright Copyright (c) 2011-2013, Joachim Kudish
*
* GNU General Public License, Free Software Foundation
* <http://creativecommons.org/licenses/GPL/2.0/>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
class WP_GitHub_Updater_PS
{
/**
* GitHub Updater version
*/
const VERSION = 1.7;
/**
* @var $config the config for the updater
* @access public
*/
public $config;
/**
* @var $missing_config any config that is missing from the initialization of this instance
* @access public
*/
public $missing_config;
/**
* @var $github_data temporiraly store the data fetched from GitHub, allows us to only load the data once per class instance
* @access private
*/
private $github_data;
/**
* Class Constructor
*
* @since 1.0
* @param array $config the configuration required for the updater to work
* @see has_minimum_config()
* @return void
*/
public function __construct( $config = array() )
{
$defaults = array(
'slug' => plugin_basename( __FILE__ ),
'proper_folder_name' => dirname( plugin_basename( __FILE__ ) ),
'sslverify' => true,
'access_token' => '',
);
$this->config = wp_parse_args( $config, $defaults );
// if the minimum config isn't set, issue a warning and bail
if ( !$this->has_minimum_config() ) {
$message = 'The GitHub Updater was initialized without the minimum required configuration, please check the config in your plugin. The following params are missing: ';
$message .= implode( ',', $this->missing_config );
_doing_it_wrong( __CLASS__, $message, self::VERSION );
return;
}
$this->set_defaults();
add_filter( 'pre_set_site_transient_update_plugins', array( $this, 'api_check' ) );
// Hook into the plugin details screen
add_filter( 'plugins_api', array( $this, 'get_plugin_info' ), 10, 3 );
add_filter( 'upgrader_post_install', array( $this, 'upgrader_post_install' ), 10, 3 );
// set timeout
add_filter( 'http_request_timeout', array( $this, 'http_request_timeout' ) );
// set sslverify for zip download
add_filter( 'http_request_args', array( $this, 'http_request_sslverify' ), 10, 2 );
}
public function has_minimum_config()
{
$this->missing_config = array();
$required_config_params = array(
'api_url',
'raw_url',
'github_url',
'zip_url',
'requires',
'tested',
'readme',
);
foreach ( $required_config_params as $required_param ) {
if ( empty( $this->config[$required_param] ) ) {
$this->missing_config[] = $required_param;
}
}
return ( empty( $this->missing_config ) );
}
/**
* Check wether or not the transients need to be overruled and API needs to be called for every single page load
*
* @return bool overrule or not
*/
public function overrule_transients()
{
return ( defined( 'WP_GITHUB_FORCE_UPDATE' ) && WP_GITHUB_FORCE_UPDATE );
}
/**
* Set defaults
*
* @since 1.2
* @return void
*/
public function set_defaults()
{
if ( !empty( $this->config['access_token'] ) ) {
// See Downloading a zipball (private repo) https://help.github.com/articles/downloading-files-from-the-command-line
extract( parse_url( $this->config['zip_url'] ) ); // $scheme, $host, $path
$zip_url = $scheme . '://api.github.com/repos' . $path;
$zip_url = add_query_arg( array( 'access_token' => $this->config['access_token'] ), $zip_url );
$this->config['zip_url'] = $zip_url;
}
if ( !isset( $this->config['raw_response'] ) ) {
$this->config['raw_response'] = $this->get_raw_response();
}
if ( !isset( $this->config['new_version'] ) ) {
$this->config['new_version'] = $this->get_new_version();
}
if ( !isset( $this->config['new_tested'] ) ) {
$this->config['new_tested'] = $this->get_new_tested();
}
if ( !isset( $this->config['icons'] ) ) {
$this->config['icons'] = $this->get_icons();
}
if ( !isset( $this->config['last_updated'] ) ) {
$this->config['last_updated'] = $this->get_date();
}
if ( !isset( $this->config['description'] ) ) {
$this->config['description'] = $this->get_description();
}
if ( !isset( $this->config['changelog'] ) ) {
$this->config['changelog'] = $this->get_changelog();
}
$plugin_data = $this->get_plugin_data();
if ( !isset( $this->config['plugin_name'] ) ) {
$this->config['plugin_name'] = $plugin_data['Name'];
}
if ( !isset( $this->config['version'] ) ) {
$this->config['version'] = $plugin_data['Version'];
}
if ( !isset( $this->config['author'] ) ) {
$this->config['author'] = $plugin_data['Author'];
}
if ( !isset( $this->config['homepage'] ) ) {
$this->config['homepage'] = $plugin_data['PluginURI'];
}
if ( !isset( $this->config['readme'] ) ) {
$this->config['readme'] = 'README.md';
}
}
/**
* Callback fn for the http_request_timeout filter
*
* @since 1.0
* @return int timeout value
*/
public function http_request_timeout()
{
return 2;
}
/**
* Callback fn for the http_request_args filter
*
* @param unknown $args
* @param unknown $url
*
* @return mixed
*/
public function http_request_sslverify( $args, $url )
{
if ( $this->config['zip_url'] == $url ) {
$args['sslverify'] = $this->config['sslverify'];
}
return $args;
}
/**
* Get Icons from GitHub
*
* @since 1.7
* @return array $icons the plugin icons
*/
public function get_icons()
{
$assest_url = $this->config['raw_url'] . '/assets/images/';
$icons = array(
'default' => $assest_url . 'icon-128x128.png',
'1x' => $assest_url . 'icon-128x128.png',
'2x' => $assest_url . 'icon-256x256.png',
);
return $icons;
}
/**
* Get Raw Response from GitHub
*
* @since 1.7
* @return int $raw_response the raw response
*/
public function get_raw_response()
{
$raw_response = $this->remote_get( trailingslashit( $this->config['raw_url'] ) . basename( $this->config['slug'] ) );
return $raw_response;
}
/**
* Get New Version from GitHub
*
* @since 1.0
* @return int $version the version number
*/
public function get_new_version()
{
$version = get_site_transient( md5( $this->config['slug'] ) . '_new_version' );
if ( $this->overrule_transients() || ( !isset( $version ) || !$version || '' == $version ) ) {
$raw_response = $this->config['raw_response'];
if ( is_wp_error( $raw_response ) ) {
$version = false;
}
if ( is_array( $raw_response ) ) {
if ( !empty( $raw_response['body'] ) ) {
preg_match( '/.*Version\:\s*(.*)$/mi', $raw_response['body'], $matches );
}
}
if ( empty( $matches[1] ) ) {
$version = false;
} else {
$version = $matches[1];
}
// refresh every 6 hours
if ( false !== $version ) {
set_site_transient( md5( $this->config['slug'] ) . '_new_version', $version, 60 * 60 * 6 );
}
}
return $version;
}
/**
* Get New Tested from GitHub
*
* @since 1.7
* @return int $tested the tested number
*/
public function get_new_tested()
{
$tested = get_site_transient( md5( $this->config['slug'] ) . '_new_tested' );
if ( $this->overrule_transients() || ( !isset( $tested ) || !$tested || '' == $tested ) ) {
$raw_response = $this->config['raw_response'];
if ( is_wp_error( $raw_response ) ) {
$tested = false;
}
if ( is_array( $raw_response ) ) {
if ( !empty( $raw_response['body'] ) ) {
preg_match( '/.*Tested\:\s*(.*)$/mi', $raw_response['body'], $matches );
}
}
if ( empty( $matches[1] ) ) {
$tested = $this->config['tested'];
} else {
$tested = $matches[1];
}
// refresh every 6 hours
if ( false !== $tested ) {
set_site_transient( md5( $this->config['slug'] ) . '_new_tested', $tested, 60 * 60 * 6 );
}
}
return $tested;
}
/**
* Interact with GitHub
*
* @param string $query
*
* @since 1.6
* @return mixed
*/
public function remote_get( $query )
{
if ( !empty( $this->config['access_token'] ) ) {
$query = add_query_arg( array( 'access_token' => $this->config['access_token'] ), $query );
}
$raw_response = wp_remote_get( $query, array(
'sslverify' => $this->config['sslverify'],
) );
return $raw_response;
}
/**
* Get GitHub Data from the specified repository
*
* @since 1.0
* @return array $github_data the data
*/
public function get_github_data()
{
if ( isset( $this->github_data ) && !empty( $this->github_data ) ) {
$github_data = $this->github_data;
} else {
$github_data = get_site_transient( md5( $this->config['slug'] ) . '_github_data' );
if ( $this->overrule_transients() || ( !isset( $github_data ) || !$github_data || '' == $github_data ) ) {
$github_data = $this->remote_get( $this->config['api_url'] );
if ( is_wp_error( $github_data ) ) {
return false;
}
$github_data = json_decode( $github_data['body'] );
// refresh every 6 hours
set_site_transient( md5( $this->config['slug'] ) . '_github_data', $github_data, 60 * 60 * 6 );
}
// Store the data in this class instance for future calls
$this->github_data = $github_data;
}
return $github_data;
}
/**
* Get update date
*
* @since 1.0
* @return string $date the date
*/
public function get_date()
{
$_date = $this->get_github_data();
return ( !empty( $_date->updated_at ) ) ? date( 'Y-m-d', strtotime( $_date->updated_at ) ) : false;
}
/**
* Get plugin description
*
* @since 1.0
* @return string $description the description
*/
public function get_description()
{
$_description = $this->get_github_data();
return ( !empty( $_description->description ) ) ? $_description->description : false;
}
/**
* Get plugin changelog
*
* @since 1.0
* @return string $_changelog the changelog
*/
public function get_changelog()
{
$_changelog = '';
if ( !is_wp_error( $this->config ) ) {
$_changelog = $this->remote_get( $this->config['raw_url'] . '/changelog.txt' );
}
if ( !is_wp_error( $_changelog ) ) {
$_changelog = nl2br( $_changelog['body'] );
} else {
$_changelog = '';
}
// return
return ( !empty( $_changelog ) ? $_changelog : 'Could not get changelog from server.' );
}
/**
* Get Plugin data
*
* @since 1.0
* @return object $data the data
*/
public function get_plugin_data()
{
include_once ABSPATH . '/wp-admin/includes/plugin.php';
$data = get_plugin_data( WP_PLUGIN_DIR . '/' . $this->config['slug'] );
return $data;
}
/**
* Hook into the plugin update check and connect to GitHub
*
* @since 1.0
* @param object $transient the plugin data transient
* @return object $transient updated plugin data transient
*/
public function api_check( $transient )
{
// Check if the transient contains the 'checked' information
// If not, just return its value without hacking it
if ( empty( $transient->checked ) ) {
return $transient;
}
// check the version and decide if it's new
$update = version_compare( $this->config['new_version'], $this->config['version'] );
if ( 1 === $update ) {
$response = new stdClass;
$response->new_version = $this->config['new_version'];
$response->slug = $this->config['proper_folder_name'];
$response->url = add_query_arg( array( 'access_token' => $this->config['access_token'] ), $this->config['github_url'] );
$response->package = $this->config['zip_url'];
$response->icons = $this->config['icons'];
$response->tested = $this->config['new_tested'];
// If response is false, don't alter the transient
if ( false !== $response ) {
$transient->response[$this->config['slug']] = $response;
}
}
return $transient;
}
/**
* Get Plugin info
*
* @since 1.0
* @param bool $false always false
* @param string $action the API function being performed
* @param object $args plugin arguments
* @return object $response the plugin info
*/
public function get_plugin_info( $false, $action, $response )
{
// Check if this call API is for the right plugin
if ( !isset( $response->slug ) || $response->slug != $this->config['proper_folder_name'] ) {
return false;
} else {
$res = new stdClass();
$res->name = $this->config['plugin_name'];
$res->slug = $this->config['slug'];
$res->version = $this->config['new_version'];
$res->author = $this->config['author'];
$res->homepage = $this->config['homepage'];
$res->requires = $this->config['requires'];
$res->tested = $this->config['new_tested'];
$res->downloaded = 0;
$res->last_updated = $this->config['last_updated'];
$res->sections = array(
'description' => $this->config['description'],
'changelog' => $this->config['changelog'],
);
$res->download_link = $this->config['zip_url'];
// Useful fields for a later version
// $res->rating = '100';
// $res->num_ratings = '1124';
// $res->active_installs = '11056';
// $res->downloaded = '18056';
return $res;
}
}
/**
* Upgrader/Updater
* Move & activate the plugin, echo the update message
*
* @since 1.0
* @param boolean $true always true
* @param mixed $hook_extra not used
* @param array $result the result of the move
* @return array $result the result of the move
*/
public function upgrader_post_install( $true, $hook_extra, $result )
{
global $wp_filesystem;
// Move & Activate
$proper_destination = WP_PLUGIN_DIR . '/' . $this->config['proper_folder_name'];
$wp_filesystem->move( $result['destination'], $proper_destination );
$result['destination'] = $proper_destination;
$activate = activate_plugin( WP_PLUGIN_DIR . '/' . $this->config['slug'] );
// Output the update message
$fail = __( 'The plugin has been updated, but could not be reactivated. Please reactivate it manually.', 'github_plugin_updater' );
$success = __( 'Plugin reactivated successfully.', 'github_plugin_updater' );
echo is_wp_error( $activate ) ? $fail : $success;
return $result;
}
}