|
1
|
|
|
<?php |
|
2
|
|
|
/** |
|
3
|
|
|
* Webperf plugin for Craft CMS 3.x |
|
4
|
|
|
* |
|
5
|
|
|
* Monitor the performance of your webpages through real-world user timing data |
|
6
|
|
|
* |
|
7
|
|
|
* @link https://nystudio107.com |
|
|
|
|
|
|
8
|
|
|
* @copyright Copyright (c) 2018 nystudio107 |
|
|
|
|
|
|
9
|
|
|
*/ |
|
|
|
|
|
|
10
|
|
|
|
|
11
|
|
|
namespace nystudio107\webperf\helpers; |
|
12
|
|
|
|
|
13
|
|
|
use Craft; |
|
|
|
|
|
|
14
|
|
|
use craft\helpers\ArrayHelper; |
|
|
|
|
|
|
15
|
|
|
use craft\models\Site; |
|
|
|
|
|
|
16
|
|
|
|
|
17
|
|
|
use yii\web\ForbiddenHttpException; |
|
|
|
|
|
|
18
|
|
|
use yii\web\NotFoundHttpException; |
|
|
|
|
|
|
19
|
|
|
|
|
20
|
|
|
/** |
|
|
|
|
|
|
21
|
|
|
* @author nystudio107 |
|
|
|
|
|
|
22
|
|
|
* @package Webperf |
|
|
|
|
|
|
23
|
|
|
* @since 1.0.0 |
|
|
|
|
|
|
24
|
|
|
*/ |
|
|
|
|
|
|
25
|
|
|
class MultiSite |
|
26
|
|
|
{ |
|
27
|
|
|
// Constants |
|
28
|
|
|
// ========================================================================= |
|
29
|
|
|
|
|
30
|
|
|
// Public Static Methods |
|
31
|
|
|
// ========================================================================= |
|
32
|
|
|
|
|
33
|
|
|
/** |
|
|
|
|
|
|
34
|
|
|
* @param array $variables |
|
|
|
|
|
|
35
|
|
|
*/ |
|
|
|
|
|
|
36
|
|
|
public static function setSitesMenuVariables(array &$variables) |
|
37
|
|
|
{ |
|
38
|
|
|
// Set defaults based on the section settings |
|
39
|
|
|
$variables['sitesMenu'] = [ |
|
40
|
|
|
0 => Craft::t( |
|
41
|
|
|
'webperf', |
|
42
|
|
|
'All Sites' |
|
43
|
|
|
), |
|
44
|
|
|
]; |
|
45
|
|
|
// Enabled sites |
|
46
|
|
|
$sites = Craft::$app->getSites(); |
|
47
|
|
|
if (Craft::$app->getIsMultiSite()) { |
|
48
|
|
|
|
|
49
|
|
|
/** @var Site $site */ |
|
|
|
|
|
|
50
|
|
|
foreach ($sites->getAllGroups() as $group) { |
|
51
|
|
|
$groupSites = $sites->getSitesByGroupId($group->id); |
|
52
|
|
|
$variables['sitesMenu'][$group->name] |
|
53
|
|
|
= ['optgroup' => $group->name]; |
|
54
|
|
|
foreach ($groupSites as $groupSite) { |
|
55
|
|
|
$variables['sitesMenu'][$groupSite->id] = $groupSite->name; |
|
56
|
|
|
} |
|
57
|
|
|
} |
|
58
|
|
|
} |
|
59
|
|
|
} |
|
60
|
|
|
|
|
61
|
|
|
/** |
|
|
|
|
|
|
62
|
|
|
* @param string $siteHandle |
|
|
|
|
|
|
63
|
|
|
* @param $siteId |
|
|
|
|
|
|
64
|
|
|
* @param $variables |
|
|
|
|
|
|
65
|
|
|
* |
|
66
|
|
|
* @throws \yii\web\ForbiddenHttpException |
|
67
|
|
|
*/ |
|
|
|
|
|
|
68
|
|
|
public static function setMultiSiteVariables($siteHandle, &$siteId, array &$variables) |
|
69
|
|
|
{ |
|
70
|
|
|
// Enabled sites |
|
71
|
|
|
$sites = Craft::$app->getSites(); |
|
72
|
|
|
if (Craft::$app->getIsMultiSite()) { |
|
73
|
|
|
// Set defaults based on the section settings |
|
74
|
|
|
$variables['enabledSiteIds'] = []; |
|
75
|
|
|
$variables['siteIds'] = []; |
|
76
|
|
|
|
|
77
|
|
|
/** @var Site $site */ |
|
|
|
|
|
|
78
|
|
|
foreach ($sites->getEditableSiteIds() as $editableSiteId) { |
|
79
|
|
|
$variables['enabledSiteIds'][] = $editableSiteId; |
|
80
|
|
|
$variables['siteIds'][] = $editableSiteId; |
|
81
|
|
|
} |
|
82
|
|
|
|
|
83
|
|
|
// Make sure the $siteId they are trying to edit is in our array of editable sites |
|
84
|
|
|
if (!\in_array($siteId, $variables['enabledSiteIds'], false)) { |
|
85
|
|
|
if (!empty($variables['enabledSiteIds'])) { |
|
86
|
|
|
if ($siteId !== 0) { |
|
87
|
|
|
$siteId = reset($variables['enabledSiteIds']); |
|
88
|
|
|
} |
|
89
|
|
|
} else { |
|
90
|
|
|
self::requirePermission('editSite:'.$siteId); |
|
91
|
|
|
} |
|
92
|
|
|
} |
|
93
|
|
|
} |
|
94
|
|
|
// Set the currentSiteId and currentSiteHandle |
|
95
|
|
|
$variables['currentSiteId'] = empty($siteId) ? 0 : $siteId; |
|
96
|
|
|
$variables['currentSiteHandle'] = empty($siteHandle) |
|
97
|
|
|
? Craft::$app->getSites()->currentSite->handle |
|
98
|
|
|
: $siteHandle; |
|
99
|
|
|
|
|
100
|
|
|
// Page title |
|
101
|
|
|
$variables['showSites'] = ( |
|
102
|
|
|
Craft::$app->getIsMultiSite() && |
|
103
|
|
|
\count($variables['enabledSiteIds']) |
|
104
|
|
|
); |
|
105
|
|
|
|
|
106
|
|
|
if ($variables['showSites']) { |
|
107
|
|
|
if ($variables['currentSiteId'] === 0) { |
|
108
|
|
|
$variables['sitesMenuLabel'] = Craft::t( |
|
109
|
|
|
'webperf', |
|
110
|
|
|
'All Sites' |
|
111
|
|
|
); |
|
112
|
|
|
} else { |
|
113
|
|
|
$variables['sitesMenuLabel'] = Craft::t( |
|
114
|
|
|
'site', |
|
115
|
|
|
$sites->getSiteById((int)$variables['currentSiteId'])->name |
|
116
|
|
|
); |
|
117
|
|
|
} |
|
118
|
|
|
} else { |
|
119
|
|
|
$variables['currentSiteId'] = 0; |
|
120
|
|
|
$variables['sitesMenuLabel'] = ''; |
|
121
|
|
|
} |
|
122
|
|
|
} |
|
123
|
|
|
|
|
124
|
|
|
/** |
|
125
|
|
|
* Return a siteId from a siteHandle |
|
126
|
|
|
* |
|
127
|
|
|
* @param string $siteHandle |
|
|
|
|
|
|
128
|
|
|
* |
|
129
|
|
|
* @return int|null |
|
130
|
|
|
* @throws NotFoundHttpException |
|
131
|
|
|
*/ |
|
132
|
|
|
public static function getSiteIdFromHandle($siteHandle) |
|
133
|
|
|
{ |
|
134
|
|
|
// Get the site to edit |
|
135
|
|
|
if ($siteHandle !== null) { |
|
|
|
|
|
|
136
|
|
|
$site = Craft::$app->getSites()->getSiteByHandle($siteHandle); |
|
137
|
|
|
if (!$site) { |
|
138
|
|
|
throw new NotFoundHttpException('Invalid site handle: '.$siteHandle); |
|
139
|
|
|
} |
|
140
|
|
|
$siteId = $site->id; |
|
141
|
|
|
} else { |
|
142
|
|
|
$siteId = 0; |
|
143
|
|
|
} |
|
144
|
|
|
|
|
145
|
|
|
return $siteId; |
|
146
|
|
|
} |
|
147
|
|
|
|
|
148
|
|
|
/** |
|
149
|
|
|
* Returns the site that most closely matches the requested URL. |
|
150
|
|
|
* Adapted from craft\web\Request.php |
|
151
|
|
|
* |
|
152
|
|
|
* @param string $url |
|
|
|
|
|
|
153
|
|
|
* |
|
154
|
|
|
* @return Site |
|
155
|
|
|
* @throws \craft\errors\SiteNotFoundException |
|
156
|
|
|
*/ |
|
157
|
|
|
public static function getSiteFromUrl(string $url): Site |
|
158
|
|
|
{ |
|
159
|
|
|
$sites = Craft::$app->getSites()->getAllSites(); |
|
160
|
|
|
$request = Craft::$app->getRequest(); |
|
161
|
|
|
|
|
162
|
|
|
$hostName = parse_url($url, PHP_URL_HOST); |
|
163
|
|
|
$fullUri = trim(parse_url($url, PHP_URL_PATH), '/'); |
|
164
|
|
|
$secure = parse_url($url, PHP_URL_SCHEME) === 'https'; |
|
165
|
|
|
$scheme = $secure ? 'https' : 'http'; |
|
166
|
|
|
$port = $secure ? $request->getSecurePort() : $request->getPort(); |
|
167
|
|
|
|
|
168
|
|
|
$scores = []; |
|
169
|
|
|
foreach ($sites as $i => $site) { |
|
170
|
|
|
if (!$site->baseUrl) { |
|
171
|
|
|
continue; |
|
172
|
|
|
} |
|
173
|
|
|
|
|
174
|
|
|
if (($parsed = parse_url(self::getBaseUrl($site))) === false) { |
|
175
|
|
|
Craft::warning('Unable to parse the site base URL: ' . $site->baseUrl); |
|
176
|
|
|
continue; |
|
177
|
|
|
} |
|
178
|
|
|
|
|
179
|
|
|
// Does the site URL specify a host name? |
|
180
|
|
|
if (!empty($parsed['host']) && $hostName && $parsed['host'] !== $hostName) { |
|
181
|
|
|
continue; |
|
182
|
|
|
} |
|
183
|
|
|
|
|
184
|
|
|
// Does the site URL specify a base path? |
|
185
|
|
|
$parsedPath = !empty($parsed['path']) ? self::normalizePath($parsed['path']) : ''; |
|
186
|
|
|
if ($parsedPath && strpos($fullUri . '/', $parsedPath . '/') !== 0) { |
|
187
|
|
|
continue; |
|
188
|
|
|
} |
|
189
|
|
|
|
|
190
|
|
|
// It's a possible match! |
|
191
|
|
|
$scores[$i] = 8 + strlen($parsedPath); |
|
192
|
|
|
|
|
193
|
|
|
$parsedScheme = !empty($parsed['scheme']) ? strtolower($parsed['scheme']) : $scheme; |
|
194
|
|
|
$parsedPort = $parsed['port'] ?? ($parsedScheme === 'https' ? 443 : 80); |
|
195
|
|
|
|
|
196
|
|
|
// Do the ports match? |
|
197
|
|
|
if ($parsedPort == $port) { |
|
198
|
|
|
$scores[$i] += 4; |
|
199
|
|
|
} |
|
200
|
|
|
|
|
201
|
|
|
// Do the schemes match? |
|
202
|
|
|
if ($parsedScheme === $scheme) { |
|
203
|
|
|
$scores[$i] += 2; |
|
204
|
|
|
} |
|
205
|
|
|
|
|
206
|
|
|
// One Pence point if it's the primary site in case we need a tiebreaker |
|
207
|
|
|
if ($site->primary) { |
|
208
|
|
|
$scores[$i]++; |
|
209
|
|
|
} |
|
210
|
|
|
} |
|
211
|
|
|
|
|
212
|
|
|
if (empty($scores)) { |
|
213
|
|
|
// Default to the primary site |
|
214
|
|
|
return Craft::$app->getSites()->getPrimarySite(); |
|
215
|
|
|
} |
|
216
|
|
|
|
|
217
|
|
|
// Sort by scores descending |
|
218
|
|
|
arsort($scores, SORT_NUMERIC); |
|
219
|
|
|
$first = ArrayHelper::firstKey($scores); |
|
220
|
|
|
|
|
221
|
|
|
return $sites[$first]; |
|
222
|
|
|
} |
|
223
|
|
|
|
|
224
|
|
|
// Protected Static Methods |
|
225
|
|
|
// ========================================================================= |
|
226
|
|
|
|
|
227
|
|
|
/** |
|
|
|
|
|
|
228
|
|
|
* @param string $permissionName |
|
|
|
|
|
|
229
|
|
|
* |
|
230
|
|
|
* @throws ForbiddenHttpException |
|
231
|
|
|
*/ |
|
|
|
|
|
|
232
|
|
|
protected static function requirePermission(string $permissionName) |
|
233
|
|
|
{ |
|
234
|
|
|
if (!Craft::$app->getUser()->checkPermission($permissionName)) { |
|
235
|
|
|
throw new ForbiddenHttpException('User is not permitted to perform this action'); |
|
236
|
|
|
} |
|
237
|
|
|
} |
|
238
|
|
|
|
|
239
|
|
|
/** |
|
240
|
|
|
* Normalizes a URI path by trimming leading/trailing slashes and removing double slashes. |
|
241
|
|
|
* |
|
242
|
|
|
* @param string $path |
|
|
|
|
|
|
243
|
|
|
* @return string |
|
|
|
|
|
|
244
|
|
|
*/ |
|
245
|
|
|
protected static function normalizePath(string $path): string |
|
246
|
|
|
{ |
|
247
|
|
|
return preg_replace('/\/\/+/', '/', trim($path, '/')); |
|
248
|
|
|
} |
|
249
|
|
|
|
|
250
|
|
|
/** |
|
251
|
|
|
* Returns the site’s base URL. |
|
252
|
|
|
* |
|
253
|
|
|
* @param Site $site |
|
|
|
|
|
|
254
|
|
|
* |
|
255
|
|
|
* @return string|null |
|
256
|
|
|
*/ |
|
257
|
|
|
protected static function getBaseUrl(Site $site): string |
|
258
|
|
|
{ |
|
259
|
|
|
if ($site->baseUrl) { |
|
260
|
|
|
return rtrim(Craft::parseEnv($site->baseUrl), '/') . '/'; |
|
261
|
|
|
} |
|
262
|
|
|
|
|
263
|
|
|
return null; |
|
|
|
|
|
|
264
|
|
|
} |
|
265
|
|
|
} |
|
266
|
|
|
|