generated from SimpleDevTools/start-here
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LaravelPageCacheValetDriver.php
44 lines (38 loc) · 1.13 KB
/
LaravelPageCacheValetDriver.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
<?php
// Place this file inside of ~/.config/valet/Drivers
use Valet\Drivers\LaravelValetDriver;
class LaravelPageCacheValetDriver extends LaravelValetDriver
{
/**
* Determine if the driver serves the request.
*
* @param string $sitePath
* @param string $siteName
* @param string $uri
* @return bool
*/
public function serves($sitePath, $siteName, $uri)
{
return $_SERVER['REQUEST_METHOD'] === 'GET'
&& is_dir("$sitePath/public/page-cache")
&& parent::serves($sitePath, $siteName, $uri);
}
/**
* Get the fully resolved path to the application's front controller.
*
* @param string $sitePath
* @param string $siteName
* @param string $uri
* @return string
*/
public function frontControllerPath($sitePath, $siteName, $uri)
{
if ($uri === '/') {
$uri = 'pc__index__pc';
}
if (file_exists($cachePath = $sitePath.'/public/page-cache/'.$uri.'.html')) {
return $cachePath;
}
return parent::frontControllerPath($sitePath, $siteName, $uri);
}
}