Skip to content

Commit ffc3948

Browse files
committedNov 13, 2024·
wip
1 parent bca488e commit ffc3948

File tree

6 files changed

+22
-21
lines changed

6 files changed

+22
-21
lines changed
 

‎config/static.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
'filename_max_length' => 255,
8080
],
8181

82-
'optimizations' => [
82+
'optimize' => [
8383
/**
8484
* Define if you want to save the static cache after response has been sent to browser.
8585
*/

‎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

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function crawled(
3434
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
/**
@@ -46,7 +46,7 @@ public function crawlFailed(
4646
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/LaravelStaticServiceProvider.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ public function packageBooted()
2626
{
2727
$kernel = $this->app->make(Kernel::class);
2828

29-
$kernel->prependMiddlewareToGroup('web',
29+
$kernel->prependMiddlewareToGroup(
30+
'web',
3031
PreventStaticResponseMiddleware::class
3132
);
3233
}

‎src/Middleware/StaticResponse.php

+8-8
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function handle(Request $request, Closure $next): mixed
3030
$response = $next($request);
3131

3232
if (
33-
! $this->config->get('static.optimizations.on_termination') &&
33+
! $this->config->get('static.options.on_termination') &&
3434
$this->shouldBeStatic($request, $response)
3535
) {
3636
$response = $this->minifyResponse($response);
@@ -47,7 +47,7 @@ public function handle(Request $request, Closure $next): mixed
4747
public function terminate(Request $request, $response): void
4848
{
4949
if (
50-
$this->config->get('static.optimizations.on_termination') &&
50+
$this->config->get('static.options.on_termination') &&
5151
$this->shouldBeStatic($request, $response)
5252
) {
5353
$response = $this->minifyResponse($response);
@@ -85,7 +85,7 @@ public function joinPaths(array $paths): string
8585
*/
8686
public function minifyResponse($response)
8787
{
88-
if (! $this->config->get('static.minify_html')) {
88+
if (! $this->config->get('static.options.minify_html')) {
8989
return $response;
9090
}
9191

@@ -123,8 +123,8 @@ public function createStaticFile(Request $request, $response): void
123123

124124
$disk->makeDirectory($path);
125125

126-
if (! $disk->exists($this->config->get('static.path').'/.gitignore')) {
127-
$disk->put($this->config->get('static.path').'/.gitignore', '*'.PHP_EOL.'!.gitignore');
126+
if (! $disk->exists($this->config->get('static.path') . '/.gitignore')) {
127+
$disk->put($this->config->get('static.path') . '/.gitignore', '*' . PHP_EOL . '!.gitignore');
128128
}
129129

130130
if ($response->getContent()) {
@@ -165,7 +165,7 @@ public function basePath(Request $request): string
165165
$path = rtrim($path, '/');
166166

167167
if ($this->config->get('static.include_domain')) {
168-
$path .= '/'.$this->getDomain($request);
168+
$path .= '/' . $this->getDomain($request);
169169
}
170170

171171
return $path;
@@ -198,7 +198,7 @@ protected function getFileExtension($filename, $response): ?string
198198
return null;
199199
}
200200

201-
return '.'.$extension;
201+
return '.' . $extension;
202202
}
203203

204204
/**
@@ -222,7 +222,7 @@ public function generateFilepath(Request $request, $response): array
222222
$filename .= '?';
223223

224224
if (
225-
$this->config->get('static.include_query_string') &&
225+
$this->config->get('static.files.include_query_string') &&
226226
! blank($request->server('QUERY_STRING'))
227227
) {
228228
$filename .= $request->server('QUERY_STRING');

‎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);
@@ -31,7 +31,7 @@
3131
it('minifies HTML', function () {
3232
config([
3333
'static.files.disk' => 'local',
34-
'static.minify_html' => true,
34+
'static.options.minify_html' => true,
3535
]);
3636

3737
$disk = LaravelStatic::disk();
@@ -43,7 +43,7 @@
4343

4444
$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)
Please sign in to comment.