1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace N98\Magento\Command\System\Check\Filesystem; |
4
|
|
|
|
5
|
|
|
use N98\Magento\Command\CommandAware; |
6
|
|
|
use N98\Magento\Command\CommandConfigAware; |
7
|
|
|
use N98\Magento\Command\System\Check\Result; |
8
|
|
|
use N98\Magento\Command\System\Check\ResultCollection; |
9
|
|
|
use N98\Magento\Command\System\Check\SimpleCheck; |
10
|
|
|
use N98\Magento\Command\System\CheckCommand; |
11
|
|
|
use Symfony\Component\Console\Command\Command; |
12
|
|
|
|
13
|
|
|
class FoldersCheck implements SimpleCheck, CommandAware, CommandConfigAware |
14
|
|
|
{ |
15
|
|
|
/** |
16
|
|
|
* @var array |
17
|
|
|
*/ |
18
|
|
|
protected $_commandConfig; |
19
|
|
|
|
20
|
|
|
/** |
21
|
|
|
* @var CheckCommand |
22
|
|
|
*/ |
23
|
|
|
protected $_checkCommand; |
24
|
|
|
|
25
|
|
|
/** |
26
|
|
|
* @param ResultCollection $results |
27
|
|
|
*/ |
28
|
|
|
public function check(ResultCollection $results) |
29
|
|
|
{ |
30
|
|
|
$folders = $this->_commandConfig['filesystem']['folders']; |
31
|
|
|
$magentoRoot = $this->_checkCommand->getApplication()->getMagentoRootFolder(); |
32
|
|
|
|
33
|
|
|
foreach ($folders as $folder => $comment) { |
34
|
|
|
$result = $results->createResult(); |
35
|
|
|
if (file_exists($magentoRoot . DIRECTORY_SEPARATOR . $folder)) { |
36
|
|
|
$result->setStatus(Result::STATUS_OK); |
37
|
|
|
$result->setMessage("<info>Folder <comment>" . $folder . "</comment> found.</info>"); |
38
|
|
|
if (!is_writeable($magentoRoot . DIRECTORY_SEPARATOR . $folder)) { |
39
|
|
|
$result->setStatus(Result::STATUS_ERROR); |
40
|
|
|
$result->setMessage( |
41
|
|
|
"<error>Folder " . $folder . " is not writeable!</error><comment> Usage: " . $comment . |
42
|
|
|
"</comment>" |
43
|
|
|
); |
44
|
|
|
} |
45
|
|
View Code Duplication |
} else { |
|
|
|
|
46
|
|
|
$result->setStatus(Result::STATUS_ERROR); |
47
|
|
|
$result->setMessage( |
48
|
|
|
"<error>Folder " . $folder . " not found!</error><comment> Usage: " . $comment . "</comment>" |
49
|
|
|
); |
50
|
|
|
} |
51
|
|
|
} |
52
|
|
|
} |
53
|
|
|
|
54
|
|
|
/** |
55
|
|
|
* @param array $commandConfig |
56
|
|
|
*/ |
57
|
|
|
public function setCommandConfig(array $commandConfig) |
58
|
|
|
{ |
59
|
|
|
$this->_commandConfig = $commandConfig; |
60
|
|
|
} |
61
|
|
|
|
62
|
|
|
/** |
63
|
|
|
* @param Command $command |
64
|
|
|
*/ |
65
|
|
|
public function setCommand(Command $command) |
66
|
|
|
{ |
67
|
|
|
$this->_checkCommand = $command; |
|
|
|
|
68
|
|
|
} |
69
|
|
|
} |
70
|
|
|
|
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.