-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFilesystem.php
More file actions
655 lines (546 loc) · 17.8 KB
/
Filesystem.php
File metadata and controls
655 lines (546 loc) · 17.8 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
<?php
/**
* This file is part of Blitz PHP framework.
*
* (c) 2022 Dimitri Sitchet Tomkeu <devcode.dst@gmail.com>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace BlitzPHP\Filesystem;
use BlitzPHP\Filesystem\Exceptions\FileNotFoundException;
use BlitzPHP\Traits\Conditionable;
use BlitzPHP\Traits\Macroable;
use BlitzPHP\Utilities\Iterable\LazyCollection;
use ErrorException;
use FilesystemIterator;
use SplFileObject;
use Symfony\Component\Finder\Finder;
/**
* @credit <a href="http://laravel.com/">Laravel - Illuminate\Filesystem\Filesystem</a>
*/
class Filesystem
{
use Conditionable;
use Macroable;
/**
* Déterminez si un fichier ou un répertoire existe.
*/
public function exists(string $path): bool
{
return file_exists($path);
}
/**
* Déterminez si un fichier ou un répertoire est manquant.
*/
public function missing(string $path): bool
{
return ! $this->exists($path);
}
/**
* Obtenir le contenu d'un fichier.
*
* @throws FileNotFoundException
*/
public function get(string $path, bool $lock = false): string
{
if ($this->isFile($path)) {
return $lock ? $this->sharedGet($path) : file_get_contents($path);
}
throw new FileNotFoundException("Le fichier n'existe pas dans le chemin {$path}.");
}
/**
* Obtenir le contenu d'un fichier avec accès partagé.
*/
public function sharedGet(string $path): string
{
$contents = '';
$handle = fopen($path, 'rb');
if ($handle) {
try {
if (flock($handle, LOCK_SH)) {
clearstatcache(true, $path);
$contents = fread($handle, $this->size($path) ?: 1);
flock($handle, LOCK_UN);
}
} finally {
fclose($handle);
}
}
return $contents;
}
/**
* Obtenir la valeur renvoyée d'un fichier.
*
* @throws FileNotFoundException
*/
public function getRequire(string $path, array $data = []): mixed
{
if ($this->isFile($path)) {
$__path = $path;
$__data = $data;
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
/**
* Exiger le fichier donné une fois.
*
* @throws FileNotFoundException
*/
public function requireOnce(string $path, array $data = []): mixed
{
if ($this->isFile($path)) {
$__path = $path;
$__data = $data;
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require_once $__path;
})();
}
throw new FileNotFoundException("Le fichier n'existe pas dans le chemin {$path}.");
}
/**
* Obtenir le contenu d'un fichier une ligne à la fois.
*
* @throws FileNotFoundException
*/
public function lines(string $path): LazyCollection
{
if (! $this->isFile($path)) {
throw new FileNotFoundException("Le fichier n'existe pas dans le chemin {$path}.");
}
return LazyCollection::make(static function () use ($path) {
$file = new SplFileObject($path);
$file->setFlags(SplFileObject::DROP_NEW_LINE);
while (! $file->eof()) {
yield $file->fgets();
}
});
}
/**
* Obtenir le hachage MD5 du fichier au chemin donné.
*/
public function hash(string $path, string $algorithm = 'md5'): string
{
return hash_file($algorithm, $path);
}
/**
* Écrire le contenu d'un fichier.
*
* @return false|int
*/
public function put(string $path, string $contents, bool $lock = false)
{
return file_put_contents($path, $contents, $lock ? LOCK_EX : 0);
}
/**
* Écrire le contenu d'un fichier, en le remplaçant de manière atomique s'il existe déjà.
*/
public function replace(string $path, string $content, ?int $mode = null): void
{
// Si le chemin existe déjà et est un lien symbolique, obtenez le vrai chemin...
clearstatcache(true, $path);
$path = realpath($path) ?: $path;
$tempPath = tempnam(dirname($path), basename($path));
// Corrigez les autorisations de tempPath car `tempnam()` le crée avec des autorisations définies sur 0600 ...
if (null !== $mode) {
chmod($tempPath, $mode);
} else {
chmod($tempPath, 0777 - umask());
}
file_put_contents($tempPath, $content);
rename($tempPath, $path);
}
/**
* Remplace une chaîne donnée dans un fichier donné.
*/
public function replaceInFile(array|string $search, array|string $replace, string $path): void
{
file_put_contents($path, str_replace($search, $replace, file_get_contents($path)));
}
/**
* Ajouter au début d'un fichier.
*
* @return false|int
*/
public function prepend(string $path, string $data)
{
if ($this->exists($path)) {
return $this->put($path, $data . $this->get($path));
}
return $this->put($path, $data);
}
/**
* Ajouter à un fichier.
*
* @return false|int
*/
public function append(string $path, string $data)
{
return file_put_contents($path, $data, FILE_APPEND);
}
/**
* Obtenir ou définir le mode UNIX d'un fichier ou d'un répertoire.
*/
public function chmod(string $path, ?int $mode = null): mixed
{
if ($mode) {
return chmod($path, $mode);
}
return substr(sprintf('%o', fileperms($path)), -4);
}
/**
* Supprimer le fichier à un chemin donné.
*/
public function delete(array|string $paths): bool
{
$paths = is_array($paths) ? $paths : func_get_args();
$success = true;
foreach ($paths as $path) {
try {
if (@unlink($path)) {
clearstatcache(false, $path);
} else {
$success = false;
}
} catch (ErrorException $e) {
$success = false;
}
}
return $success;
}
/**
* Déplacer un fichier vers un nouvel emplacement.
*/
public function move(string $path, string $target, bool $overwrite = true): bool
{
if (! is_file($target) || ($overwrite && is_file($target))) {
return rename($path, $target);
}
return false;
}
/**
* Copiez un fichier vers un nouvel emplacement.
*/
public function copy(string $path, string $target, bool $overwrite = true): bool
{
if (! is_file($target) || ($overwrite && is_file($target))) {
return copy($path, $target);
}
return false;
}
/**
* Créez un lien symbolique vers le fichier ou le répertoire cible. Sous Windows, un lien physique est créé si la cible est un fichier.
*
* @return bool|void
*/
public function link(string $target, string $link)
{
if (! is_windows()) {
return symlink($target, $link);
}
$mode = $this->isDirectory($target) ? 'J' : 'H';
exec("mklink /{$mode} " . escapeshellarg($link) . ' ' . escapeshellarg($target));
}
/**
* Extraire le nom de fichier d'un chemin de fichier.
*/
public function name(string $path): string
{
return pathinfo($path, PATHINFO_FILENAME);
}
/**
* Extraire le composant de nom de fin d'un chemin de fichier.
*/
public function basename(string $path): string
{
return pathinfo($path, PATHINFO_BASENAME);
}
/**
* Extraire le répertoire parent d'un chemin de fichier.
*/
public function dirname(string $path): string
{
return pathinfo($path, PATHINFO_DIRNAME);
}
/**
* Extraire l'extension de fichier d'un chemin de fichier.
*/
public function extension(string $path): string
{
return pathinfo($path, PATHINFO_EXTENSION);
}
/**
* Obtenir le type de fichier d'un fichier donné.
*/
public function type(string $path): string
{
return filetype($path);
}
/**
* Récupère le type mime d'un fichier donné.
*
* @return false|string
*/
public function mimeType(string $path)
{
return finfo_file(finfo_open(FILEINFO_MIME_TYPE), $path);
}
/**
* Obtenir la taille de fichier d'un fichier donné.
*/
public function size(string $path): int
{
return filesize($path);
}
/**
* Obtenir l'heure de la dernière modification du fichier.
*/
public function lastModified(string $path): int
{
return filemtime($path);
}
/**
* Déterminer si le chemin donné est un répertoire.
*/
public function isDirectory(string $directory): bool
{
return is_dir($directory);
}
/**
* Déterminer si le chemin donné est un répertoire qui ne contient aucun autre fichier ou répertoire.
*/
public function isEmptyDirectory(string $directory, bool $ignoreDotFiles = false): bool
{
return ! Finder::create()->ignoreDotFiles($ignoreDotFiles)->in($directory)->depth(0)->hasResults();
}
/**
* Déterminez si le chemin donné est lisible.
*/
public function isReadable(string $path): bool
{
return is_readable($path);
}
/**
* Détermine si le chemin donné est accessible en écriture.
*/
public function isWritable(string $path): bool
{
return is_writable($path);
}
/**
* Déterminez si deux fichiers sont identiques en comparant leurs hachages.
*/
public function hasSameHash(string $firstFile, string $secondFile): bool
{
$hash = @md5_file($firstFile);
return $hash && $hash === @md5_file($secondFile);
}
/**
* Déterminez si le chemin donné est un fichier.
*/
public function isFile(string $file): bool
{
return is_file($file);
}
/**
* Trouver les noms de chemin correspondant à un modèle donné.
*
* @return array
*/
public function glob(string $pattern, int $flags = 0)
{
return glob($pattern, $flags);
}
/**
* Récupère un tableau de tous les fichiers d'un répertoire.
*
* @return list<\Symfony\Component\Finder\SplFileInfo>
*/
public function files(string $directory, bool $hidden = false, string $sortBy = 'name'): array
{
$files = Finder::create()->files()->ignoreDotFiles(! $hidden)->in($directory)->depth(0);
switch (strtolower($sortBy)) {
case 'type':
$files = $files->sortByType();
break;
case 'modifiedtime':
case 'modified':
$files = $files->sortByModifiedTime();
break;
case 'changedtime':
case 'changed':
$files = $files->sortByChangedTime();
break;
case 'accessedtime':
case 'accessed':
$files = $files->sortByAccessedTime();
break;
default:
$files = $files->sortByName();
break;
}
return iterator_to_array($files, false);
}
/**
* Récupère tous les fichiers du répertoire donné (récursif).
*
* @return list<\Symfony\Component\Finder\SplFileInfo>
*/
public function allFiles(string $directory, bool $hidden = false, string $sortBy = 'name'): array
{
$files = Finder::create()->files()->ignoreDotFiles(! $hidden)->in($directory);
switch (strtolower($sortBy)) {
case 'type':
$files = $files->sortByType();
break;
case 'modifiedtime':
case 'modified':
$files = $files->sortByModifiedTime();
break;
case 'changedtime':
case 'changed':
$files = $files->sortByChangedTime();
break;
case 'accessedtime':
case 'accessed':
$files = $files->sortByAccessedTime();
break;
default:
$files = $files->sortByName();
break;
}
return iterator_to_array($files, false);
}
/**
* Récupère tous les répertoires d'un répertoire donné.
*/
public function directories(string $directory, int $depth = 0, bool $hidden = false): array
{
$directories = [];
foreach (Finder::create()->ignoreDotFiles(! $hidden)->in($directory)->directories()->depth($depth)->sortByName() as $dir) {
$directories[] = $dir->getPathname();
}
return $directories;
}
/**
* Assurez-vous qu'un répertoire existe.
*/
public function ensureDirectoryExists(string $path, int $mode = 0755, bool $recursive = true): void
{
if (! $this->isDirectory($path)) {
$this->makeDirectory($path, $mode, $recursive);
}
}
/**
* Créez un répertoire.
*/
public function makeDirectory(string $path, int $mode = 0755, bool $recursive = false, bool $force = false): bool
{
if ($force) {
return @mkdir($path, $mode, $recursive);
}
return mkdir($path, $mode, $recursive);
}
/**
* Déplacer un répertoire.
*/
public function moveDirectory(string $from, string $to, bool $overwrite = false): bool
{
if ($overwrite && $this->isDirectory($to) && ! $this->deleteDirectory($to)) {
return false;
}
return @rename($from, $to) === true;
}
/**
* Copiez un répertoire d'un emplacement à un autre.
*/
public function copyDirectory(string $directory, string $destination, ?int $options = null): bool
{
if (! $this->isDirectory($directory)) {
return false;
}
$options = $options ?: FilesystemIterator::SKIP_DOTS;
// Si le répertoire de destination n'existe pas réellement,
// nous continuerons et le créerons de manière récursive,
// ce qui préparera simplement la destination à copier les fichiers.
// Une fois que nous aurons créé le répertoire, nous procéderons à la copie.
$this->ensureDirectoryExists($destination, 0777);
$items = new FilesystemIterator($directory, $options);
foreach ($items as $item) {
// Au fur et à mesure que nous parcourrons les éléments, nous vérifierons si le fichier actuel est en fait un répertoire ou un fichier.
// Lorsqu'il s'agit en fait d'un répertoire, nous devrons rappeler cette fonction de manière récursive pour continuer à copier ces dossiers imbriqués.
$target = $destination . '/' . $item->getBasename();
if ($item->isDir()) {
$path = $item->getPathname();
if (! $this->copyDirectory($path, $target, $options)) {
return false;
}
}
// Si les éléments actuels ne sont qu'un fichier normal, nous le copierons simplement dans le nouvel emplacement et continuerons à boucler.
// Si, pour une raison quelconque, la copie échoue, nous renflouerons et renverrons false, afin que le développeur sache que le processus de copie a échoué.
elseif (! $this->copy($item->getPathname(), $target)) {
return false;
}
}
return true;
}
/**
* Supprimer récursivement un répertoire.
*
* Le répertoire lui-même peut éventuellement être conservé.
*/
public function deleteDirectory(string $directory, bool $preserve = false): bool
{
if (! $this->isDirectory($directory)) {
return false;
}
$items = new FilesystemIterator($directory);
foreach ($items as $item) {
// Si l'élément est un répertoire, nous pouvons simplement revenir dans la fonction
// et supprimer ce sous-répertoire,
// sinon nous supprimerons simplement le fichier
// et continuerons à parcourir chaque fichier jusqu'à ce que le répertoire soit nettoyé.
if ($item->isDir() && ! $item->isLink()) {
$this->deleteDirectory($item->getPathname());
}
// Si l'élément n'est qu'un fichier, nous pouvons continuer
// et le supprimer puisque nous ne faisons que parcourir
// et parfaire tous les fichiers de ce répertoire
// et appeler les répertoires de manière récursive,
// nous supprimons donc le chemin réel.
else {
$this->delete($item->getPathname());
}
}
if (! $preserve) {
@rmdir($directory);
}
return true;
}
/**
* Supprimez tous les répertoires d'un répertoire donné.
*/
public function deleteDirectories(string $directory): bool
{
$allDirectories = $this->directories($directory);
if (! empty($allDirectories)) {
foreach ($allDirectories as $directoryName) {
$this->deleteDirectory($directoryName);
}
return true;
}
return false;
}
/**
* Vide le répertoire spécifié de tous les fichiers et dossiers.
*/
public function cleanDirectory(string $directory): bool
{
return $this->deleteDirectory($directory, true);
}
}