-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathrewrite.php
executable file
·90 lines (79 loc) · 2.7 KB
/
rewrite.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
<?php
/**
* @copyright Copyright (c) PutYourLightsOn
*/
use craft\config\GeneralConfig;
use craft\helpers\App;
use putyourlightson\blitz\services\CacheRequestService;
/**
* Blitz rewrite.php
*
* Rewrites a request to a cached file, if it exists, based on the URI.
* This is useful only in situations where a server rewrite is not possible.
* Works with the Blitz File Storage driver only!
*
* Use it by requiring the file and then calling the method, inside the
* `web/index.php` file, directly after `bootstrap.php` is required.
*
* ```php
* // Load Blitz rewrite
* require CRAFT_VENDOR_PATH . '/putyourlightson/craft-blitz/src/rewrite.php';
* ```
*
* You can configure the rewrite by defining one or more constants. For example,
* if the `Query String Caching` setting is set to `Cache URLs with query strings
* as the same page`, then set `BLITZ_INCLUDE_QUERY_STRING` to `false`.
*
* ```php
* // Load Blitz rewrite
* define('BLITZ_INCLUDE_QUERY_STRING', false);
* define('BLITZ_CACHE_FOLDER_PATH', 'path/to/cache');
* require CRAFT_VENDOR_PATH . '/putyourlightson/craft-blitz/src/rewrite.php';
* ```
*
* @since 4.3.0
*/
if ($_SERVER['REQUEST_METHOD'] !== 'GET') {
return;
}
$config = require CRAFT_BASE_PATH . '/config/general.php';
if ($config instanceof GeneralConfig) {
$tokenParam = $config->tokenParam;
} else {
$environment = App::env('CRAFT_ENVIRONMENT') ?? App::env('ENVIRONMENT') ?? 'production';
$tokenParam = $config['tokenParam'] ?? $config[$environment]['tokenParam'] ?? $config['*']['tokenParam'] ?? 'token';
}
if (!empty($_GET[$tokenParam])) {
return;
}
$tokenParam = defined('BLITZ_TOKEN_PARAM') ? BLITZ_TOKEN_PARAM : 'token';
if (!empty($_GET[$tokenParam])) {
return;
}
$host = str_replace(':', '', $_SERVER['HTTP_HOST']);
$uri = $_SERVER['REQUEST_URI'];
$includeQueryString = !defined('BLITZ_INCLUDE_QUERY_STRING') || BLITZ_INCLUDE_QUERY_STRING;
if ($includeQueryString) {
$uri = str_replace('?', '/', $uri);
} else {
$uri = strtok($uri, '?');
}
/**
* Modify the URI for include action requests.
*
* @see CacheRequestService::getRequestedCacheableSiteUri()
*/
$action = $_GET['action'] ?? null;
if ($action === CacheRequestService::CACHED_INCLUDE_ACTION) {
$uri = CacheRequestService::CACHED_INCLUDE_PATH . '/' . http_build_query($_GET);
} elseif ($action === CacheRequestService::DYNAMIC_INCLUDE_ACTION) {
$uri = http_build_query($_GET);
}
$cacheFolderPath = defined('BLITZ_CACHE_FOLDER_PATH') ? BLITZ_CACHE_FOLDER_PATH : CRAFT_BASE_PATH . '/web/cache/blitz';
$path = $cacheFolderPath . '/' . $host . '/' . $uri . '/index.html';
$path = str_replace(['//', '..'], ['/', ''], $path);
if (!is_file($path)) {
return;
}
echo file_get_contents($path);
exit();