Completed
Push — master ( a95984...72cf29 )
by Sebastian
15s queued 10s
created

Collector::isFilenameMatch()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 1
crap 1
1
<?php
2
namespace phpbu\App\Backup;
3
4
use phpbu\App\Util;
5
6
/**
7
 * Collector class.
8
 *
9
 * @package    phpbu
10
 * @subpackage Backup
11
 * @author     Sebastian Feldmann <[email protected]>
12
 * @author     Vitaly Baev <[email protected]>
13
 * @copyright  Sebastian Feldmann <[email protected]>
14
 * @license    https://opensource.org/licenses/MIT The MIT License (MIT)
15
 * @link       http://phpbu.de/
16
 * @since      Class available since Release 5.1.0
17
 */
18
abstract class Collector
19
{
20
    /**
21
     * Path class.
22
     *
23
     * @var Path
24
     */
25
    protected $path;
26
27
    /**
28
     * Backup target
29
     *
30
     * @var \phpbu\App\Backup\Target
31
     */
32
    protected $target;
33
34
    /**
35
     * Target filename regex
36
     *
37
     * @var string
38
     */
39
    protected $fileRegex;
40
41
    /**
42
     * Collection cache
43
     *
44
     * @var \phpbu\App\Backup\File[]
45
     */
46
    protected $files;
47
48
    /**
49
     * Setting up
50
     *
51
     * @param \phpbu\App\Backup\Target $target
52
     */
53 4
    public function setUp(Target $target)
54
    {
55 4
        $this->target    = $target;
56 4
        $this->fileRegex = Util\Path::datePlaceholdersToRegex($target->getFilenameRaw());
57 4
        $this->files     = [];
58 4
    }
59
60
    /**
61
     * Return true if target full path matches file and path regex.
62
     *
63
     * @param string $targetPath Full path to the remote file to check
64
     * @return bool
65
     */
66 3
    protected function isFileMatch(string $targetPath): bool
67
    {
68 3
        $rawPath = Util\Path::withoutLeadingSlash($this->path->getPathRaw());
69 3
        $rawPath = !empty($rawPath) ? Util\Path::withTrailingSlash($rawPath) : $rawPath;
70 3
        $pathRegex = Util\Path::datePlaceholdersToRegex($rawPath);
71 3
        $fileRegex = Util\Path::datePlaceholdersToRegex($this->target->getFilenameRaw());
72 3
        $targetPath = Util\Path::withoutLeadingSlash($targetPath);
73 3
        return preg_match('#' . $pathRegex . $fileRegex . '$#i', $targetPath);
74
    }
75
76
    /**
77
     * Returns true if filename matches the target regex
78
     *
79
     * @param string $filename
80
     * @return bool
81
     */
82 11
    protected function isFilenameMatch(string $filename): bool
83
    {
84 11
        return preg_match('#' . $this->fileRegex . '#i', $filename);
85
    }
86
87
    /**
88
     * @return Path
89
     */
90 1
    public function getPath(): Path
91
    {
92 1
        return $this->path;
93
    }
94
95
    /**
96
     * Get all created backups.
97
     *
98
     * @return \phpbu\App\Backup\File[]
99
     */
100
    abstract public function getBackupFiles() : array;
101
}
102