Passed
Pull Request — master (#25)
by Alexander
03:24
created

FileHelper::matchPathname()   C

Complexity

Conditions 12
Paths 72

Size

Total Lines 44
Code Lines 22

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 19
CRAP Score 12.7571

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 12
eloc 22
c 1
b 0
f 0
nc 72
nop 5
dl 0
loc 44
ccs 19
cts 23
cp 0.8261
crap 12.7571
rs 6.9666

How to fix   Complexity   

Long Method

Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.

For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.

Commonly applied refactorings include:

1
<?php
2
3
declare(strict_types=1);
4
5
namespace Yiisoft\Files;
6
7
use Yiisoft\Strings\StringHelper;
8
use Yiisoft\Strings\WildcardPattern;
9
10
use function is_array;
11
use function is_string;
12
13
/**
14
 * FileHelper provides useful methods to manage files and directories
15
 */
16
class FileHelper
17
{
18
    /**
19
     * @var int PATTERN_NO_DIR
20
     */
21
    private const PATTERN_NO_DIR = 1;
22
23
    /**
24
     * @var int PATTERN_ENDS_WITH
25
     */
26
    private const PATTERN_ENDS_WITH = 4;
27
28
    /**
29
     * @var int PATTERN_MUST_BE_DIR
30
     */
31
    private const PATTERN_MUST_BE_DIR = 8;
32
33
    /**
34
     * @var int PATTERN_NEGATIVE
35
     */
36
    private const PATTERN_NEGATIVE = 16;
37
38
    /**
39
     * @var int PATTERN_CASE_INSENSITIVE
40
     */
41
    private const PATTERN_CASE_INSENSITIVE = 32;
42
43
    /**
44
     * Creates a new directory.
45
     *
46
     * This method is similar to the PHP `mkdir()` function except that it uses `chmod()` to set the permission of the
47
     * created directory in order to avoid the impact of the `umask` setting.
48
     *
49
     * @param string $path path of the directory to be created.
50
     * @param int $mode the permission to be set for the created directory.
51
     *
52
     * @return bool whether the directory is created successfully.
53
     */
54 34
    public static function createDirectory(string $path, int $mode = 0775): bool
55
    {
56 34
        $path = static::normalizePath($path);
57
58
        try {
59 34
            if (!mkdir($path, $mode, true) && !is_dir($path)) {
60 34
                return false;
61
            }
62 2
        } catch (\Exception $e) {
63 2
            if (!is_dir($path)) {
64 1
                throw new \RuntimeException(
65 1
                    "Failed to create directory \"$path\": " . $e->getMessage(),
66 1
                    $e->getCode(),
67
                    $e
68
                );
69
            }
70
        }
71
72 34
        return static::chmod($path, $mode);
73
    }
74
75
    /**
76
     * Set permissions directory.
77
     *
78
     * @param string $path
79
     * @param integer $mode
80
     *
81
     * @throws \RuntimeException
82
     *
83
     * @return boolean|null
84
     */
85 34
    private static function chmod(string $path, int $mode): ?bool
86
    {
87
        try {
88 34
            return chmod($path, $mode);
89
        } catch (\Exception $e) {
90
            throw new \RuntimeException(
91
                "Failed to change permissions for directory \"$path\": " . $e->getMessage(),
92
                $e->getCode(),
93
                $e
94
            );
95
        }
96
    }
97
98
    /**
99
     * Normalizes a file/directory path.
100
     *
101
     * The normalization does the following work:
102
     *
103
     * - Convert all directory separators into `/` (e.g. "\a/b\c" becomes "/a/b/c")
104
     * - Remove trailing directory separators (e.g. "/a/b/c/" becomes "/a/b/c")
105
     * - Turn multiple consecutive slashes into a single one (e.g. "/a///b/c" becomes "/a/b/c")
106
     * - Remove ".." and "." based on their meanings (e.g. "/a/./b/../c" becomes "/a/c")
107
     *
108
     * @param string $path the file/directory path to be normalized
109
     *
110
     * @return string the normalized file/directory path
111
     */
112 34
    public static function normalizePath(string $path): string
113
    {
114 34
        $isWindowsShare = strpos($path, '\\\\') === 0;
115
116 34
        if ($isWindowsShare) {
117 1
            $path = substr($path, 2);
118
        }
119
120 34
        $path = rtrim(strtr($path, '/\\', '//'), '/');
121
122 34
        if (strpos('/' . $path, '/.') === false && strpos($path, '//') === false) {
123 34
            return $isWindowsShare ? "\\\\$path" : $path;
124
        }
125
126 1
        $parts = [];
127
128 1
        foreach (explode('/', $path) as $part) {
129 1
            if ($part === '..' && !empty($parts) && end($parts) !== '..') {
130 1
                array_pop($parts);
131 1
            } elseif ($part !== '.' && ($part !== '' || empty($parts))) {
132 1
                $parts[] = $part;
133
            }
134
        }
135
136 1
        $path = implode('/', $parts);
137
138 1
        if ($isWindowsShare) {
139 1
            $path = '\\\\' . $path;
140
        }
141
142 1
        return $path === '' ? '.' : $path;
143
    }
144
145
    /**
146
     * Removes a directory (and all its content) recursively.
147
     *
148
     * @param string $directory the directory to be deleted recursively.
149
     * @param array $options options for directory remove ({@see clearDirectory()}).
150
     *
151
     * @return void
152
     */
153 34
    public static function removeDirectory(string $directory, array $options = []): void
154
    {
155
        try {
156 34
            static::clearDirectory($directory, $options);
157 34
        } catch (\InvalidArgumentException $e) {
158 34
            return;
159
        }
160
161 34
        if (is_link($directory)) {
162 2
            self::unlink($directory);
163
        } else {
164 34
            rmdir($directory);
165
        }
166 34
    }
167
168
    /**
169
     * Clear all directory content.
170
     *
171
     * @param string $directory the directory to be cleared.
172
     * @param array $options options for directory clear . Valid options are:
173
     *
174
     * - traverseSymlinks: boolean, whether symlinks to the directories should be traversed too.
175
     *   Defaults to `false`, meaning the content of the symlinked directory would not be deleted.
176
     *   Only symlink would be removed in that default case.
177
     *
178
     * @throws \InvalidArgumentException if unable to open directory
179
     *
180
     * @return void
181
     */
182 34
    public static function clearDirectory(string $directory, array $options = []): void
183
    {
184 34
        $handle = static::openDirectory($directory);
185 34
        if (!empty($options['traverseSymlinks']) || !is_link($directory)) {
186 34
            while (($file = readdir($handle)) !== false) {
187 34
                if ($file === '.' || $file === '..') {
188 34
                    continue;
189
                }
190 22
                $path = $directory . '/' . $file;
191 22
                if (is_dir($path)) {
192 22
                    self::removeDirectory($path, $options);
193
                } else {
194 14
                    self::unlink($path);
195
                }
196
            }
197 34
            closedir($handle);
198
        }
199 34
    }
200
201
    /**
202
     * Removes a file or symlink in a cross-platform way.
203
     *
204
     * @param string $path
205
     *
206
     * @return bool
207
     */
208 15
    public static function unlink(string $path): bool
209
    {
210 15
        $isWindows = DIRECTORY_SEPARATOR === '\\';
211
212 15
        if (!$isWindows) {
213 15
            return unlink($path);
214
        }
215
216
        if (is_link($path) && is_dir($path)) {
217
            return rmdir($path);
218
        }
219
220
        if (!is_writable($path)) {
221
            chmod($path, 0777);
222
        }
223
224
        return unlink($path);
225
    }
226
227
    /**
228
     * Copies a whole directory as another one.
229
     *
230
     * The files and sub-directories will also be copied over.
231
     *
232
     * @param string $source the source directory.
233
     * @param string $destination the destination directory.
234
     * @param array $options options for directory copy. Valid options are:
235
     *
236
     * - dirMode: integer, the permission to be set for newly copied directories. Defaults to 0775.
237
     * - fileMode:  integer, the permission to be set for newly copied files. Defaults to the current environment
238
     *   setting.
239
     * - filter: callback, a PHP callback that is called for each directory or file.
240
     *   The signature of the callback should be: `function ($path)`, where `$path` refers the full path to be filtered.
241
     *   The callback can return one of the following values:
242
     *
243
     *   * true: the directory or file will be copied (the "only" and "except" options will be ignored).
244
     *   * false: the directory or file will NOT be copied (the "only" and "except" options will be ignored).
245
     *   * null: the "only" and "except" options will determine whether the directory or file should be copied.
246
     *
247
     * - only: array, list of patterns that the file paths should match if they want to be copied. A path matches a
248
     *   pattern if it contains the pattern string at its end. For example, '.php' matches all file paths ending with
249
     *   '.php'.
250
     *   Note, the '/' characters in a pattern matches both '/' and '\' in the paths. If a file path matches a pattern
251
     *   in both "only" and "except", it will NOT be copied.
252
     * - except: array, list of patterns that the files or directories should match if they want to be excluded from
253
     *   being copied. A path matches a pattern if it contains the pattern string at its end. Patterns ending with '/'
254
     *   apply to directory paths only, and patterns not ending with '/' apply to file paths only. For example, '/a/b'
255
     *   matches all file paths ending with '/a/b'; and '.svn/' matches directory paths ending with '.svn'. Note, the
256
     *   '/' characters in a pattern matches both '/' and '\' in the paths.
257
     * - caseSensitive: boolean, whether patterns specified at "only" or "except" should be case sensitive. Defaults to
258
     *   true.
259
     * - recursive: boolean, whether the files under the subdirectories should also be copied. Defaults to true.
260
     * - beforeCopy: callback, a PHP callback that is called before copying each sub-directory or file. If the callback
261
     *   returns false, the copy operation for the sub-directory or file will be cancelled. The signature of the
262
     *   callback should be: `function ($from, $to)`, where `$from` is the sub-directory or file to be copied from,
263
     *   while `$to` is the copy target.
264
     * - afterCopy: callback, a PHP callback that is called after each sub-directory or file is successfully copied.
265
     *   The signature of the callback should be: `function ($from, $to)`, where `$from` is the sub-directory or file
266
     *   copied from, while `$to` is the copy target.
267
     * - copyEmptyDirectories: boolean, whether to copy empty directories. Set this to false to avoid creating
268
     *   directories that do not contain files. This affects directories that do not contain files initially as well as
269
     *   directories that do not contain files at the target destination because files have been filtered via `only` or
270
     *   `except`. Defaults to true.
271
     *
272
     * @throws \InvalidArgumentException if unable to open directory
273
     * @throws \Exception
274
     *
275
     * @return void
276
     */
277 12
    public static function copyDirectory(string $source, string $destination, array $options = []): void
278
    {
279 12
        $source = static::normalizePath($source);
280 12
        $destination = static::normalizePath($destination);
281
282 12
        static::assertNotSelfDirectory($source, $destination);
283
284 10
        $destinationExists = static::setDestination($destination, $options);
285
286 10
        $handle = static::openDirectory($source);
287
288 9
        $options = static::setBasePath($source, $options);
289
290 9
        while (($file = readdir($handle)) !== false) {
291 9
            if ($file === '.' || $file === '..') {
292 9
                continue;
293
            }
294
295 7
            $from = $source . '/' . $file;
296 7
            $to = $destination . '/' . $file;
297
298 7
            if (static::filterPath($from, $options)) {
299 7
                if (is_file($from)) {
300 7
                    if (!$destinationExists) {
301 2
                        static::createDirectory($destination, $options['dirMode'] ?? 0775);
302 2
                        $destinationExists = true;
303
                    }
304 7
                    copy($from, $to);
305 7
                    if (isset($options['fileMode'])) {
306 7
                        static::chmod($to, $options['fileMode']);
307
                    }
308 6
                } elseif (!isset($options['recursive']) || $options['recursive']) {
309 5
                    static::copyDirectory($from, $to, $options);
310
                }
311
            }
312
        }
313
314 9
        closedir($handle);
315 9
    }
316
317
    /**
318
     * Check copy it self directory.
319
     *
320
     * @param string $source
321
     * @param string $destination
322
     *
323
     * @throws \InvalidArgumentException
324
     */
325 12
    private static function assertNotSelfDirectory(string $source, string $destination): void
326
    {
327 12
        if ($source === $destination || strpos($destination, $source . '/') === 0) {
328 2
            throw new \InvalidArgumentException('Trying to copy a directory to itself or a subdirectory.');
329
        }
330 10
    }
331
332
    /**
333
     * Open directory handle.
334
     *
335
     * @param string $directory
336
     *
337
     * @return resource
338
     * @throws \InvalidArgumentException
339
     */
340 34
    private static function openDirectory(string $directory)
341
    {
342 34
        $handle = @opendir($directory);
343
344 34
        if ($handle === false) {
345 34
            throw new \InvalidArgumentException("Unable to open directory: $directory");
346
        }
347
348 34
        return $handle;
349
    }
350
351
    /**
352
     * Set base path directory.
353
     *
354
     * @param string $source
355
     * @param array $options
356
     *
357
     * @return array
358
     */
359 9
    private static function setBasePath(string $source, array $options): array
360
    {
361 9
        if (!isset($options['basePath'])) {
362
            // this should be done only once
363 9
            $options['basePath'] = realpath($source);
364 9
            $options = static::normalizeOptions($options);
365
        }
366
367 9
        return $options;
368
    }
369
370
    /**
371
     * Set destination directory.
372
     *
373
     * @param string $destination
374
     * @param array $options
375
     *
376
     * @return bool
377
     */
378 10
    private static function setDestination(string $destination, array $options): bool
379
    {
380 10
        $destinationExists = is_dir($destination);
381
382 10
        if (!$destinationExists && (!isset($options['copyEmptyDirectories']) || $options['copyEmptyDirectories'])) {
383 6
            static::createDirectory($destination, $options['dirMode'] ?? 0775);
384 6
            $destinationExists = true;
385
        }
386
387 10
        return $destinationExists;
388
    }
389
390
    /**
391
     * Normalize options.
392
     *
393
     * @param array $options raw options.
394
     *
395
     * @return array normalized options.
396
     */
397 9
    protected static function normalizeOptions(array $options): array
398
    {
399 9
        $options = static::setCaseSensitive($options);
400 9
        $options = static::setExcept($options);
401 9
        $options = static::setOnly($options);
402
403 9
        return $options;
404
    }
405
406
    /**
407
     * Set options case sensitive.
408
     *
409
     * @param array $options
410
     *
411
     * @return array
412
     */
413 9
    private static function setCaseSensitive(array $options): array
414
    {
415 9
        if (!array_key_exists('caseSensitive', $options)) {
416 9
            $options['caseSensitive'] = true;
417
        }
418
419 9
        return $options;
420
    }
421
422
    /**
423
     * Set options except.
424
     *
425
     * @param array $options
426
     *
427
     * @return array
428
     */
429 9
    private static function setExcept(array $options): array
430
    {
431 9
        if (isset($options['except'])) {
432 1
            foreach ($options['except'] as $key => $value) {
433 1
                if (is_string($value)) {
434 1
                    $options['except'][$key] = self::parseExcludePattern($value, $options['caseSensitive']);
435
                }
436
            }
437
        }
438
439 9
        return $options;
440
    }
441
442
    /**
443
     * Set options only.
444
     *
445
     * @param array $options
446
     *
447
     * @return array
448
     */
449 9
    private static function setOnly(array $options): array
450
    {
451 9
        if (isset($options['only'])) {
452 2
            foreach ($options['only'] as $key => $value) {
453 2
                if (is_string($value)) {
454 2
                    $options['only'][$key] = self::parseExcludePattern($value, $options['caseSensitive']);
455
                }
456
            }
457
        }
458
459 9
        return $options;
460
    }
461
462
    /**
463
     * Checks if the given file path satisfies the filtering options.
464
     *
465
     * @param string $path the path of the file or directory to be checked.
466
     * @param array $options the filtering options.
467
     *
468
     * @return bool whether the file or directory satisfies the filtering options.
469
     */
470 18
    public static function filterPath(string $path, array $options): bool
471
    {
472 18
        $path = str_replace('\\', '/', $path);
473
474 18
        if (isset($options['filter'])) {
475 5
            if (!is_callable($options['filter'])) {
476 1
                $type = gettype($options['filter']);
477 1
                throw new \InvalidArgumentException("Option \"filter\" must be callable, $type given.");
478
            }
479 4
            $result = call_user_func($options['filter'], $path);
480 4
            if (is_bool($result)) {
481 2
                return $result;
482
            }
483
        }
484
485 15
        if (!empty($options['except']) && self::lastExcludeMatchingFromList(
486 3
            $options['basePath'] ?? '',
487
            $path,
488 3
            (array)$options['except']
489 15
        ) !== null) {
490 2
            return false;
491
        }
492
493 14
        if (!empty($options['only']) && !is_dir($path)) {
494
            // don't check PATTERN_NEGATIVE since those entries are not prefixed with !
495
            return
496 6
                self::lastExcludeMatchingFromList(
497 6
                    $options['basePath'] ?? '',
498
                    $path,
499 6
                    (array) $options['only']
500 5
                ) !== null;
501
        }
502
503 10
        return true;
504
    }
505
506
    /**
507
     * Searches for the first wildcard character in the pattern.
508
     *
509
     * @param string $pattern the pattern to search in.
510
     *
511
     * @return int|bool position of first wildcard character or false if not found.
512
     */
513 7
    private static function firstWildcardInPattern(string $pattern)
514
    {
515 7
        $wildcards = ['*', '?', '[', '\\'];
516 7
        $wildcardSearch = static function ($carry, $item) use ($pattern) {
517 7
            $position = strpos($pattern, $item);
518 7
            if ($position === false) {
519 7
                return $carry === false ? $position : $carry;
520
            }
521 7
            return $carry === false ? $position : min($carry, $position);
522 7
        };
523 7
        return array_reduce($wildcards, $wildcardSearch, false);
524
    }
525
526
527
    /**
528
     * Scan the given exclude list in reverse to see whether pathname should be ignored.
529
     *
530
     * The first match (i.e. the last on the list), if any, determines the fate.  Returns the element which matched,
531
     * or null for undecided.
532
     *
533
     * Based on last_exclude_matching_from_list() from dir.c of git 1.8.5.3 sources.
534
     *
535
     * @param string $basePath.
536
     * @param string $path.
537
     * @param array $excludes list of patterns to match $path against.
538
     *
539
     * @return null|array null or one of $excludes item as an array with keys: 'pattern', 'flags'.
540
     *
541
     * @throws \InvalidArgumentException if any of the exclude patterns is not a string or an array with keys: pattern,
542
     *                                   flags, firstWildcard.
543
     */
544 8
    private static function lastExcludeMatchingFromList(string $basePath, string $path, array $excludes): ?array
545
    {
546 8
        foreach (array_reverse($excludes) as $exclude) {
547 8
            if (is_string($exclude)) {
548 5
                $exclude = self::parseExcludePattern($exclude, false);
549
            }
550
551 8
            if (!isset($exclude['pattern'], $exclude['flags'], $exclude['firstWildcard'])) {
552 1
                throw new \InvalidArgumentException(
553 1
                    'If exclude/include pattern is an array it must contain the pattern, flags and firstWildcard keys.'
554
                );
555
            }
556
557 7
            if (($exclude['flags'] & self::PATTERN_MUST_BE_DIR) && !is_dir($path)) {
558
                continue;
559
            }
560
561 7
            if ($exclude['flags'] & self::PATTERN_NO_DIR) {
562 5
                if (self::matchBasename(basename($path), $exclude['pattern'], $exclude['firstWildcard'], $exclude['flags'])) {
563 2
                    return $exclude;
564
                }
565 3
                continue;
566
            }
567
568 2
            if (self::matchPathname($path, $basePath, $exclude['pattern'], $exclude['firstWildcard'], $exclude['flags'])) {
569 2
                return $exclude;
570
            }
571
        }
572
573 5
        return null;
574
    }
575
576
    /**
577
     * Performs a simple comparison of file or directory names.
578
     *
579
     * Based on match_basename() from dir.c of git 1.8.5.3 sources.
580
     *
581
     * @param string $baseName file or directory name to compare with the pattern.
582
     * @param string $pattern the pattern that $baseName will be compared against.
583
     * @param int|bool $firstWildcard location of first wildcard character in the $pattern.
584
     * @param int $flags pattern flags
585
     *
586
     * @return bool whether the name matches against pattern
587
     */
588 5
    private static function matchBasename(string $baseName, string $pattern, $firstWildcard, int $flags): bool
589
    {
590 5
        if ($firstWildcard === false) {
591
            if ($pattern === $baseName) {
592
                return true;
593
            }
594 5
        } elseif ($flags & self::PATTERN_ENDS_WITH) {
595
            /* "*literal" matching against "fooliteral" */
596 5
            $n = StringHelper::byteLength($pattern);
597 5
            if (StringHelper::byteSubstring($pattern, 1, $n) === StringHelper::byteSubstring($baseName, -$n, $n)) {
598
                return true;
599
            }
600
        }
601
602
603 5
        $wildcardPattern = new WildcardPattern($pattern);
604
605 5
        if ($flags & self::PATTERN_CASE_INSENSITIVE) {
606 5
            $wildcardPattern = $wildcardPattern->ignoreCase();
607
        }
608
609 5
        return $wildcardPattern->match($baseName);
610
    }
611
612
    /**
613
     * Compares a path part against a pattern with optional wildcards.
614
     *
615
     * Based on match_pathname() from dir.c of git 1.8.5.3 sources.
616
     *
617
     * @param string $path full path to compare
618
     * @param string $basePath base of path that will not be compared
619
     * @param string $pattern the pattern that path part will be compared against
620
     * @param int|bool $firstWildcard location of first wildcard character in the $pattern
621
     * @param int $flags pattern flags
622
     *
623
     * @return bool whether the path part matches against pattern
624
     */
625 2
    private static function matchPathname(string $path, string $basePath, string $pattern, $firstWildcard, int $flags): bool
626
    {
627
        // match with FNM_PATHNAME; the pattern has base implicitly in front of it.
628 2
        if (strpos($pattern, '/') === 0) {
629
            $pattern = StringHelper::byteSubstring($pattern, 1, StringHelper::byteLength($pattern));
630
            if ($firstWildcard !== false && $firstWildcard !== 0) {
631
                $firstWildcard--;
632
            }
633
        }
634
635 2
        $namelen = StringHelper::byteLength($path) - (empty($basePath) ? 0 : StringHelper::byteLength($basePath) + 1);
636 2
        $name = StringHelper::byteSubstring($path, -$namelen, $namelen);
637
638 2
        if ($firstWildcard !== 0) {
639 2
            if ($firstWildcard === false) {
640 1
                $firstWildcard = StringHelper::byteLength($pattern);
641
            }
642
643
            // if the non-wildcard part is longer than the remaining pathname, surely it cannot match.
644 2
            if ($firstWildcard > $namelen) {
645 1
                return false;
646
            }
647
648 2
            if (strncmp($pattern, $name, (int) $firstWildcard)) {
649 2
                return false;
650
            }
651
652 2
            $pattern = StringHelper::byteSubstring($pattern, (int) $firstWildcard, StringHelper::byteLength($pattern));
653 2
            $name = StringHelper::byteSubstring($name, (int) $firstWildcard, $namelen);
654
655
            // If the whole pattern did not have a wildcard, then our prefix match is all we need; we do not need to call fnmatch at all.
656 2
            if (empty($pattern) && empty($name)) {
657 1
                return true;
658
            }
659
        }
660
661 2
        $wildcardPattern = (new WildcardPattern($pattern))
662 2
            ->withExactSlashes();
663
664 2
        if ($flags & self::PATTERN_CASE_INSENSITIVE) {
665
            $wildcardPattern = $wildcardPattern->ignoreCase();
666
        }
667
668 2
        return $wildcardPattern->match($name);
669
    }
670
671
    /**
672
     * Processes the pattern, stripping special characters like / and ! from the beginning and settings flags instead.
673
     *
674
     * @param string $pattern
675
     * @param bool $caseSensitive
676
     *
677
     * @return array with keys: (string) pattern, (int) flags, (int|bool) firstWildcard
678
     */
679 7
    private static function parseExcludePattern(string $pattern, bool $caseSensitive): array
680
    {
681
        $result = [
682 7
            'pattern' => $pattern,
683 7
            'flags' => 0,
684
            'firstWildcard' => false,
685
        ];
686
687 7
        $result = static::isCaseInsensitive($caseSensitive, $result);
688
689 7
        if (!isset($pattern[0])) {
690
            return $result;
691
        }
692
693 7
        if (strpos($pattern, '!') === 0) {
694
            $result['flags'] |= self::PATTERN_NEGATIVE;
695
            $pattern = StringHelper::byteSubstring($pattern, 1, StringHelper::byteLength($pattern));
696
        }
697
698 7
        if (StringHelper::byteLength($pattern) && StringHelper::byteSubstring($pattern, -1, 1) === '/') {
699
            $pattern = StringHelper::byteSubstring($pattern, 0, -1);
700
            $result['flags'] |= self::PATTERN_MUST_BE_DIR;
701
        }
702
703 7
        $result = static::isPatternNoDir($pattern, $result);
704
705 7
        $result['firstWildcard'] = self::firstWildcardInPattern($pattern);
706
707 7
        $result = static::isPatternEndsWith($pattern, $result);
708
709 7
        $result['pattern'] = $pattern;
710
711 7
        return $result;
712
    }
713
714
    /**
715
     * Check isCaseInsensitive.
716
     *
717
     * @param boolean $caseSensitive
718
     * @param array $result
719
     *
720
     * @return array
721
     */
722 7
    private static function isCaseInsensitive(bool $caseSensitive, array $result): array
723
    {
724 7
        if (!$caseSensitive) {
725 5
            $result['flags'] |= self::PATTERN_CASE_INSENSITIVE;
726
        }
727
728 7
        return $result;
729
    }
730
731
    /**
732
     * Check pattern no directory.
733
     *
734
     * @param string $pattern
735
     * @param array $result
736
     *
737
     * @return array
738
     */
739 7
    private static function isPatternNoDir(string $pattern, array $result): array
740
    {
741 7
        if (strpos($pattern, '/') === false) {
742 5
            $result['flags'] |= self::PATTERN_NO_DIR;
743
        }
744
745 7
        return $result;
746
    }
747
748
    /**
749
     * Check pattern ends with
750
     *
751
     * @param string $pattern
752
     * @param array $result
753
     *
754
     * @return array
755
     */
756 7
    private static function isPatternEndsWith(string $pattern, array $result): array
757
    {
758 7
        if (strpos($pattern, '*') === 0 && self::firstWildcardInPattern(StringHelper::byteSubstring($pattern, 1, StringHelper::byteLength($pattern))) === false) {
759 5
            $result['flags'] |= self::PATTERN_ENDS_WITH;
760
        }
761
762 7
        return $result;
763
    }
764
}
765