Skip to content

Commit 12a9346

Browse files
committed
wip
1 parent 67284be commit 12a9346

File tree

5 files changed

+37
-55
lines changed

5 files changed

+37
-55
lines changed

src/Commands/StaticBuildCommand.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function handle(): void
4040
match ($driver = $this->config->get('static.driver', 'routes')) {
4141
'crawler' => $this->cacheWithCrawler(),
4242
'routes' => $this->cacheWithRoutes(),
43-
default => throw new Exception('Static driver ' . $driver . ' is not supported'),
43+
default => throw new Exception('Static driver '.$driver.' is not supported'),
4444
};
4545
}
4646

@@ -50,7 +50,7 @@ public function cacheWithRoutes(): void
5050
* @var Collection<\Illuminate\Routing\Route> $routes
5151
*/
5252
$routes = collect(Route::getRoutes()->get('GET'))->filter(
53-
fn($route) => in_array(StaticResponse::class, Route::gatherRouteMiddleware($route)),
53+
fn ($route) => in_array(StaticResponse::class, Route::gatherRouteMiddleware($route)),
5454
);
5555

5656
$failed = 0;
@@ -65,24 +65,24 @@ public function cacheWithRoutes(): void
6565
if (count($route->parameterNames()) !== 0) {
6666
$name = $route->getName() ?? $route->uri();
6767

68-
$this->components->warn('Skipping route: ' . $name . ', cannot cache routes with parameters');
68+
$this->components->warn('Skipping route: '.$name.', cannot cache routes with parameters');
6969

7070
continue;
7171
}
7272

7373
if (! $response->isOk()) {
74-
$this->components->error('Failed to cache route ' . $route->uri());
74+
$this->components->error('Failed to cache route '.$route->uri());
7575

7676
$failed++;
7777

7878
continue;
7979
}
8080

81-
$this->components->info('Route ' . $route->uri() . ' has been cached');
81+
$this->components->info('Route '.$route->uri().' has been cached');
8282
}
8383

8484
if ($failed > 0) {
85-
$this->components->warn('Failed to cache ' . $failed . ' routes');
85+
$this->components->warn('Failed to cache '.$failed.' routes');
8686
}
8787
}
8888

src/Crawler/StaticCrawlObserver.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ public function willCrawl(UriInterface $url, ?string $linkText): void
3131
public function crawled(
3232
UriInterface $url,
3333
ResponseInterface $response,
34-
UriInterface $foundOnUrl = null,
34+
?UriInterface $foundOnUrl = null,
3535
?string $linkText = null
3636
): void {
37-
$this->components->info('Crawled and cached url: ' . $url);
37+
$this->components->info('Crawled and cached url: '.$url);
3838
}
3939

