CDN.php
10 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
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
<?php
declare(strict_types=1);
namespace WP_Rocket\Engine\CDN;
use WP_Rocket\Admin\Options_Data;
/**
* CDN class
*
* @since 3.4
*/
class CDN {
/**
* WP Rocket Options instance
*
* @var Options_Data
*/
private $options;
/**
* Home URL host
*
* @var string
*/
private $home_host;
/**
* Constructor
*
* @param Options_Data $options WP Rocket Options instance.
*/
public function __construct( Options_Data $options ) {
$this->options = $options;
}
/**
* Search & Replace URLs with the CDN URLs in the provided content
*
* @since 3.4
*
* @param string $html HTML content.
* @return string
*/
public function rewrite( $html ) {
$relative_path_pattern = '';
$buffer = $html;
/**
* Filters the exclusion of CDN rewritting inside inline scripts
*
* @since 3.10.5
*
* @param bool $enable True to exclude, false otherwise.
*/
if ( apply_filters( 'rocket_cdn_exclude_inline_scripts', true ) ) {
$buffer = $this->remove_inline_scripts( $html );
}
/**
* Filters the CDN rewriting of relative paths
*
* @since 3.10.5
*
* @param bool $enable True to enable, false otherwise.
*/
if ( apply_filters( 'rocket_cdn_relative_paths', true ) ) {
$relative_path_pattern = '|\/[^/](?:[^"\')\s>]+\.[[:alnum:]]+)';
}
$pattern = '#[("\']\s*(?<url>(?:(?:https?:|)' . preg_quote( $this->get_base_url(), '#' ) . ')\/(?:(?:(?:' . $this->get_allowed_paths() . ')[^"\',)]+))' . $relative_path_pattern . ')\s*["\')]#i';
if ( ! preg_match_all( $pattern, $buffer, $matches, PREG_SET_ORDER ) ) {
return $html;
}
foreach ( $matches as $match ) {
$cdn_url = str_replace( $match['url'], $this->rewrite_url( $match['url'] ), $match[0] );
$html = str_replace( $match[0], $cdn_url, $html );
}
return $html;
}
/**
* Rewrites URLs in a srcset attribute using the CDN URL
*
* @since 3.4.0.4
*
* @param string $html HTML content.
* @return string
*/
public function rewrite_srcset( $html ) {
$pattern = '#\s+(?:' . $this->get_srcset_attributes() . ')?srcset\s*=\s*["\']\s*(?<sources>[^"\',\s]+\.[^"\',\s]+(?:\s+\d+[wx])?(?:\s*,\s*[^"\',\s]+\.[^"\',\s]+(?:\s+\d+[wx])?)*)\s*["\']#i';
if ( ! preg_match_all( $pattern, $html, $srcsets, PREG_SET_ORDER ) ) {
return $html;
}
foreach ( $srcsets as $srcset ) {
$sources = explode( ',', $srcset['sources'] );
$sources = array_unique( array_map( 'trim', $sources ) );
$cdn_srcset = $srcset['sources'];
foreach ( $sources as $source ) {
$url = preg_split( '#\s+#', trim( $source ) );
$cdn_source = str_replace( $url[0], $this->rewrite_url( $url[0] ), $source );
$cdn_srcset = str_replace( $source, $cdn_source, $cdn_srcset );
}
$cdn_srcsets = str_replace( $srcset['sources'], $cdn_srcset, $srcset[0] );
$html = str_replace( $srcset[0], $cdn_srcsets, $html );
}
return $html;
}
/**
* Rewrites an URL with the CDN URL
*
* @since 3.4
*
* @param string $url Original URL.
* @return string
*/
public function rewrite_url( $url ) {
if ( ! $this->options->get( 'cdn', 0 ) ) {
return $url;
}
if ( $this->is_excluded( $url ) ) {
return $url;
}
$cdn_urls = $this->get_cdn_urls( $this->get_zones_for_url( $url ) );
if ( ! $cdn_urls ) {
return $url;
}
$parsed_url = wp_parse_url( $url );
$cdn_url = untrailingslashit( $cdn_urls[ ( abs( crc32( $parsed_url['path'] ) ) % count( $cdn_urls ) ) ] );
if ( ! isset( $parsed_url['host'] ) ) {
return rocket_add_url_protocol( $cdn_url . '/' . ltrim( $url, '/' ) );
}
$home_host = $this->get_home_host();
if ( ! isset( $parsed_url['scheme'] ) ) {
return str_replace( $home_host, rocket_remove_url_protocol( $cdn_url ), $url );
}
$home_url = [
'http://' . $home_host,
'https://' . $home_host,
];
return str_replace( $home_url, rocket_add_url_protocol( $cdn_url ), $url );
}
/**
* Rewrites URLs to CDN URLs in CSS content
*
* @since 3.4
*
* @param string $content CSS content.
* @return string
*/
public function rewrite_css_properties( $content ) {
if ( ! preg_match_all( '#url\(\s*(\'|")?\s*(?![\'"]?data)(?<url>(?:https?:|)' . preg_quote( $this->get_base_url(), '#' ) . '\/[^"|\'|\)|\s]+)\s*#i', $content, $matches, PREG_SET_ORDER ) ) {
return $content;
}
foreach ( $matches as $property ) {
/**
* Filters the URL of the CSS property
*
* @since 2.8
*
* @param string $url URL of the CSS property.
*/
$cdn_url = $this->rewrite_url( apply_filters( 'rocket_cdn_css_properties_url', $property['url'] ) );
$replacement = str_replace( $property['url'], $cdn_url, $property[0] );
$content = str_replace( $property[0], $replacement, $content );
}
return $content;
}
/**
* Get all CDN URLs for one or more zones.
*
* @since 2.1
* @since 3.0 Don't check for WP Rocket CDN option activated to be able to use the function on Hosting with CDN auto-enabled.
*
* @param array $zones List of zones. Default is [ 'all' ].
* @return array
*/
public function get_cdn_urls( $zones = [ 'all' ] ) {
$hosts = [];
$zones = (array) $zones;
$cdn_urls = $this->options->get( 'cdn_cnames', [] );
if ( $cdn_urls ) {
$cdn_zones = $this->options->get( 'cdn_zone', [] );
foreach ( $cdn_urls as $k => $urls ) {
if ( ! in_array( $cdn_zones[ $k ], $zones, true ) ) {
continue;
}
$urls = explode( ',', $urls );
$urls = array_map( 'trim', $urls );
foreach ( $urls as $url ) {
$hosts[] = $url;
}
}
}
/**
* Filter all CDN URLs.
*
* @since 2.7
* @since 3.4 Added $zone parameter.
*
* @param array $hosts List of CDN URLs.
* @param array $zones List of zones. Default is [ 'all' ].
*/
$hosts = (array) apply_filters( 'rocket_cdn_cnames', $hosts, $zones );
$hosts = array_filter( $hosts );
$hosts = array_flip( array_flip( $hosts ) );
$hosts = array_values( $hosts );
return $hosts;
}
/**
* Gets the base URL for the website
*
* @since 3.4
*
* @return string
*/
private function get_base_url() {
return '//' . $this->get_home_host();
}
/**
* Gets the allowed paths as a regex pattern for the CDN rewrite
*
* @since 3.4
*
* @return string
*/
private function get_allowed_paths() {
$wp_content_dirname = ltrim( trailingslashit( wp_parse_url( content_url(), PHP_URL_PATH ) ), '/' );
$wp_includes_dirname = ltrim( trailingslashit( wp_parse_url( includes_url(), PHP_URL_PATH ) ), '/' );
$upload_dirname = '';
$uploads_info = wp_upload_dir();
if ( ! empty( $uploads_info['baseurl'] ) ) {
$upload_dirname = '|' . ltrim( trailingslashit( wp_parse_url( $uploads_info['baseurl'], PHP_URL_PATH ) ), '/' );
}
return $wp_content_dirname . $upload_dirname . '|' . $wp_includes_dirname;
}
/**
* Checks if the provided URL can be rewritten with the CDN URL
*
* @since 3.4
*
* @param string $url URL to check.
* @return boolean
*/
public function is_excluded( $url ) {
$path = wp_parse_url( $url, PHP_URL_PATH );
$excluded_extensions = [
'php',
'html',
'htm',
'cfm',
];
if ( in_array( pathinfo( $path, PATHINFO_EXTENSION ), $excluded_extensions, true ) ) {
return true;
}
if ( ! $path ) {
return true;
}
if ( '/' === $path ) {
return true;
}
if ( preg_match( '#^(' . $this->get_excluded_files( '#' ) . ')$#', $path ) ) {
return true;
}
return false;
}
/**
* Gets the home URL host
*
* @since 3.5.5
*
* @return string
*/
private function get_home_host() {
if ( empty( $this->home_host ) ) {
$this->home_host = wp_parse_url( home_url(), PHP_URL_HOST );
}
return $this->home_host;
}
/**
* Gets the CDN zones for the provided URL
*
* @since 3.4
*
* @param string $url URL to check.
* @return array
*/
private function get_zones_for_url( $url ) {
$zones = [ 'all' ];
$ext = pathinfo( wp_parse_url( $url, PHP_URL_PATH ), PATHINFO_EXTENSION );
$image_types = [
'jpg',
'jpeg',
'jpe',
'png',
'gif',
'webp',
'bmp',
'tiff',
'svg',
];
if ( 'css' === $ext || 'js' === $ext ) {
$zones[] = 'css_and_js';
}
if ( 'css' === $ext ) {
$zones[] = 'css';
}
if ( 'js' === $ext ) {
$zones[] = 'js';
}
if ( in_array( $ext, $image_types, true ) ) {
$zones[] = 'images';
}
return $zones;
}
/**
* Get all files we don't allow to get in CDN.
*
* @since 2.5
*
* @param string $delimiter RegEx delimiter.
* @return string A pipe-separated list of excluded files.
*/
private function get_excluded_files( $delimiter ) {
$files = $this->options->get( 'cdn_reject_files', [] );
/**
* Filter the excluded files.
*
* @since 2.5
*
* @param array $files List of excluded files.
*/
$files = (array) apply_filters( 'rocket_cdn_reject_files', $files );
$files = array_filter( $files );
if ( ! $files ) {
return '';
}
$files = array_flip( array_flip( $files ) );
$files = array_map(
function ( $file ) use ( $delimiter ) {
return str_replace( $delimiter, '\\' . $delimiter, $file );
},
$files
);
return implode( '|', $files );
}
/**
* Get srcset attributes to rewrite to the CDN.
*
* @since 3.8.7
*
* @return string A pipe-separated list of srcset attributes.
*/
private function get_srcset_attributes() {
/**
* Filter the srcset attributes.
*
* @since 3.8.7
*
* @param array $srcset_attributes List of srcset attributes.
*/
$srcset_attributes = (array) apply_filters(
'rocket_cdn_srcset_attributes',
[
'data-lazy-',
'data-',
]
);
return implode( '|', $srcset_attributes );
}
/**
* Removes inline scripts from the HTML
*
* @since 3.10.5
*
* @param string $html HTML content.
*
* @return string
*/
private function remove_inline_scripts( $html ): string {
if ( ! preg_match_all( '#<script(?:[^>]*)>(?<content>[\s\S]*?)</script>#msi', $html, $matches, PREG_SET_ORDER ) ) {
return $html;
}
if ( empty( $matches ) ) {
return $html;
}
foreach ( $matches as $inline_js ) {
if ( empty( $inline_js['content'] ) ) {
continue;
}
$html = str_replace( $inline_js[0], '', $html );
}
return $html;
}
}