-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathclass-updater.php
More file actions
387 lines (342 loc) · 10.7 KB
/
class-updater.php
File metadata and controls
387 lines (342 loc) · 10.7 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
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
<?php
/**
* Update FAIR packages.
*
* @package FAIR
*/
namespace FAIR\Updater;
use FAIR\Packages;
use Plugin_Upgrader;
use stdClass;
use Theme_Upgrader;
use TypeError;
use WP_Upgrader;
/**
* Class FAIR_Updater.
*/
class Updater {
/**
* DID.
*
* @var string
*/
protected $did;
/**
* Absolute path to the "main" file.
*
* For plugins, this is the PHP file with the plugin header. For themes,
* this is the style.css file.
*
* @var string|null
*/
protected $filepath;
/**
* Current installed version of the package.
*
* @var string|null
*/
protected $local_version;
/**
* Package type, plugin or theme.
*
* @var string
*/
protected $type;
/**
* Metadata document.
*
* @var \FAIR\Packages\MetadataDocument
*/
protected $metadata;
/**
* Release document.
*
* @var \FAIR\Packages\ReleaseDocument
*/
protected $release;
/**
* Constructor.
*
* @param string $did DID.
* @param string $filepath Absolute file path.
*/
public function __construct( string $did, string $filepath = '' ) {
$this->did = $did;
$this->filepath = $filepath;
$this->local_version = $filepath ? get_file_data( $filepath, [ 'Version' => 'Version' ] )['Version'] : null;
}
/**
* Get API data.
*
* @global string $pagenow Current page.
* @return void|WP_Error
*/
public function run() {
global $pagenow;
// Needed for mu-plugin.
if ( ! isset( $pagenow ) ) {
// phpcs:ignore HM.Security.ValidatedSanitizedInput.InputNotSanitized, WordPress.WP.DeprecatedFunctions.sanitize_urlFound
$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 = [ 'update-core.php', 'update.php', 'plugins.php', 'themes.php' ];
$view_details = [ 'plugin-install.php', 'theme-install.php' ];
$autoupdate_pages = [ 'admin-ajax.php', 'index.php', 'wp-cron.php' ];
if ( ! in_array( $pagenow, array_merge( $pages, $view_details, $autoupdate_pages ), true ) ) {
return;
}
$this->metadata = Packages\fetch_package_metadata( $this->did );
if ( is_wp_error( $this->metadata ) ) {
return $this->metadata;
}
$this->release = Packages\get_latest_release_from_did( $this->did );
if ( is_wp_error( $this->release ) ) {
return $this->release;
}
$this->type = str_replace( 'wp-', '', $this->metadata->type );
$this->load_hooks();
}
/**
* Load hooks.
*
* @return void
*/
public function load_hooks() {
add_filter( 'upgrader_source_selection', [ $this, 'upgrader_source_selection' ], 10, 4 );
add_filter( "{$this->type}s_api", [ $this, 'repo_api_details' ], 99, 3 );
if ( ! empty( $this->filepath ) && ! empty( $this->local_version ) ) {
add_filter( "site_transient_update_{$this->type}s", [ $this, 'update_site_transient' ], 20, 1 );
}
if ( ! is_multisite() ) {
add_filter( 'wp_prepare_themes_for_js', [ $this, 'customize_theme_update_html' ] );
}
/**
* Filter whether to verify FAIR package signatures during update.
*
* @param bool $verify Whether to verify signatures. Default true.
* @return bool
*/
if ( apply_filters( 'fair.packages.updater.verify_signatures', true ) ) {
add_filter( 'upgrader_pre_download', 'FAIR\\Updater\\verify_signature_on_download', 10, 4 );
}
Packages\add_package_to_release_cache( $this->did );
}
/**
* Correctly rename dependency for activation.
*
* @param string $source Path of $source.
* @param string $remote_source Path of $remote_source.
* @param WP_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, WP_Upgrader $upgrader, $hook_extra = null ) {
global $wp_filesystem;
$new_source = $source;
// Exit if installing.
if ( isset( $hook_extra['action'] ) && 'install' === $hook_extra['action'] ) {
return $source;
}
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->type}_information" !== $action ) {
return $result;
}
// Exit if not our repo.
$slug_arr = [ $this->metadata->slug, $this->metadata->slug . '-' . Packages\get_did_hash( $this->did ) ];
if ( ! in_array( $response->slug, $slug_arr, true ) ) {
return $result;
}
$package_data = (object) Packages\get_package_data( $this->did );
if ( $this->type === 'theme' ) {
$package_data->author = $package_data->author['display_name'];
$package_data->slug = $package_data->slug_didhash;
}
return $package_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();
}
$rel_path = plugin_basename( $this->filepath );
$rel_path = 'theme' === $this->type ? basename( dirname( $rel_path ) ) : $rel_path;
$response = Packages\get_package_data( $this->did );
if ( is_wp_error( $response ) ) {
return $transient;
}
// Delete any existing update for this package if non-hashed slug.
// Avoids duplicate update theme entries.
if ( 'theme' === $this->type && $response['file'] === $rel_path ) {
unset( $transient->response[ $response['slug'] ] );
}
$response = 'plugin' === $this->type ? (object) $response : $response;
$is_compatible = Packages\check_requirements( $this->release );
if ( $is_compatible && version_compare( $this->release->version, $this->local_version, '>' ) ) {
$transient->response[ $rel_path ] = $response;
} else {
// Add repo without update to $transient->no_update for 'View details' link.
$transient->no_update[ $rel_path ] = $response;
}
return $transient;
}
/**
* 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 ) {
if ( 'theme' !== $this->type ) {
return $prepared_themes;
}
$did_hash = Packages\get_did_hash( $this->did );
$theme = (object) Packages\get_package_data( $this->did );
if ( ! str_ends_with( $theme->slug, '-' . $did_hash ) ) {
$theme->slug = array_key_exists( $theme->slug, $prepared_themes ) ? $theme->slug : $theme->slug . '-' . $did_hash;
}
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(
[
'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(
[
'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.', 'fair' ),
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: opening anchor with version number, 2: closing anchor tag, 3: opening anchor with update URL */
esc_html__( 'View version %1$s details%2$s or %3$supdate now%2$s.', 'fair' ),
$theme->remote_version = isset( $theme->remote_version ) ? esc_attr( $theme->remote_version ) : null,
'</a>',
sprintf(
/* translators: %s: theme name */
'<a aria-label="' . esc_attr__( '%s: update now', 'fair' ) . '" id="update-theme" data-slug="' . esc_attr( $theme->slug ) . '" href="' . esc_url( $nonced_update_url ) . '">',
esc_attr( $theme->name )
)
);
} else {
printf(
/* translators: 1: opening anchor with version number, 2: closing anchor tag, 3: opening anchor with update URL */
esc_html__( 'View version %1$s details%2$s.', 'fair' ),
$theme->remote_version = isset( $theme->remote_version ) ? esc_attr( $theme->remote_version ) : null,
'</a>'
);
echo(
'<p><i>' . esc_html__( 'Automatic update is unavailable for this theme.', 'fair' ) . '</i></p>'
);
}
?>
</strong>
</p>
<?php
}
return trim( ob_get_clean(), '1' );
}
}