-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFilesystem.php
More file actions
556 lines (448 loc) · 15.3 KB
/
Copy pathFilesystem.php
File metadata and controls
556 lines (448 loc) · 15.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
<?php
declare(strict_types=1);
/**
* You may not change or alter any portion of this comment or credits
* of supporting developers from this source code or any supporting source code
* which is considered copyrighted (c) material of the original comment or credit authors.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
/**
* @copyright 2000-2026 XOOPS Project (https://xoops.org/)
* @license GNU GPL 2.0 or later (https://www.gnu.org/licenses/gpl-2.0.html)
* @author XOOPS Development Team
*/
namespace Xoops\Helpers\Utility;
use FilesystemIterator;
use RecursiveDirectoryIterator;
use RecursiveIteratorIterator;
use ZipArchive;
/**
* Filesystem utility helpers.
*
* Provides file and directory operations including JSON I/O,
* MIME detection, recursive operations, and zip archiving.
*/
final class Filesystem
{
/**
* Read a file in chunks, calling a callback for each chunk.
*
* Return false from the callback to stop reading.
*
* @param string $path File path
* @param int $chunkSize Bytes per chunk
* @param callable $callback Receives chunk string; return false to stop
*/
public static function readChunked(string $path, int $chunkSize, callable $callback): bool
{
if ($chunkSize < 1) {
return false;
}
$handle = @fopen($path, 'rb');
if ($handle === false) {
return false;
}
$ok = true;
try {
while (!feof($handle)) {
$chunk = fread($handle, $chunkSize);
if ($chunk === false) {
$ok = false;
break;
}
// fread() can return '' at EOF before feof() flips — don't emit
// a trailing empty chunk to the callback.
if ($chunk === '') {
break;
}
if ($callback($chunk) === false) {
break;
}
}
} finally {
fclose($handle);
}
return $ok;
}
/**
* Read and decode a JSON file.
*
* @return array<string, mixed>|null Decoded data or null on failure
*/
public static function readJson(string $path): ?array
{
$json = @file_get_contents($path);
if ($json === false) {
return null;
}
$data = json_decode($json, true);
// Contract is an object (associative array), per the @return type — a
// bare JSON list (e.g. "[1,2,3]") is not a valid config object.
return is_array($data) && !array_is_list($data) ? $data : null;
}
/**
* Encode data and write it to a JSON file.
*
* @param string $path File path
* @param mixed $data Data to encode
* @param int $flags JSON encoding flags
*/
public static function putJson(string $path, mixed $data, int $flags = JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES): bool
{
$json = json_encode($data, $flags);
if ($json === false) {
return false;
}
return @file_put_contents($path, $json . "\n") !== false;
}
/**
* Detect the MIME type of a file using finfo.
*/
public static function mimeType(string $path): ?string
{
if (!file_exists($path) || !function_exists('finfo_open')) {
return null;
}
$finfo = finfo_open(FILEINFO_MIME_TYPE);
if ($finfo === false) {
return null;
}
$mime = finfo_file($finfo, $path);
finfo_close($finfo);
return $mime !== false ? $mime : null;
}
/**
* Get the file extension (lowercase).
*/
public static function extension(string $path): string
{
return strtolower(pathinfo($path, PATHINFO_EXTENSION));
}
/**
* Check if a file is an image by extension or MIME type.
*/
public static function isImage(string $filename): bool
{
$imageExtensions = ['jpg', 'jpeg', 'gif', 'png', 'bmp', 'webp', 'avif', 'svg'];
if (in_array(self::extension($filename), $imageExtensions, true)) {
return true;
}
$mime = self::mimeType($filename);
return is_string($mime) && str_starts_with($mime, 'image/');
}
/**
* Check if a directory and all its contents are writable.
*/
public static function isWritableRecursive(string $directory): bool
{
if (!is_dir($directory) || !is_writable($directory)) {
return false;
}
$entries = scandir($directory);
if ($entries === false) {
return false;
}
foreach ($entries as $entry) {
if ($entry === '.' || $entry === '..') {
continue;
}
$path = $directory . DIRECTORY_SEPARATOR . $entry;
if (is_dir($path)) {
if (!self::isWritableRecursive($path)) {
return false;
}
} elseif (!is_writable($path)) {
return false;
}
}
return true;
}
/**
* Create a directory, optionally recursively.
*/
public static function mkdir(string $directory, int $mode = 0775, bool $recursive = true): bool
{
if (is_dir($directory)) {
return true;
}
return @mkdir($directory, $mode, $recursive);
}
/**
* Copy a single file, creating the destination directory if needed (H2).
*
* For directories use copyDirectory().
*/
public static function copy(string $source, string $destination): bool
{
if (!is_file($source)) {
return false;
}
$dir = \dirname($destination);
if (!is_dir($dir) && !self::mkdir($dir)) {
return false;
}
return @copy($source, $destination);
}
/**
* Delete a single file or symlink (H2). Returns true if already absent.
*
* Refuses real directories — use deleteDirectory() for those.
*/
public static function delete(string $path): bool
{
if (!file_exists($path) && !is_link($path)) {
return true;
}
if (is_dir($path) && !is_link($path)) {
return false;
}
return @unlink($path);
}
/**
* Move/rename a single file, creating the destination directory if needed (H2).
*
* Falls back to copy-then-delete when rename() cannot cross filesystems
* (e.g. moving between devices/mount points), mirroring moveDirectory().
* For directories use moveDirectory().
*/
public static function move(string $source, string $destination): bool
{
if (!is_file($source)) {
return false;
}
$dir = \dirname($destination);
if (!is_dir($dir) && !self::mkdir($dir)) {
return false;
}
if (@rename($source, $destination)) {
return true;
}
// Cross-filesystem fallback: copy then remove the source.
if (@copy($source, $destination)) {
return @unlink($source);
}
return false;
}
/**
* Alias of move() for call sites that read more naturally as a rename (H2).
*/
public static function rename(string $source, string $destination): bool
{
return self::move($source, $destination);
}
/**
* Create a directory and drop an anti-listing index.html guard (H7).
*
* Matches the XOOPS convention: the guard contains the JS history-back
* redirect that modules currently write by hand after each mkdir.
*/
public static function secureDir(string $directory, int $mode = 0775): bool
{
if (!self::mkdir($directory, $mode)) {
return false;
}
$guard = rtrim($directory, '/\\') . DIRECTORY_SEPARATOR . 'index.html';
if (!is_file($guard) && @file_put_contents($guard, '<script>history.go(-1);</script>') === false) {
return false;
}
return true;
}
/**
* Recursively delete a directory and all its contents.
*/
public static function deleteDirectory(string $directory): bool
{
if (!is_dir($directory)) {
return false;
}
$entries = scandir($directory);
if ($entries === false) {
return false;
}
foreach ($entries as $entry) {
if ($entry === '.' || $entry === '..') {
continue;
}
$path = $directory . DIRECTORY_SEPARATOR . $entry;
// Remove symlinks as files — never follow into external trees
if (is_link($path)) {
if (!@unlink($path)) {
return false;
}
} elseif (is_dir($path)) {
if (!self::deleteDirectory($path)) {
return false;
}
} elseif (!@unlink($path)) {
return false;
}
}
return @rmdir($directory);
}
/**
* Recursively copy a directory.
*/
public static function copyDirectory(string $source, string $destination): bool
{
if (!is_dir($source)) {
return false;
}
self::mkdir($destination);
$entries = scandir($source);
if ($entries === false) {
return false;
}
foreach ($entries as $entry) {
if ($entry === '.' || $entry === '..') {
continue;
}
$srcPath = $source . DIRECTORY_SEPARATOR . $entry;
$dstPath = $destination . DIRECTORY_SEPARATOR . $entry;
if (is_dir($srcPath)) {
if (!self::copyDirectory($srcPath, $dstPath)) {
return false;
}
} elseif (!@copy($srcPath, $dstPath)) {
return false;
}
}
return true;
}
/**
* Move (copy then delete) a directory.
*/
public static function moveDirectory(string $source, string $destination): bool
{
return self::copyDirectory($source, $destination) && self::deleteDirectory($source);
}
/**
* Create a zip archive from a directory.
*
* @param string $directory Source directory
* @param string $zipPath Output zip file path
* @param array<string>|null $include Glob patterns to include (null = all)
* @param array<string>|null $exclude Glob patterns to exclude (null = none)
*/
public static function zip(string $directory, string $zipPath, ?array $include = null, ?array $exclude = null): bool
{
if (!is_dir($directory) || !class_exists(ZipArchive::class)) {
return false;
}
$zip = new ZipArchive();
if ($zip->open($zipPath, ZipArchive::CREATE | ZipArchive::OVERWRITE) !== true) {
return false;
}
$iterator = new RecursiveIteratorIterator(
new RecursiveDirectoryIterator($directory, FilesystemIterator::SKIP_DOTS),
);
// Strip any trailing separator so the prefix check and substr() below stay
// correct for a root base path too ("/" or "C:\"); otherwise the guard would
// build a doubled separator and skip every file, leaving an empty archive.
$basePath = rtrim(realpath($directory) ?: $directory, '/\\');
foreach ($iterator as $file) {
if ($file->isDir()) {
continue;
}
$realPath = $file->getRealPath();
if ($realPath === false) {
continue;
}
// Skip anything that resolves outside the base directory (e.g. an escaping
// symlink); otherwise the relative path below would be wrong/empty and could
// leak external content into the archive. Compare with forward-slash-normalised
// paths so a separator mix on Windows cannot break the check. $basePath has no
// trailing separator (rtrim above), so appending one yields exactly one.
$normalizedBase = str_replace('\\', '/', $basePath) . '/';
if (!str_starts_with(str_replace('\\', '/', $realPath), $normalizedBase)) {
continue;
}
$relativePath = ltrim(str_replace('\\', '/', substr($realPath, strlen($basePath))), '/');
if (!self::matchesGlobs($relativePath, $include, $exclude)) {
continue;
}
$zip->addFile($realPath, $relativePath);
}
return $zip->close();
}
/**
* Extract a zip archive to a directory.
*/
public static function unzip(string $zipPath, string $destination): bool
{
if (!class_exists(ZipArchive::class)) {
return false;
}
$zip = new ZipArchive();
if ($zip->open($zipPath) !== true) {
return false;
}
self::mkdir($destination);
$realDest = realpath($destination);
if ($realDest === false) {
$zip->close();
return false;
}
$realDest = rtrim($realDest, '/\\') . DIRECTORY_SEPARATOR;
// Validate each entry to prevent Zip Slip (path traversal)
for ($i = 0; $i < $zip->numFiles; $i++) {
$entryName = $zip->getNameIndex($i);
if ($entryName === false) {
continue;
}
// Reject entries with traversal sequences or absolute paths before any filesystem operation
$normalized = str_replace('\\', '/', $entryName);
if (
str_starts_with($normalized, '/')
|| str_contains($normalized, '../')
|| preg_match('/^[A-Za-z]:/', $normalized)
) {
$zip->close();
return false;
}
}
$result = $zip->extractTo($destination);
$zip->close();
return $result;
}
/**
* Get the size of a file in bytes.
*/
public static function size(string $path): int|false
{
return @filesize($path);
}
/**
* Check if a relative path matches include/exclude glob patterns.
*
* @param string $relativePath Path to check
* @param array<string>|null $include Include patterns (null = match all)
* @param array<string>|null $exclude Exclude patterns (null = exclude none)
*/
private static function matchesGlobs(string $relativePath, ?array $include, ?array $exclude): bool
{
$relativePath = ltrim($relativePath, '/');
if ($include !== null && $include !== []) {
$matched = false;
foreach ($include as $pattern) {
if (fnmatch($pattern, $relativePath, FNM_PATHNAME | FNM_CASEFOLD)) {
$matched = true;
break;
}
}
if (!$matched) {
return false;
}
}
if ($exclude !== null) {
foreach ($exclude as $pattern) {
if (fnmatch($pattern, $relativePath, FNM_PATHNAME | FNM_CASEFOLD)) {
return false;
}
}
}
return true;
}
}