-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFilesystem_Adapter.php
More file actions
703 lines (607 loc) · 18.3 KB
/
Copy pathFilesystem_Adapter.php
File metadata and controls
703 lines (607 loc) · 18.3 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
<?php
/**
* Filesystem_Adapter class file.
*
* phpcs:disable Squiz.Commenting.FunctionComment.MissingParamTag
*
* @package Mantle
*/
namespace Mantle\Filesystem;
use DateTimeInterface;
use InvalidArgumentException;
use League\Flysystem\FilesystemAdapter;
use League\Flysystem\FilesystemOperator;
use League\Flysystem\PathPrefixer;
use League\Flysystem\StorageAttributes;
use League\Flysystem\UnableToCopyFile;
use League\Flysystem\UnableToCreateDirectory;
use League\Flysystem\UnableToDeleteDirectory;
use League\Flysystem\UnableToDeleteFile;
use League\Flysystem\UnableToMoveFile;
use League\Flysystem\UnableToReadFile;
use League\Flysystem\UnableToSetVisibility;
use League\Flysystem\UnableToWriteFile;
use League\Flysystem\Visibility;
use Mantle\Contracts\Filesystem\Filesystem;
use Mantle\Http\Uploaded_File;
use Mantle\Support\Arr;
use Mantle\Support\Str;
use PHPUnit\Framework\Assert as PHPUnit;
use Psr\Http\Message\StreamInterface;
use Psr\Http\Message\UriInterface;
use RuntimeException;
use Symfony\Component\HttpFoundation\StreamedResponse;
use function Mantle\Support\Helpers\throw_if;
/**
* Filesystem to Flysystem Adapter
*
* @mixin \League\Flysystem\FilesystemOperator
*/
class Filesystem_Adapter implements Filesystem {
/**
* Path prefixer.
*/
protected PathPrefixer $prefixer;
/**
* Constructor.
*
* @param FilesystemOperator $driver Filesystem instance.
* @param FilesystemAdapter $adapter Filesystem adapter.
* @param array<mixed> $config Filesystem configuration.
*/
public function __construct(
protected FilesystemOperator $driver,
protected FilesystemAdapter $adapter,
protected array $config = [],
) {
$separator = $config['directory_separator'] ?? DIRECTORY_SEPARATOR;
$this->prefixer = new PathPrefixer( $this->config['root'] ?? '', $separator );
if ( isset( $config['prefix'] ) ) {
$this->prefixer = new PathPrefixer( $this->prefixer->prefixPath( $config['prefix'] ), $separator );
}
}
/**
* Assert that the given file exists.
*
* @param string[]|string $path File path.
*/
public function assertExists( $path ): static {
$paths = Arr::wrap( $path );
foreach ( $paths as $path ) {
PHPUnit::assertTrue(
$this->exists( $path ),
"Unable to find a file at path [{$path}]."
);
}
return $this;
}
/**
* Assert that the given file does not exist.
*
* @param string[]|string $path File path.
*/
public function assertMissing( $path ): static {
$paths = Arr::wrap( $path );
foreach ( $paths as $path ) {
PHPUnit::assertFalse(
$this->exists( $path ),
"Found unexpected file at path [{$path}]."
);
}
return $this;
}
/**
* Get all (recursive) of the directories within a given directory.
*
* @param string $directory Directory name.
* @return string[]
*/
public function all_directories( ?string $directory = null ): array {
return $this->directories( $directory, true );
}
/**
* Get all the directories within a given directory.
*
* @param string $directory Directory name.
* @param bool $recursive Flag if it should be recursive.
* @return array<string>
*/
public function directories( ?string $directory = null, bool $recursive = false ): array {
return $this->driver->listContents( $directory ?? '', $recursive )
->filter(
fn ( StorageAttributes $attributes ) => $attributes->isDir()
)
->map(
fn ( StorageAttributes $attributes ) => $attributes->path()
)
->toArray();
}
/**
* Create a directory.
*
* @param string $path Path to create.
*/
public function make_directory( string $path ): bool {
try {
$this->driver->createDirectory( $path );
} catch ( UnableToCreateDirectory $e ) {
throw_if( $this->throws_exceptions(), $e );
return false;
}
return true;
}
/**
* Recursively delete a directory.
*
* @param string $directory Directory name.
*/
public function delete_directory( string $directory ): bool {
try {
$this->driver->deleteDirectory( $directory );
} catch ( UnableToDeleteDirectory $e ) {
throw_if( $this->throws_exceptions(), $e );
return false;
}
return true;
}
/**
* Get all of the files from the given directory (recursive).
*
* @param string $directory Directory name.
* @return string[]
*/
public function all_files( ?string $directory = null ): array {
return $this->files( $directory, true );
}
/**
* Get an array of all files in a directory.
*
* @param string $directory Directory name.
* @param bool $recursive Flag if recursive.
* @return string[]
*/
public function files( ?string $directory = null, bool $recursive = false ): array {
return $this->driver->listContents( $directory ?? '', $recursive )
->filter(
fn ( StorageAttributes $attributes ) => $attributes->isFile()
)
->sortByPath()
->map(
fn ( StorageAttributes $attributes ) => $attributes->path()
)
->toArray();
}
/**
* Copy a file from one location to another.
*
* @param string $from From location.
* @param string $to To location.
*/
public function copy( string $from, string $to ): bool {
try {
$this->driver->copy( $from, $to );
} catch ( UnableToCopyFile $e ) {
throw_if( $this->throws_exceptions(), $e );
return false;
}
return true;
}
/**
* Move a file from a location to another.
*
* @param string $from From location.
* @param string $to To location.
*/
public function move( string $from, string $to ): bool {
try {
$this->driver->move( $from, $to );
} catch ( UnableToMoveFile $e ) {
throw_if( $this->throws_exceptions(), $e );
return false;
}
return true;
}
/**
* Delete a file at the given paths.
*
* @param string|string[] $paths File paths.
*/
public function delete( $paths ): bool {
$paths = is_array( $paths ) ? $paths : func_get_args();
$success = true;
foreach ( $paths as $path ) {
try {
$this->driver->delete( $path );
} catch ( UnableToDeleteFile $e ) {
throw_if( $this->throws_exceptions(), $e );
$success = false;
}
}
return $success;
}
/**
* Check if a file exists at a current path.
*
* @param string $path
*/
public function exists( string $path ): bool {
return $this->driver->has( $path );
}
/**
* Check if a file is missing at a given path.
*
* @param string $path File path.
*/
public function missing( string $path ): bool {
return ! $this->exists( $path );
}
/**
* Get the full path for the file at the given "short" path.
*
* @param string $path File path.
*/
public function path( string $path ): string {
return $this->prefixer->prefixPath( $path );
}
/**
* Get the contents of a file.
*
* @param string $path File path.
*/
public function get( string $path ): ?string {
try {
return $this->driver->read( $path );
} catch ( UnableToReadFile $e ) {
throw_if( $this->throws_exceptions(), $e );
}
return null;
}
/**
* Create a streamed response for a given file.
*
* @param string $path File path.
* @param string|null $name File name.
* @param array<mixed> $headers Headers to include.
* @param string $disposition File disposition.
*/
public function response( string $path, ?string $name = null, array $headers = [], string $disposition = 'inline' ): StreamedResponse {
$response = new StreamedResponse();
if ( ! array_key_exists( 'Content-Type', $headers ) ) {
$headers['Content-Type'] = $this->mimeType( $path );
}
if ( ! array_key_exists( 'Content-Length', $headers ) ) {
$headers['Content-Length'] = $this->size( $path );
}
if ( ! array_key_exists( 'Content-Disposition', $headers ) ) {
$filename = $name ?? basename( $path );
$disposition = $response->headers->makeDisposition(
$disposition,
$filename,
$this->fallback_name( $filename )
);
$headers['Content-Disposition'] = $disposition;
}
$response->headers->replace( $headers );
$response->setCallback(
function () use ( $path ): void {
$stream = $this->readStream( $path );
fpassthru( $stream );
fclose( $stream );
}
);
return $response;
}
/**
* Create a streamed download response for a given file.
*
* @param string $path File path.
* @param string|null $name File name.
* @param array<string, string> $headers HTTP headers.
*/
public function download( string $path, ?string $name = null, array $headers = [] ): StreamedResponse {
return $this->response( $path, $name, $headers, 'attachment' );
}
/**
* Convert the string to ASCII characters that are equivalent to the given name.
*
* @param string $name Fallback name.
*/
protected function fallback_name( string $name ): string {
return str_replace( '%', '', Str::ascii( $name ) );
}
/**
* Get the file's last modification time.
*
* @param string $path File path.
*/
public function last_modified( string $path ): int {
return $this->driver->lastModified( $path );
}
/**
* Get the mime-type of a given file.
*
* @param string $path File path.
*/
public function mime_type( string $path ): string {
return $this->driver->mimeType( $path );
}
/**
* Write the contents of a file.
*
* @param string $path File path.
* @param string|File|Uploaded_File|StreamInterface|resource $contents File contents.
* @param array<mixed>|string $options Options for the files or a string visibility.
*/
public function put( string $path, $contents, $options = [] ): bool {
$options = is_string( $options )
? [ 'visibility' => $options ]
: (array) $options;
if (
$contents instanceof File
|| $contents instanceof Uploaded_File
) {
return (bool) $this->put_file( $path, $contents, $options );
}
if ( $contents instanceof StreamInterface ) {
$this->driver->writeStream( $path, $contents->detach(), $options );
return true;
}
is_resource( $contents )
? $this->driver->writeStream( $path, $contents, $options )
: $this->driver->write( $path, (string) $contents, $options );
return true;
}
/**
* Store the uploaded file on the disk.
*
* @param string $path File path.
* @param File|\Mantle\Http\Uploaded_File|string $file File object.
* @param mixed $options Options.
* @return string|false
*/
public function put_file( string $path, $file, $options = [] ): string|bool {
$file = is_string( $file ) ? new File( $file ) : $file;
return $this->put_file_as( $path, $file, $file->hash_name(), $options );
}
/**
* Store the uploaded file on the disk with a given name.
*
* @param string $path File path.
* @param File|\Mantle\Http\Uploaded_File|string $file File object.
* @param string $name File name.
* @param mixed $options Options.
* @return string|false
*/
public function put_file_as( string $path, $file, string $name, $options = [] ): string|bool {
$stream = fopen( is_string( $file ) ? $file : $file->getRealPath(), 'r' ); // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_fopen
$path = trim( $path . '/' . $name, '/' );
if ( ! $stream ) {
return false;
}
// Next, we will format the path of the file and store the file using a stream since
// they provide better performance than alternatives. Once we write the file this
// stream will get closed automatically by us so the developer doesn't have to.
$result = $this->put(
$path,
$stream,
$options
);
if ( is_resource( $stream ) ) {
fclose( $stream ); // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_read_fclose
}
return $result ? $path : false;
}
/**
* Retrieve the size of the file.
*
* @param string $path File path.
*/
public function size( string $path ): int {
return $this->driver->fileSize( $path );
}
/**
* {@inheritdoc}
*/
public function readStream( string $path ): mixed {
try {
return $this->driver->readStream( $path );
} catch ( UnableToReadFile $e ) {
throw_if( $this->throws_exceptions(), $e );
return false;
}
}
/**
* Read a file through a stream.
*
* @param string $path File path.
* @return resource|false The path resource or false on failure.
*/
public function read_stream( string $path ): mixed {
return $this->readStream( $path );
}
/**
* {@inheritdoc}
*/
public function writeStream( string $path, $resource, $options = [] ): bool {
$options = is_string( $options )
? [ 'visibility' => $options ]
: (array) $options;
try {
$this->driver->writeStream( $path, $resource, $options );
} catch ( UnableToWriteFile | UnableToSetVisibility $e ) {
throw_if( $this->throws_exceptions(), $e );
return false;
}
return true;
}
/**
* Write a file through a stream.
*
* @param string $path File path.
* @param resource $resource File resource.
* @param array|string $options File options or string visibility.
*/
public function write_stream( string $path, $resource, $options = [] ): bool {
return $this->writeStream( $path, $resource, $options );
}
/**
* Retrieve a file's visibility.
*
* @param string $path
*/
public function get_visibility( string $path ): string {
return $this->driver->visibility( $path ) === Visibility::PUBLIC
? Filesystem::VISIBILITY_PUBLIC
: Filesystem::VISIBILITY_PRIVATE;
}
/**
* Set the visibility for a file.
*
* @param string $path Path to set.
* @param string $visibility Visibility to set.
*/
public function setVisibility( string $path, string $visibility ): bool {
try {
$this->driver->setVisibility( $path, $this->parse_visibility( $visibility ) );
} catch ( UnableToSetVisibility $e ) {
throw_if( $this->throws_exceptions(), $e );
return false;
}
return true;
}
/**
* Set the visibility for a file (alias).
*
* @param string $path Path to set.
* @param string $visibility Visibility to set.
*/
public function set_visibility( string $path, string $visibility ): bool {
return $this->setVisibility( $path, $visibility );
}
/**
* Prepend to a file.
*
* @param string $path File to prepend.
* @param string $data Data to prepend.
* @param string $separator Separator from existing data.
*/
public function prepend( string $path, string $data, string $separator = PHP_EOL ): bool {
if ( $this->exists( $path ) ) {
return $this->put( $path, $data . $separator . $this->get( $path ) );
}
return $this->put( $path, $data );
}
/**
* Append to a file.
*
* @param string $path File to append.
* @param string $data Data to append.
* @param string $separator Separator from existing data.
*/
public function append( $path, $data, $separator = PHP_EOL ): bool {
if ( $this->exists( $path ) ) {
return $this->put( $path, $this->get( $path ) . $separator . $data );
}
return $this->put( $path, $data );
}
/**
* Get the URL for the file at the given path.
*
* @param string $path Path to the file.
*
* @throws RuntimeException Thrown on invalid filesystem adapter.
*/
public function url( string $path ): ?string {
if ( isset( $this->config['prefix'] ) ) {
$path = $this->concat_path_to_url( $this->config['prefix'], $path );
}
$adapter = $this->adapter;
return match ( true ) {
method_exists( $adapter, 'getUrl' ) => $adapter->getUrl( $path ),
method_exists( $adapter, 'get_url' ) => $adapter->get_url( $path ),
method_exists( $this->driver, 'getUrl' ) => $this->driver->getUrl( $path ),
method_exists( $this->driver, 'get_url' ) => $this->driver->get_url( $path ),
default => throw new RuntimeException( 'This driver does not support retrieving URLs.' ),
};
}
/**
* Determine if temporary URLs can be generated.
*/
public function provides_temporary_urls(): bool {
return method_exists( $this->adapter, 'getTemporaryUrl' ) || method_exists( $this->adapter, 'get_temporary_url' );
}
/**
* Get a temporary URL for the file at the given path.
*
* @param string $path File path.
* @param \DateTimeInterface $expiration File expiration.
* @param array $options Options for the URL.
*
* @throws RuntimeException Thrown on missing temporary URL.
*/
public function temporary_url( string $path, DateTimeInterface $expiration, array $options = [] ): string {
return match ( true ) {
method_exists( $this->adapter, 'getTemporaryUrl' ) => $this->adapter->getTemporaryUrl( $path, $expiration, $options ),
method_exists( $this->adapter, 'get_temporary_url' ) => $this->adapter->get_temporary_url( $path, $expiration, $options ),
default => throw new RuntimeException( 'This driver does not support creating temporary URLs.' ),
};
}
/**
* Concatenate a path to a URL.
*
* @param string $url
* @param string $path
*/
protected function concat_path_to_url( string $url, string $path ): string {
return rtrim( $url, '/' ) . '/' . ltrim( $path, '/' );
}
/**
* Replace the scheme, host and port of the given UriInterface with values from the given URL.
*
* @param \Psr\Http\Message\UriInterface $uri
* @param string $url
*/
protected function replace_base_url( UriInterface $uri, string $url ): UriInterface {
$parsed = wp_parse_url( $url );
if ( isset( $parsed['scheme'] ) ) {
$uri = $uri->withScheme( $parsed['scheme'] );
}
if ( isset( $parsed['host'] ) ) {
$uri = $uri->withHost( $parsed['host'] );
}
if ( isset( $parsed['port'] ) ) {
return $uri->withPort( $parsed['port'] );
}
return $uri;
}
/**
* Parse the given visibility value.
*
* @param string $visibility Visibility to set.
*
* @throws InvalidArgumentException Thrown on invalid visibility.
*/
protected function parse_visibility( string $visibility ): string {
return match ( $visibility ) {
Filesystem::VISIBILITY_PUBLIC => Visibility::PUBLIC,
Filesystem::VISIBILITY_PRIVATE => Visibility::PRIVATE,
default => throw new InvalidArgumentException( "Unknown visibility: {$visibility}." ),
};
}
/**
* Determine if Flysystem exceptions should be thrown.
*/
protected function throws_exceptions(): bool {
return (bool) ( $this->config['throw'] ?? false );
}
/**
* Pass dynamic methods call onto Flysystem instance.
*
* @param string $method Method to call.
* @param array $parameters Parameters for the driver.
* @return mixed
*/
public function __call( string $method, array $parameters ) {
return $this->driver->{$method}( ...$parameters );
}
}