-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFilesystem.php
More file actions
617 lines (544 loc) · 15.2 KB
/
Copy pathFilesystem.php
File metadata and controls
617 lines (544 loc) · 15.2 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
<?php
declare(strict_types=1);
/*
* This file is part of the univeros/framework
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace Altair\Filesystem;
use Altair\Filesystem\Exception\FileNotFoundException;
use Altair\Filesystem\Exception\InvalidArgumentException;
use DirectoryIterator;
use ErrorException;
use FilesystemIterator;
use RecursiveDirectoryIterator;
use RecursiveIteratorIterator;
use SplFileInfo;
/**
* Thanks Laravel
*/
class Filesystem
{
/**
* Get the contents of a file.
*
*
* @throws FileNotFoundException
*
*
*/
public function get(string $path, bool $lock = false): string
{
if (!$this->isFile($path)) {
throw new FileNotFoundException('File does not exist at path ' . $path);
}
if ($lock) {
return $this->getShared($path);
}
$contents = file_get_contents($path);
if ($contents === false) {
throw new FileNotFoundException('Unable to read file at path ' . $path);
}
return $contents;
}
/**
* Get contents of a file with shared access.
*
*
*/
public function getShared(string $path): string
{
$contents = '';
$handle = fopen($path, 'rb');
if ($handle) {
try {
if (flock($handle, LOCK_SH)) {
clearstatcache(true, $path);
$size = $this->getFileSize($path);
$length = $size === false ? 1 : max(1, $size);
$read = fread($handle, $length);
if ($read !== false) {
$contents = $read;
}
flock($handle, LOCK_UN);
}
} finally {
fclose($handle);
}
}
return $contents;
}
/**
* Read the contents of a file as an array of lines.
*
* @return list<string>
*/
public function readLines(string $path): array
{
// auto_detect_line_endings was deprecated in PHP 8.1; PHP now handles CRLF/CR
// line endings natively for file()/fgets() without configuration.
$lines = file($path, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
return $lines === false ? [] : $lines;
}
/**
* Get the returned value of a file.
*
*
* @throws FileNotFoundException
*
* @return mixed
*
*/
public function getRequiredFileValue(string $path)
{
if ($this->isFile($path)) {
return require $path;
}
throw new FileNotFoundException('File does not exist at path ' . $path);
}
/**
* Require the given file once.
*
*
*/
public function requireOnce(string $file): void
{
require_once $file;
}
/**
* Gets or sets UNIX mode of a file or directory.
*
* @param string $path
* @param int $mode
*/
public function chmod($path, $mode = null): bool|string
{
if ($mode) {
return chmod($path, $mode);
}
return substr(\sprintf('%o', fileperms($path)), -4);
}
/**
* Determine if a file or directory exists.
*
*
*/
public function exists(string $path): bool
{
return file_exists($path);
}
/**
* Move a file to a new location.
*
* @param string $path
* @param string $target
*/
public function move($path, $target): bool
{
return rename($path, $target);
}
/**
* Write the contents of a file.
*
*
* @return int|false
*/
public function put(string $path, string $contents, bool $lock = false): int|false
{
return file_put_contents($path, $contents, $lock ? LOCK_EX : 0);
}
/**
* Prepend to a file.
*
* @throws FileNotFoundException
* @return false|int
*/
public function prepend(string $path, string $data): int|false
{
if ($this->exists($path)) {
return $this->put($path, $data . $this->get($path));
}
return $this->put($path, $data);
}
/**
* Append to a file.
*
*
*/
public function append(string $path, string $data): int|false
{
return file_put_contents($path, $data, FILE_APPEND);
}
/**
* Delete the file at a given path.
*
* @param string|list<string> $paths
*/
public function delete($paths): bool
{
$paths = \is_array($paths) ? $paths : \func_get_args();
$success = true;
foreach ($paths as $path) {
try {
if (!@unlink($path)) {
$success = false;
}
} catch (ErrorException) {
$success = false;
}
}
return $success;
}
/**
* Copy a file to a new location.
*
* @param string $path
* @param string $target
*/
public function copy($path, $target): bool
{
return copy($path, $target);
}
/**
* Create a hard link to the target file or directory.
*
* @param string $target
* @param string $link
*/
public function link($target, $link): bool
{
if (stripos(PHP_OS, 'win') !== 0) {
return symlink($target, $link);
}
$mode = $this->isDirectory($target) ? 'J' : 'H';
exec(\sprintf('mklink /%s "%s" "%s"', $mode, $link, $target));
return true;
}
/**
* Create a directory.
*
*
*/
public function makeDirectory(string $path, int $mode = 0o755, bool $recursive = false, bool $force = false): bool
{
if (file_exists($path) && is_dir($path)) {
return true;
}
if ($force) {
return @mkdir($path, $mode, $recursive);
}
return mkdir($path, $mode, $recursive);
}
/**
* Move a directory.
*
* @param string $from
* @param string $to
* @param bool $overwrite
*/
public function moveDirectory($from, $to, $overwrite = false): bool
{
if ($overwrite && $this->isDirectory($to) && !$this->deleteDirectory($to)) {
return false;
}
return @rename($from, $to);
}
/**
* Copy a directory from one location to another.
*
* @param string $directory
* @param int $options
*
*/
public function copyDirectory($directory, string $destination, $options = null): bool
{
if (!$this->isDirectory($directory)) {
return false;
}
$options = $options ?: FilesystemIterator::SKIP_DOTS;
// If the destination directory does not actually exist, we will go ahead and
// create it recursively, which just gets the destination prepared to copy
// the files over. Once we make the directory we'll proceed the copying.
if (!$this->isDirectory($destination)) {
$this->makeDirectory($destination, 0o777, true);
}
$items = new FilesystemIterator($directory, $options);
foreach ($items as $item) {
if (!$item instanceof SplFileInfo) {
continue;
}
// As we spin through items, we will check to see if the current file is actually
// a directory or a file. When it is actually a directory we will need to call
// back into this function recursively to keep copying these nested folders.
$target = $destination . '/' . $item->getBasename();
if ($item->isDir()) {
$path = $item->getPathname();
if (!$this->copyDirectory($path, $target, $options)) {
return false;
}
} elseif (!$this->copy($item->getPathname(), $target)) {
return false;
}
}
return true;
}
/**
* Recursively delete a directory.
*
* The directory itself may be optionally preserved.
*
* @param string $directory
* @param bool $preserve
*/
public function deleteDirectory($directory, $preserve = false): bool
{
if (!$this->isDirectory($directory)) {
return false;
}
$items = new FilesystemIterator($directory);
foreach ($items as $item) {
if (!$item instanceof SplFileInfo) {
continue;
}
// If the item is a directory, we can just recurse into the function and
// delete that sub-directory otherwise we'll just delete the file and
// keep iterating through each file until the directory is cleaned.
if ($item->isDir() && !$item->isLink()) {
$this->deleteDirectory($item->getPathname());
}
// If the item is just a file, we can go ahead and delete it since we're
// just looping through and waxing all of the files in this directory
// and calling directories recursively, so we delete the real path.
else {
$this->delete($item->getPathname());
}
}
if (!$preserve) {
@rmdir($directory);
}
return true;
}
/**
* Clears the directory by deleting its contents recursively.
*
*
* @throws InvalidArgumentException
*/
public function clearDirectory(string $path): bool
{
if (!$this->isDirectory($path)) {
throw new InvalidArgumentException(\sprintf('"%s" is not a directory.', $path));
}
return $this->deleteDirectory($path, true);
}
/**
* Extract the file name from a file path.
*
*
*/
public function getFileName(string $path): string
{
return pathinfo($path, PATHINFO_FILENAME);
}
/**
* Get the MD5 hash of the file at the given path.
*/
public function getFileHash(string $path): string
{
$hash = md5_file($path);
if ($hash === false) {
throw new FileNotFoundException('Unable to hash file at path ' . $path);
}
return $hash;
}
/**
* Extract the trailing name component from a file path.
*
*
*/
public function getFileBasename(string $path): string
{
return pathinfo($path, PATHINFO_BASENAME);
}
/**
* Extract the file extension from a file path.
*
*
*/
public function getFileExtension(string $path): string
{
return pathinfo($path, PATHINFO_EXTENSION);
}
/**
* Get the type of a given path. Possible values are fifo, char, dir, block, link, file, socket and unknown.
*
*
*
* @see http://php.net/manual/en/function.filetype.php
*/
public function getType(string $path): string
{
$type = filetype($path);
if ($type === false) {
throw new FileNotFoundException('Unable to determine type of path ' . $path);
}
return $type;
}
/**
* Get the mime-type of a given file.
*
*
* @return string|false
*/
public function getFileMimeType(string $path): string|false
{
$finfo = finfo_open(FILEINFO_MIME_TYPE);
if ($finfo === false) {
return false;
}
return finfo_file($finfo, $path);
}
/**
* Get the file size of a given file.
*
*
* @return int
*/
public function getFileSize(string $path): int|false
{
return filesize($path);
}
/**
* Extract the parent directory from a file path.
*
*
*/
public function getDirectoryName(string $path): string
{
return pathinfo($path, PATHINFO_DIRNAME);
}
/**
* Get the file's last modification time.
*
*
* @return int|false
*/
public function getLastModified(string $path): int|false
{
return filemtime($path);
}
/**
* Determine if the given path is a directory.
*
*
*/
public function isDirectory(string $directory): bool
{
return is_dir($directory);
}
/**
* Determine if the given path is readable.
*
*
*/
public function isReadable(string $path): bool
{
return is_readable($path);
}
/**
* Determine if the given path is writable.
*
*
*/
public function isWritable(string $path): bool
{
return is_writable($path);
}
/**
* Determine if the given path is a file.
*
*
*/
public function isFile(string $file): bool
{
return is_file($file);
}
/**
* Find path names matching a given pattern.
*
* @return list<string>|false
*/
public function glob(string $pattern, int $flags = 0): array|false
{
return glob($pattern, $flags);
}
/**
* Get an array of all files in a directory.
*
* @return array<int, string>
*/
public function listFiles(string $directory): array
{
$glob = glob($directory . '/*');
if ($glob === false) {
return [];
}
// To get the appropriate files, we'll simply glob the directory and filter
// out any "files" that are not truly files so we do not end up with any
// directories in our list, but only true files within the directory.
return array_filter(
$glob,
fn(string $file): bool => filetype($file) === 'file'
);
}
/**
* Get all of the files from the given directory (recursive).
*
* @param string $pattern
* @param boolean $ignoreDotFiles
* @return SplFileInfo[]
*/
public function listAllFiles(string $directory, $pattern = '/^.*\.*$/i', $ignoreDotFiles = true): array
{
if (!$this->isDirectory($directory)) {
throw new InvalidArgumentException('The directory argument must be a directory: ' . $directory);
}
$dirIterator = new RecursiveDirectoryIterator($directory);
$iterator = new RecursiveIteratorIterator($dirIterator, RecursiveIteratorIterator::SELF_FIRST);
$files = [];
foreach ($iterator as $file) {
if ($ignoreDotFiles && $file->getBasename()[0] === '.') {
continue;
}
if ($file->isFile() && preg_match($pattern, (string) $file->getFilename())) {
$files[] = $file;
}
}
return $files;
}
/**
* Get all of the directories within a given directory.
*
* @param string $directory
* @param boolean $ignoreDotDirectories whether to ignore the dotted directories or not.
*
* @return array<string, string>
*/
public function listDirectories($directory, $ignoreDotDirectories = true): array
{
if (!$this->isDirectory($directory)) {
throw new InvalidArgumentException(\sprintf('"%s" is not a directory.', $directory));
}
$directories = [];
foreach (new DirectoryIterator($directory) as $file) {
if ($ignoreDotDirectories && $file->isDot()) {
continue;
}
if ($file->isDir()) {
$directories[$file->getBasename()] = $file->getPathname();
}
}
return $directories;
}
}