-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLite.php
431 lines (382 loc) · 13.1 KB
/
Lite.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
<?php
/*
* @author Andy Fragen
* @license MIT
* @link https://github.com/afragen/git-updater-lite
* @package git-updater-lite
*/
namespace Fragen\Git_Updater;
/**
* Exit if called directly.
*/
if ( ! defined( 'WPINC' ) ) {
die;
}
if ( ! class_exists( 'Fragen\\Git_Updater\\Lite' ) ) {
/**
* Class Lite
*/
final class Lite {
// phpcs:disable Generic.Commenting.DocComment.MissingShort
/** @var string */
protected $file;
/** @var string */
protected $slug;
/** @var string */
protected $local_version;
/** @var \stdClass */
protected $api_data;
/** @var string */
protected $update_server;
// phpcs:enable
/**
* Constructor.
*
* @param string $file_path File path of plugin/theme.
*/
public function __construct( string $file_path ) {
$this->slug = basename( dirname( $file_path ) );
if ( str_ends_with( $file_path, 'functions.php' ) ) {
$this->file = $this->slug . '/style.css';
$file_path = dirname( $file_path ) . '/style.css';
} else {
$this->file = $this->slug . '/' . basename( $file_path );
}
$file_data = get_file_data(
$file_path,
array(
'Version' => 'Version',
'UpdateURI' => 'Update URI',
)
);
$this->local_version = $file_data['Version'];
$this->update_server = $this->check_update_uri( $file_data['UpdateURI'] );
}
/**
* Ensure properly formatted Update URI.
*
* @param string $updateUri Data from Update URI header.
*
* @return string|\WP_Error
*/
private function check_update_uri( $updateUri ) {
if ( filter_var( $updateUri, FILTER_VALIDATE_URL )
&& null === parse_url( $updateUri, PHP_URL_PATH ) // null means no path is present.
) {
$updateUri = untrailingslashit( trim( $updateUri ) );
} else {
return new \WP_Error( 'invalid_header_data', 'Invalid data from Update URI header', $updateUri );
}
return $updateUri;
}
/**
* Get API data.
*
* @global string $pagenow Current page.
* @return void|\WP_Error
*/
public function run() {
global $pagenow;
// Needed for mu-plugin.
if ( ! isset( $pagenow ) ) {
$php_self = isset( $_SERVER['PHP_SELF'] ) ? sanitize_url( wp_unslash( $_SERVER['PHP_SELF'] ) ) : null;
if ( null !== $php_self ) {
// phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
$pagenow = basename( $php_self );
}
}
// Only run on the following pages.
$pages = array( 'update-core.php', 'update.php', 'plugins.php', 'themes.php' );
$view_details = array( 'plugin-install.php', 'theme-install.php' );
$autoupdate_pages = array( 'admin-ajax.php', 'index.php', 'wp-cron.php' );
if ( ! in_array( $pagenow, array_merge( $pages, $view_details, $autoupdate_pages ), true ) ) {
return;
}
if ( empty( $this->update_server ) || is_wp_error( $this->update_server ) ) {
return new \WP_Error( 'invalid_domain', 'Invalid update server domain', $this->update_server );
}
$url = "$this->update_server/wp-json/git-updater/v1/update-api/?slug=$this->slug";
$response = get_site_transient( "git-updater-lite_{$this->file}" );
if ( ! $response ) {
$response = wp_remote_post( $url );
if ( is_wp_error( $response ) ) {
return $response;
}
$this->api_data = (object) json_decode( wp_remote_retrieve_body( $response ), true );
if ( null === $this->api_data || empty( (array) $this->api_data ) || property_exists( $this->api_data, 'error' ) ) {
return new \WP_Error( 'non_json_api_response', 'Poorly formed JSON', $response );
}
$this->api_data->file = $this->file;
/*
* Set transient for 5 minutes as AWS sets 5 minute timeout
* for release asset redirect.
*
* Set limited timeout so wp_remote_post() not hit as frequently.
* wp_remote_post() for plugin/theme check can run on every pageload
* for certain pages.
*/
set_site_transient( "git-updater-lite_{$this->file}", $this->api_data, 5 * \MINUTE_IN_SECONDS );
} else {
if ( property_exists( $response, 'error' ) ) {
return new \WP_Error( 'repo-no-exist', 'Specified repo does not exist' );
}
$this->api_data = $response;
}
$this->load_hooks();
}
/**
* Load hooks.
*
* @return void
*/
public function load_hooks() {
$type = $this->api_data->type;
add_filter( 'upgrader_source_selection', array( $this, 'upgrader_source_selection' ), 10, 4 );
add_filter( "{$type}s_api", array( $this, 'repo_api_details' ), 99, 3 );
add_filter( "site_transient_update_{$type}s", array( $this, 'update_site_transient' ), 15, 1 );
if ( ! is_multisite() ) {
add_filter( 'wp_prepare_themes_for_js', array( $this, 'customize_theme_update_html' ) );
}
// Load hook for adding authentication headers for download packages.
add_filter(
'upgrader_pre_download',
function () {
add_filter( 'http_request_args', array( $this, 'add_auth_header' ), 15, 2 );
return false; // upgrader_pre_download filter default return value.
}
);
}
/**
* Correctly rename dependency for activation.
*
* @param string $source Path fo $source.
* @param string $remote_source Path of $remote_source.
* @param \Plugin_Upgrader|\Theme_Upgrader $upgrader An Upgrader object.
* @param array $hook_extra Array of hook data.
*
* @throws \TypeError If the type of $upgrader is not correct.
*
* @return string|\WP_Error
*/
public function upgrader_source_selection( string $source, string $remote_source, $upgrader, $hook_extra = null ) {
global $wp_filesystem;
$new_source = $source;
// Exit if installing.
if ( isset( $hook_extra['action'] ) && 'install' === $hook_extra['action'] ) {
return $source;
}
// TODO: add type hint for $upgrader, PHP 8 minimum due to `|`.
if ( ! $upgrader instanceof \Plugin_Upgrader && ! $upgrader instanceof \Theme_Upgrader ) {
throw new \TypeError( __METHOD__ . '(): Argument #3 ($upgrader) must be of type Plugin_Upgrader|Theme_Upgrader, ' . esc_attr( gettype( $upgrader ) ) . ' given.' );
}
// Rename plugins.
if ( $upgrader instanceof \Plugin_Upgrader ) {
if ( isset( $hook_extra['plugin'] ) ) {
$slug = dirname( $hook_extra['plugin'] );
$new_source = trailingslashit( $remote_source ) . $slug;
}
}
// Rename themes.
if ( $upgrader instanceof \Theme_Upgrader ) {
if ( isset( $hook_extra['theme'] ) ) {
$slug = $hook_extra['theme'];
$new_source = trailingslashit( $remote_source ) . $slug;
}
}
if ( basename( $source ) === $slug ) {
return $source;
}
if ( trailingslashit( strtolower( $source ) ) !== trailingslashit( strtolower( $new_source ) ) ) {
$wp_filesystem->move( $source, $new_source, true );
}
return trailingslashit( $new_source );
}
/**
* Put changelog in plugins_api, return WP.org data as appropriate
*
* @param bool $result Default false.
* @param string $action The type of information being requested from the Plugin Installation API.
* @param \stdClass $response Repo API arguments.
*
* @return \stdClass|bool
*/
public function repo_api_details( $result, string $action, \stdClass $response ) {
if ( "{$this->api_data->type}_information" !== $action ) {
return $result;
}
// Exit if not our repo.
if ( $response->slug !== $this->api_data->slug ) {
return $result;
}
return $this->api_data;
}
/**
* Hook into site_transient_update_{plugins|themes} to update from GitHub.
*
* @param \stdClass $transient Plugin|Theme update transient.
*
* @return \stdClass
*/
public function update_site_transient( $transient ) {
// needed to fix PHP 7.4 warning.
if ( ! is_object( $transient ) ) {
$transient = new \stdClass();
}
$response = array(
'slug' => $this->api_data->slug,
$this->api_data->type => 'theme' === $this->api_data->type ? $this->api_data->slug : $this->api_data->file,
'url' => isset( $this->api_data->url ) ? $this->api_data->url : $this->api_data->slug,
'icons' => (array) $this->api_data->icons,
'banners' => $this->api_data->banners,
'branch' => $this->api_data->branch,
'type' => "{$this->api_data->git}-{$this->api_data->type}",
'update-supported' => true,
'requires' => $this->api_data->requires,
'requires_php' => $this->api_data->requires_php,
'new_version' => $this->api_data->version,
'package' => $this->api_data->download_link,
'tested' => $this->api_data->tested,
);
if ( 'theme' === $this->api_data->type ) {
$response['theme_uri'] = $response['url'];
}
if ( version_compare( $this->api_data->version, $this->local_version, '>' ) ) {
$response = 'plugin' === $this->api_data->type ? (object) $response : $response;
$key = 'plugin' === $this->api_data->type ? $this->api_data->file : $this->api_data->slug;
$transient->response[ $key ] = $response;
} else {
$response = 'plugin' === $this->api_data->type ? (object) $response : $response;
// Add repo without update to $transient->no_update for 'View details' link.
$transient->no_update[ $this->api_data->file ] = $response;
}
return $transient;
}
/**
* Add auth header for download package.
*
* @param array $args Array of http args.
* @param string $url Download URL.
*
* @return array
*/
public function add_auth_header( $args, $url ) {
if ( property_exists( $this->api_data, 'auth_header' )
&& str_contains( $url, $this->api_data->slug )
) {
$args = array_merge( $args, $this->api_data->auth_header );
}
return $args;
}
/**
* Call theme messaging for single site installation.
*
* @author Seth Carstens
*
* @param array $prepared_themes Array of prepared themes.
*
* @return array
*/
public function customize_theme_update_html( $prepared_themes ) {
$theme = $this->api_data;
if ( 'theme' !== $theme->type ) {
return $prepared_themes;
}
if ( ! empty( $prepared_themes[ $theme->slug ]['hasUpdate'] ) ) {
$prepared_themes[ $theme->slug ]['update'] = $this->append_theme_actions_content( $theme );
} else {
$prepared_themes[ $theme->slug ]['description'] .= $this->append_theme_actions_content( $theme );
}
return $prepared_themes;
}
/**
* Create theme update messaging for single site installation.
*
* @author Seth Carstens
*
* @access protected
* @codeCoverageIgnore
*
* @param \stdClass $theme Theme object.
*
* @return string (content buffer)
*/
protected function append_theme_actions_content( $theme ) {
$details_url = esc_attr(
add_query_arg(
array(
'tab' => 'theme-information',
'theme' => $theme->slug,
'TB_iframe' => 'true',
'width' => 270,
'height' => 400,
),
self_admin_url( 'theme-install.php' )
)
);
$nonced_update_url = wp_nonce_url(
esc_attr(
add_query_arg(
array(
'action' => 'upgrade-theme',
'theme' => rawurlencode( $theme->slug ),
),
self_admin_url( 'update.php' )
)
),
'upgrade-theme_' . $theme->slug
);
$current = get_site_transient( 'update_themes' );
/**
* Display theme update links.
*/
ob_start();
if ( isset( $current->response[ $theme->slug ] ) ) {
?>
<p>
<strong>
<?php
printf(
/* translators: %s: theme name */
esc_html__( 'There is a new version of %s available.', 'git-updater-lite' ),
esc_attr( $theme->name )
);
printf(
' <a href="%s" class="thickbox open-plugin-details-modal" title="%s">',
esc_url( $details_url ),
esc_attr( $theme->name )
);
if ( ! empty( $current->response[ $theme->slug ]['package'] ) ) {
printf(
/* translators: 1: version number, 2: closing anchor tag, 3: update URL */
esc_html__( 'View version %1$s details%2$s or %3$supdate now%2$s.', 'git-updater-lite' ),
$theme->remote_version = isset( $theme->remote_version ) ? esc_attr( $theme->remote_version ) : null,
'</a>',
sprintf(
/* translators: %s: theme name */
'<a aria-label="' . esc_html__( 'Update %s now', 'git-updater-lite' ) . '" id="update-theme" data-slug="' . esc_attr( $theme->slug ) . '" href="' . esc_url( $nonced_update_url ) . '">',
esc_attr( $theme->name )
)
);
} else {
printf(
/* translators: 1: version number, 2: closing anchor tag, 3: update URL */
esc_html__( 'View version %1$s details%2$s.', 'git-updater-lite' ),
$theme->remote_version = isset( $theme->remote_version ) ? esc_attr( $theme->remote_version ) : null,
'</a>'
);
printf(
/* translators: %s: opening/closing paragraph and italic tags */
esc_html__( '%1$sAutomatic update is unavailable for this theme.%2$s', 'git-updater-lite' ),
'<p><i>',
'</i></p>'
);
}
?>
</strong>
</p>
<?php
}
return trim( ob_get_clean(), '1' );
}
}
}