@@ -94,7 +94,7 @@ public function minifyResponse($response)
94
94
}
95
95
96
96
$ response ->setContent (
97
- (new HtmlMin () )
97
+ (new HtmlMin )
98
98
->minify ($ response ->getContent ())
99
99
);
100
100
@@ -106,29 +106,26 @@ public function minifyResponse($response)
106
106
*/
107
107
public function createStaticFile (Request $ request , $ response ): void
108
108
{
109
- [ $ path , $ file ] = $ this ->generateFilepath ($ request , $ response );
109
+ $ filePath = $ this ->generateFilepath ($ request , $ response );
110
110
111
- $ filepath = $ this ->joinPaths ([
111
+ $ filePath = $ this ->joinPaths ([
112
112
$ request ->getHost (),
113
113
$ request ->method (),
114
- $ path ,
115
- $ file ,
114
+ $ filePath ,
116
115
]);
117
116
118
- if ($ this ->exceedsMaxLength ($ filepath )) {
117
+ if ($ this ->exceedsMaxLength ($ filePath )) {
119
118
return ;
120
119
}
121
120
122
121
$ disk = LaravelStatic::disk ();
123
122
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 ' );
128
125
}
129
126
130
127
if ($ response ->getContent ()) {
131
- $ disk ->put ($ filepath , $ response ->getContent (), true );
128
+ $ disk ->put ($ filePath , $ response ->getContent (), true );
132
129
}
133
130
}
134
131
@@ -141,15 +138,7 @@ public function getUri(Request $request): string
141
138
}
142
139
143
140
/**
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.
153
142
*/
154
143
public function getDomain (Request $ request ): ?string
155
144
{
@@ -161,16 +150,20 @@ public function getDomain(Request $request): ?string
161
150
*/
162
151
public function basePath (Request $ request ): string
163
152
{
164
- $ path = $ this ->config ->get ('static.path ' );
165
- $ path = rtrim ($ path , '/ ' );
153
+ $ path = $ this ->getDiskPath ();
166
154
167
- if ($ this ->config ->get ('static.include_domain ' )) {
155
+ if ($ this ->config ->get ('static.files. include_domain ' )) {
168
156
$ path .= '/ ' . $ this ->getDomain ($ request );
169
157
}
170
158
171
159
return $ path ;
172
160
}
173
161
162
+ public function getDiskPath ()
163
+ {
164
+ return rtrim ($ this ->config ->get ('filesystems.disks. ' . $ this ->config ->get ('static.files.disk ' ) . '.root ' ), '/ ' );
165
+ }
166
+
174
167
/**
175
168
* Get file extension based on response content type.
176
169
*/
@@ -204,33 +197,22 @@ protected function getFileExtension($filename, $response): ?string
204
197
/**
205
198
* Generate static file path based on request following a matching pattern configured in Nginx
206
199
*/
207
- public function generateFilepath (Request $ request , $ response ): array
200
+ public function generateFilepath (Request $ request , $ response ): string
208
201
{
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 ();
221
203
222
- $ filename .= '? ' ;
204
+ $ filePath .= '? ' ;
223
205
224
206
if (
225
207
$ this ->config ->get ('static.files.include_query_string ' ) &&
226
208
! blank ($ request ->server ('QUERY_STRING ' ))
227
209
) {
228
- $ filename .= $ request ->server ('QUERY_STRING ' );
210
+ $ filePath .= $ request ->server ('QUERY_STRING ' );
229
211
}
230
212
231
- $ filename .= $ this ->getFileExtension ($ filename , $ response );
213
+ $ filePath .= $ this ->getFileExtension ($ filePath , $ response );
232
214
233
- return [ $ path , $ filename ] ;
215
+ return $ filePath ;
234
216
}
235
217
236
218
/**
0 commit comments