4040
/**
@@ -43,10 +43,10 @@ public function crawled(
4343
public function crawlFailed(
4444
UriInterface $url,
4545
RequestException $requestException,
46-
UriInterface $foundOnUrl = null,
46+
?UriInterface $foundOnUrl = null,
4747
?string $linkText = null
4848
): void {
49-
$this->components->error('Failed to crawl url: ' . $url);
49+
$this->components->error('Failed to crawl url: '.$url);
5050
}
5151

5252
/**

src/LaravelStatic.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public function __construct(Repository $config, Filesystem $files)
1919
$this->files = $files;
2020
}
2121

22-
public function clear(array $paths = null): bool
22+
public function clear(?array $paths = null): bool
2323
{
2424
$disk = $this->disk();
2525

@@ -37,7 +37,7 @@ public function forget(string $path): bool
3737
return $this->files->delete($path);
3838
}
3939

40-
public function disk(string $override = null): FilesystemContract
40+
public function disk(?string $override = null): FilesystemContract
4141
{
4242
$disk = $override ?? $this->config->get(
4343
'static.files.disk',

src/Middleware/StaticResponse.php

+22-40
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public function minifyResponse($response)
9494
}
9595

9696
$response->setContent(
97-
(new HtmlMin())
97+
(new HtmlMin)
9898
->minify($response->getContent())
9999
);
100100

@@ -106,29 +106,26 @@ public function minifyResponse($response)
106106
*/
107107
public function createStaticFile(Request $request, $response): void
108108
{
109-
[$path, $file] = $this->generateFilepath($request, $response);
109+
$filePath = $this->generateFilepath($request, $response);
110110

111-
$filepath = $this->joinPaths([
111+
$filePath = $this->joinPaths([
112112
$request->getHost(),
113113
$request->method(),
114-
$path,
115-
$file,
114+
$filePath,
116115
]);
117116

118-
if ($this->exceedsMaxLength($filepath)) {
117+
if ($this->exceedsMaxLength($filePath)) {
119118
return;
120119
}
121120

122121
$disk = LaravelStatic::disk();
123122

124-
$disk->makeDirectory($path);
125-
126-
if (! $disk->exists($this->config->get('static.path') . '/.gitignore')) {
127-
$disk->put($this->config->get('static.path') . '/.gitignore', '*' . PHP_EOL . '!.gitignore');
123+
if (! $disk->exists('.gitignore')) {
124+
$disk->put('.gitignore', '*' . PHP_EOL . '!.gitignore');
128125
}
129126

130127
if ($response->getContent()) {
131-
$disk->put($filepath, $response->getContent(), true);
128+
$disk->put($filePath, $response->getContent(), true);
132129
}
133130
}
134131

@@ -141,15 +138,7 @@ public function getUri(Request $request): string
141138
}
142139

143140
/**
144-
* Get URI in parts.
145-
*/
146-
public function getUriParts(Request $request): array
147-
{
148-
return array_filter(explode('/', $this->getUri($request)));
149-
}
150-
151-
/**
152-
* Get URI in parts.
141+
* Get domain from request.
153142
*/
154143
public function getDomain(Request $request): ?string
155144
{
@@ -161,16 +150,20 @@ public function getDomain(Request $request): ?string
161150
*/
162151
public function basePath(Request $request): string
163152
{
164-
$path = $this->config->get('static.path');
165-
$path = rtrim($path, '/');
153+
$path = $this->getDiskPath();
166154

167-
if ($this->config->get('static.include_domain')) {
155+
if ($this->config->get('static.files.include_domain')) {
168156
$path .= '/' . $this->getDomain($request);
169157
}
170158

171159
return $path;
172160
}
173161

162+
public function getDiskPath()
163+
{
164+
return rtrim($this->config->get('filesystems.disks.' . $this->config->get('static.files.disk') . '.root'), '/');
165+
}
166+
174167
/**
175168
* Get file extension based on response content type.
176169
*/
@@ -204,33 +197,22 @@ protected function getFileExtension($filename, $response): ?string
204197
/**
205198
* Generate static file path based on request following a matching pattern configured in Nginx
206199
*/
207-
public function generateFilepath(Request $request, $response): array
200+
public function generateFilepath(Request $request, $response): string
208201
{
209-
$parts = $this->getUriParts($request);
210-
211-
$filename = '';
212-
213-
if (! str_ends_with($request->getPathInfo(), '/')) {
214-
$filename = array_pop($parts);
215-
}
216-
217-
$path = $this->joinPaths([
218-
$this->basePath($request),
219-
$parts,
220-
]);
202+
$filePath = $request->getPathInfo();
221203

222-
$filename .= '?';
204+
$filePath .= '?';
223205

224206
if (
225207
$this->config->get('static.files.include_query_string') &&
226208
! blank($request->server('QUERY_STRING'))
227209
) {
228-
$filename .= $request->server('QUERY_STRING');
210+
$filePath .= $request->server('QUERY_STRING');
229211
}
230212

231-
$filename .= $this->getFileExtension($filename, $response);
213+
$filePath .= $this->getFileExtension($filePath, $response);
232214

233-
return [$path, $filename];
215+
return $filePath;
234216
}
235217

236218
/**

tests/Feature/StaticCacheTest.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
$disk = LaravelStatic::disk();
1414

15-
Route::get($route, fn() => $route)
15+
Route::get($route, fn () => $route)
1616
->middleware(StaticResponse::class);
1717

1818
$this->get($route);
@@ -41,9 +41,9 @@
4141
<h2>Hello</h2>
4242
HTML;
4343

44-
$minified = (new HtmlMin())->minify($html);
44+
$minified = (new HtmlMin)->minify($html);
4545

46-
Route::get('/', fn() => $html)
46+
Route::get('/', fn () => $html)
4747
->middleware(StaticResponse::class);
4848

4949
$this->get('/');

0 commit comments

Comments
 (0)