-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy pathhelper.php
More file actions
415 lines (373 loc) · 15.7 KB
/
helper.php
File metadata and controls
415 lines (373 loc) · 15.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
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
<?php
/**
* Helper functions for Optimization Detective.
*
* @package optimization-detective
* @since 0.1.0
*/
declare( strict_types = 1 );
// @codeCoverageIgnoreStart
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
// @codeCoverageIgnoreEnd
/**
* Initializes extensions for Optimization Detective.
*
* @since 0.7.0
* @access private
*/
function od_initialize_extensions(): void {
/**
* Fires when extensions to Optimization Detective can be loaded and initialized.
*
* @since 0.7.0
* @link https://github.com/WordPress/performance/blob/trunk/plugins/optimization-detective/docs/hooks.md#:~:text=Action%3A%20od_init
*
* @param string $version Optimization Detective version.
*/
do_action( 'od_init', OPTIMIZATION_DETECTIVE_VERSION );
}
/**
* Generates a media query for the provided minimum and maximum viewport widths.
*
* This helper function is available for extensions to leverage when manually printing STYLE rules via
* {@see OD_HTML_Tag_Processor::append_head_html()} or {@see OD_HTML_Tag_Processor::append_body_html()}
*
* @since 0.7.0
*
* @param int<0, max>|null $minimum_viewport_width Minimum viewport width (exclusive).
* @param int<1, max>|null $maximum_viewport_width Maximum viewport width (inclusive).
* @return non-empty-string|null Media query, or null if the min/max were both unspecified or invalid.
*/
function od_generate_media_query( ?int $minimum_viewport_width, ?int $maximum_viewport_width ): ?string {
if ( is_int( $minimum_viewport_width ) && is_int( $maximum_viewport_width ) && $minimum_viewport_width >= $maximum_viewport_width ) {
_doing_it_wrong( __FUNCTION__, esc_html__( 'The minimum width cannot be greater than or equal to the maximum width.', 'optimization-detective' ), 'Optimization Detective 0.7.0' );
return null;
}
$has_min_width = ( null !== $minimum_viewport_width && $minimum_viewport_width > 0 );
$has_max_width = ( null !== $maximum_viewport_width && PHP_INT_MAX !== $maximum_viewport_width ); // Note: The use of PHP_INT_MAX is obsolete.
if ( $has_min_width && $has_max_width ) {
return sprintf( '(%dpx < width <= %dpx)', $minimum_viewport_width, $maximum_viewport_width );
} elseif ( $has_min_width ) {
return sprintf( '(%dpx < width)', $minimum_viewport_width );
} elseif ( $has_max_width ) {
return sprintf( '(width <= %dpx)', $maximum_viewport_width );
} else {
return null;
}
}
/**
* Gets the reasons why Optimization Detective is disabled for the current response.
*
* @since 1.0.0
* @access private
*
* @return array{
* is_search?: string,
* is_embed?: string,
* is_preview?: string,
* is_customize_preview?: string,
* non_get_request?: string,
* no_cache_purge_post_id?: string,
* filter_disabled?: string,
* rest_api_unavailable?: string,
* query_param_disabled?: string
* } Array of disabled reason codes and their messages.
*/
function od_get_disabled_reasons(): array {
$disabled_flags = array(
'is_search' => false,
'is_embed' => false,
'is_preview' => false,
'is_customize_preview' => false,
'non_get_request' => false,
'no_cache_purge_post_id' => false,
);
// Disable the search template since there is no predictability in whether posts in the loop will have featured images assigned or not. If a
// theme template for search results doesn't even show featured images, then this wouldn't be an issue.
if ( is_search() ) {
$disabled_flags['is_search'] = true;
}
// Avoid optimizing embed responses because the Post Embed iframes include a sandbox attribute with the value of
// "allow-scripts" but without "allow-same-origin". This can result in an error in the console:
// > Access to script at '.../detect.js?ver=0.4.1' from origin 'null' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
// So it's better to just avoid attempting to optimize Post Embed responses (which don't need optimization anyway).
if ( is_embed() ) {
$disabled_flags['is_embed'] = true;
}
// Skip posts that aren't published yet.
if ( is_preview() ) {
$disabled_flags['is_preview'] = true;
}
// Disable in Customizer preview since injection of inline-editing controls can interfere with XPath. Optimization is also not necessary in this context.
if ( is_customize_preview() ) {
$disabled_flags['is_customize_preview'] = true;
}
// Disable for POST responses since they cannot, by definition, be cached.
if ( isset( $_SERVER['REQUEST_METHOD'] ) && 'GET' !== $_SERVER['REQUEST_METHOD'] ) {
$disabled_flags['non_get_request'] = true;
}
// Disable when there is no post ID available for cache purging. Page caching plugins can only reliably be told to invalidate a cached page when a post is available to trigger
// the relevant actions on.
if ( null === od_get_cache_purge_post_id() ) {
$disabled_flags['no_cache_purge_post_id'] = true;
}
// Check if any flags are set to true.
$has_disabled_flags = count( array_filter( $disabled_flags ) ) > 0;
/**
* Filters whether the current response can be optimized.
*
* @since 0.1.0
* @since 1.0.0 Added $disabled_flags parameter
* @link https://github.com/WordPress/performance/blob/trunk/plugins/optimization-detective/docs/hooks.md#:~:text=Filter%3A%20od_can_optimize_response
*
* @param bool $can_optimize Whether response can be optimized.
* @param array{
* is_search: bool,
* is_embed: bool,
* is_preview: bool,
* is_customize_preview: bool,
* non_get_request: bool,
* no_cache_purge_post_id: bool
* } $disabled_flags Flags indicating which conditions are disabling optimization.
*/
$can_optimize = (bool) apply_filters( 'od_can_optimize_response', ! $has_disabled_flags, $disabled_flags );
$reasons = array();
if ( ! $can_optimize ) {
$reason_messages = array(
'is_search' => __( 'Page is not optimized because it is a search results page.', 'optimization-detective' ),
'is_embed' => __( 'Page is not optimized because it is an embed.', 'optimization-detective' ),
'is_preview' => __( 'Page is not optimized because it is a preview.', 'optimization-detective' ),
'is_customize_preview' => __( 'Page is not optimized because it is a customize preview.', 'optimization-detective' ),
'non_get_request' => __( 'Page is not optimized because it is not a GET request.', 'optimization-detective' ),
'no_cache_purge_post_id' => __( 'Page is not optimized because there is no post ID available for cache purging.', 'optimization-detective' ),
);
$reasons = wp_array_slice_assoc( $reason_messages, array_keys( array_filter( $disabled_flags ) ) );
// If no technical reasons but optimization still disabled, it's because of the filter.
if ( 0 === count( $reasons ) ) {
$reasons['filter_disabled'] = __( 'Page is not optimized because the od_can_optimize_response filter returned false.', 'optimization-detective' );
}
}
if ( od_is_rest_api_unavailable() && ! ( wp_get_environment_type() === 'local' && ! function_exists( 'tests_add_filter' ) ) ) {
$reasons['rest_api_unavailable'] = __( 'Page is not optimized because the REST API for storing URL Metrics is not available.', 'optimization-detective' );
}
if ( isset( $_GET['optimization_detective_disabled'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
$reasons['query_param_disabled'] = __( 'Page is not optimized because the URL has the optimization_detective_disabled query parameter.', 'optimization-detective' );
}
return $reasons;
}
/**
* Displays the HTML generator META tag for the Optimization Detective plugin.
*
* See {@see 'wp_head'}.
*
* @since 0.1.0
* @access private
*/
function od_render_generator_meta_tag(): void {
// Use the plugin slug as it is immutable.
$content = 'optimization-detective ' . OPTIMIZATION_DETECTIVE_VERSION;
// Add any reasons why Optimization Detective is disabled.
$disabled_reasons = od_get_disabled_reasons();
if ( count( $disabled_reasons ) > 0 ) {
$flags = array_keys( $disabled_reasons );
$content .= '; ' . implode( '; ', $flags );
}
echo '<meta name="generator" content="' . esc_attr( $content ) . '">' . "\n";
}
/**
* Adds an Extensions link to the plugin row meta for Optimization Detective.
*
* This link directs users to the plugin directory to discover extensions that
* provide optimization functionality using the Optimization Detective plugin.
*
* @since 1.0.0
* @access private
*
* @param string[]|mixed $plugin_meta The plugin's metadata.
* @param string $plugin_file Plugin file.
* @return string[] Updated plugin metadata.
*/
function od_render_extensions_meta_link( $plugin_meta, string $plugin_file ): array {
if ( ! is_array( $plugin_meta ) ) {
$plugin_meta = array();
}
if ( 'optimization-detective/load.php' !== $plugin_file || ! current_user_can( 'install_plugins' ) ) {
return $plugin_meta;
}
/* @noinspection HtmlUnknownTarget */
$extensions_link = sprintf(
'<a href="%s">%s</a>',
esc_url( admin_url( 'plugin-install.php?s=optimization-detective&tab=search&type=tag' ) ),
esc_html__( 'Extensions', 'optimization-detective' )
);
$plugin_meta[] = $extensions_link;
return $plugin_meta;
}
/**
* Checks for active extension plugins for Optimization Detective.
*
* @since 1.0.0
* @access private
*
* @return string[] List of active extension plugin files.
*/
function od_get_active_extensions(): array {
$installed_plugins = get_plugins();
$active_extensions = array();
foreach ( $installed_plugins as $plugin_slug => $plugin_data ) {
if ( isset( $plugin_data['RequiresPlugins'] ) && is_string( $plugin_data['RequiresPlugins'] ) ) {
$required_plugins = array_map( 'trim', explode( ',', $plugin_data['RequiresPlugins'] ) );
if ( in_array( 'optimization-detective', $required_plugins, true ) && is_plugin_active( $plugin_slug ) ) {
$active_extensions[] = $plugin_slug;
}
}
}
// Check for plugins without Requires Plugins header but known to be extensions.
$suggesting_extensions = array(
'embed-optimizer/load.php',
);
foreach ( $suggesting_extensions as $extension ) {
if ( isset( $installed_plugins[ $extension ] ) && is_plugin_active( $extension ) ) {
$active_extensions[] = $extension;
}
}
return array_values( array_unique( $active_extensions ) );
}
/**
* Renders an inline admin notice prompting the user to install or activate extensions for Optimization Detective.
*
* @since 1.0.0
* @access private
*/
function od_maybe_render_installed_extensions_admin_notice(): void {
if ( ! current_user_can( 'activate_plugins' ) ) {
return;
}
$active_extensions = od_get_active_extensions();
if ( count( $active_extensions ) > 0 ) {
return;
}
$message = sprintf(
'<summary style="margin: 0.5em 0">%s</summary>',
esc_html__( 'Optimization Detective is a framework plugin which requires extensions.', 'optimization-detective' )
);
$message .= '<p>' . esc_html__( 'This plugin doesn’t provide standalone functionality; it is a framework that requires extension plugins to implement optimizations. Please install and activate one or more of the following extensions:', 'optimization-detective' ) . '</p>';
$featured_extensions = array(
'image-prioritizer' => array(
'name' => __( 'Image Prioritizer', 'optimization-detective' ),
'description' => __( 'Prioritizes the loading of images and videos based on how visible they are to actual visitors; adds fetchpriority and applies lazy-loading.', 'optimization-detective' ),
'url' => admin_url( 'plugin-install.php?tab=plugin-information&plugin=image-prioritizer&TB_iframe=true&width=772' ),
),
'embed-optimizer' => array(
'name' => __( 'Embed Optimizer', 'optimization-detective' ),
'description' => __( 'Optimizes the performance of embeds through lazy-loading, adding dns-prefetch links, and reserving space to reduce layout shifts.', 'optimization-detective' ),
'url' => admin_url( 'plugin-install.php?tab=plugin-information&plugin=embed-optimizer&TB_iframe=true&width=772' ),
),
);
$message .= '<table class="widefat" style="margin-bottom: 11px;"><tbody>';
foreach ( $featured_extensions as $featured_extension ) {
/* @noinspection HtmlUnknownTarget */
$message .= sprintf(
'<tr>
<td><strong>%s</strong></td>
<td>%s</td>
</tr>',
current_user_can( 'install_plugins' ) ?
sprintf( '<a href="%s" class="thickbox open-plugin-details-modal">%s</a>', esc_url( $featured_extension['url'] ), esc_html( $featured_extension['name'] ) ) :
esc_html( $featured_extension['name'] ),
esc_html( $featured_extension['description'] )
);
}
$message .= '</tbody></table>';
$message = "<details>$message</details>";
$notice = wp_get_admin_notice(
$message,
array(
'type' => 'info',
'additional_classes' => array( 'inline' ),
'paragraph_wrap' => false,
)
);
if ( current_user_can( 'install_plugins' ) ) {
add_thickbox();
}
echo wp_kses( $notice, wp_kses_allowed_html( 'post' ) );
}
/**
* Renders a paragraph of links to the plugin's documentation on GitHub.
*
* @since 1.0.0
* @access private
*/
function od_render_documentation_links(): void {
echo '<p>';
/* @noinspection HtmlUnknownTarget */
echo wp_kses_post(
sprintf(
/* translators: 1: project documentation URL, 2: introduction URL, 3: code reference URL, 4: extensions list URL. */
__( 'The <a href="%1$s" target="_blank">project documentation</a> is available on GitHub, including an <a href="%2$s" target="_blank">introduction</a>, <a href="%3$s" target="_blank">code reference</a>, and a list of <a href="%4$s" target="_blank">extensions</a>.', 'optimization-detective' ),
esc_url( 'https://github.com/WordPress/performance/tree/trunk/plugins/optimization-detective/docs' ),
esc_url( 'https://github.com/WordPress/performance/blob/trunk/plugins/optimization-detective/docs/introduction.md' ),
esc_url( 'https://github.com/WordPress/performance/blob/trunk/plugins/optimization-detective/docs/hooks.md' ),
esc_url( 'https://github.com/WordPress/performance/blob/trunk/plugins/optimization-detective/docs/extensions.md' )
)
);
echo '</p>';
}
/**
* Displays an inline admin notice on the plugin row if no extensions are installed and active.
*
* @since 1.0.0
* @access private
*
* @param non-empty-string $plugin_file Plugin file.
*/
function od_render_installed_extensions_admin_notice_in_plugin_row( string $plugin_file ): void {
if ( 'optimization-detective/load.php' !== $plugin_file ) {
return;
}
od_maybe_render_installed_extensions_admin_notice();
od_render_documentation_links();
}
/**
* Gets the path to a script or stylesheet.
*
* @since 0.9.0
* @access private
*
* @param string $src_path Source path, relative to the plugin root.
* @param string|null $min_path Minified path. If not supplied, then '.min' is injected before the file extension in the source path.
* @return string URL to script or stylesheet.
*
* @noinspection PhpDocMissingThrowsInspection
*/
function od_get_asset_path( string $src_path, ?string $min_path = null ): string {
if ( null === $min_path ) {
// Note: wp_scripts_get_suffix() is not used here because we need access to both the source and minified paths.
$min_path = (string) preg_replace( '/(?=\.\w+$)/', '.min', $src_path );
}
$force_src = false;
if ( WP_DEBUG && ! file_exists( trailingslashit( __DIR__ ) . $min_path ) ) {
$force_src = true;
/**
* No WP_Exception is thrown by wp_trigger_error() since E_USER_ERROR is not passed as the error level.
*
* @noinspection PhpUnhandledExceptionInspection
*/
wp_trigger_error(
__FUNCTION__,
sprintf(
/* translators: %s is the minified asset path */
__( 'Minified asset has not been built: %s', 'optimization-detective' ),
$min_path
),
E_USER_WARNING
);
}
if ( SCRIPT_DEBUG || $force_src ) {
return $src_path;
}
return $min_path;
}