-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathCdn_Environment_LiteSpeed.php
160 lines (140 loc) · 5.13 KB
/
Cdn_Environment_LiteSpeed.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
<?php
/**
* File: Cdn_Environment_LiteSpeed.php
*
* @package W3TC
*/
namespace W3TC;
/**
* Class Cdn_Environment_LiteSpeed
*
* CDN rules generation for LiteSpeed
*/
class Cdn_Environment_LiteSpeed {
/**
* Config.
*
* @var Config
*/
private $c;
/**
* Constructor for the Cdn_Environment_LiteSpeed class.
*
* This constructor initializes the object with the provided configuration.
* It is typically called when an instance of the class is created to set up the configuration.
*
* @param object $config The configuration object that contains necessary settings.
*
* @return void
*/
public function __construct( $config ) {
$this->c = $config;
}
/**
* Generates CDN configuration rules for the LiteSpeed server.
*
* This method generates and returns the LiteSpeed configuration rules for handling fonts and headers, including
* canonical and CORS headers. It processes the provided CDN FTP configuration and applies filters to modify the rules.
*
* @param object $cdnftp The CDN FTP object used for generating the canonical header.
*
* @return string The generated CDN configuration rules.
*/
public function generate( $cdnftp ) {
$section_rules = array(
'other' => array(),
'add_header' => array(),
);
if ( $this->c->get_boolean( 'cdn.cors_header' ) ) {
$section_rules['add_header'][] = 'set Access-Control-Allow-Origin "*"';
}
$canonical_header = $this->generate_canonical( $cdnftp );
if ( ! empty( $canonical_header ) ) {
$section_rules['add_header'][] = $canonical_header;
}
if ( empty( $section_rules['add_header'] ) ) {
return '';
}
$section_rules = apply_filters( 'w3tc_cdn_rules_section', $section_rules, $this->c );
$context_rules[] = ' extraHeaders <<<END_extraHeaders';
foreach ( $section_rules['add_header'] as $line ) {
$context_rules[] = ' ' . $line;
}
$context_rules[] = ' END_extraHeaders';
$rules = array();
$rules[] = 'context exp:^.*(ttf|ttc|otf|eot|woff|woff2|font.css)$ {';
$rules[] = ' location $DOC_ROOT/$0';
$rules[] = ' allowBrowse 1';
$rules[] = implode( "\n", $context_rules );
$rules[] = '}';
return W3TC_MARKER_BEGIN_CDN . "\n" . implode( "\n", $rules ) . "\n" . W3TC_MARKER_END_CDN . "\n";
}
/**
* Generates the canonical header for the CDN configuration.
*
* This method generates a canonical header to be used in the CDN configuration if the 'cdn.canonical_header' setting
* is enabled in the configuration. It constructs a 'Link' header with the canonical URL based on the home URL.
*
* @param bool $cdnftp Optional. A flag to include CDN FTP in the canonical header generation. Defaults to false.
*
* @return string|null The canonical header string or null if not generated.
*/
public function generate_canonical( $cdnftp = false ) {
if ( ! $this->c->get_boolean( 'cdn.canonical_header' ) ) {
return null;
}
$home_url = get_home_url();
$parse_url = @parse_url( $home_url ); // phpcs:ignore
if ( ! isset( $parse_url['host'] ) ) {
return null;
}
return "set Link '<" . $parse_url['scheme'] . '://' . $parse_url['host'] . '%{REQUEST_URI}e>; rel="canonical"' . "'";
/* phpcs:ignore Squiz.PHP.CommentedOutCode.Found
$rules .= " RewriteRule .* - [E=CANONICAL:https://$host%{REQUEST_URI},NE]\n";
$rules .= " </IfModule>\n";
$rules .= " <IfModule mod_headers.c>\n";
$rules .= ' Header set Link "<%{CANONICAL}e>; rel=\"canonical\""' . "\n";
return 'set Link "<%{CANONICAL}e>; rel=\"canonical\""' . "\n";
*/
}
/**
* Modifies the extensions for the browser cache rules section.
*
* This method adjusts the list of file extensions for which browser cache rules should be applied. If CORS headers
* are enabled, certain font file types (e.g., ttf, otf, eot, woff, woff2) are removed from the extensions list.
*
* @param array $extensions The array of extensions for which rules are applied.
* @param string $section The section to which these rules apply.
*
* @return array The modified array of extensions.
*/
public function w3tc_browsercache_rules_section_extensions( $extensions, $section ) {
// CDN adds own rules for those extensions.
if ( $this->c->get_boolean( 'cdn.cors_header' ) ) {
unset( $extensions['ttf|ttc'] );
unset( $extensions['otf'] );
unset( $extensions['eot'] );
unset( $extensions['woff'] );
unset( $extensions['woff2'] );
}
return $extensions;
}
/**
* Modifies the browser cache rules section with the canonical header.
*
* This method adds the canonical header to the section rules if the 'cdn.canonical_header' setting is enabled.
* It modifies the provided section rules to include the generated canonical header.
*
* @param array $section_rules The current set of section rules.
* @param string $section The section to which the rules apply.
*
* @return array The modified set of section rules with the canonical header included.
*/
public function w3tc_browsercache_rules_section( $section_rules, $section ) {
$canonical_header = $this->generate_canonical();
if ( ! empty( $canonical_header ) ) {
$section_rules['add_header'][] = $canonical_header;
}
return $section_rules;
}
}