-
Notifications
You must be signed in to change notification settings - Fork 0
/
AbstractCommand.php
104 lines (91 loc) · 2.64 KB
/
AbstractCommand.php
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
<?php
namespace Babymarkt\Composer\Cleaner;
use Composer\Command\BaseCommand;
use Composer\Util\Filesystem;
use Composer\Util\ProcessExecutor;
abstract class AbstractCommand extends BaseCommand
{
const EXTRA_CONFIG_KEY = 'babymarkt:cleaner';
/**
* @var Cleaner
*/
private $cleaner;
protected static $defaultConfig = array(
self::EXTRA_CONFIG_KEY => array(
'default' => array(
// Default pattern to clean up.
'pattern' => array(
'README*',
'CHANGELOG*',
'FAQ*',
'CONTRIBUTING*',
'HISTORY*',
'UPGRADING*',
'UPGRADE*',
'package*',
'demo',
'example',
'examples',
'doc',
'docs',
'readme*',
'changelog*',
'composer*',
'.travis.yml',
'.scrutinizer.yml',
'phpcs.xml*',
'phpcs.php',
'phpunit.xml*',
'phpunit.php',
'test',
'tests',
'Tests',
'travis',
'patchwork.json'
),
// The paths to search in.
"paths" => array(),
// Pattern to be excluded from clean up
"exclude" => array()
)
)
);
/**
* A Cleaner factory.
* @return Cleaner
*/
public function getCleaner()
{
if ($this->cleaner === null) {
$config = array_replace_recursive(
self::$defaultConfig,
$this->getComposer()->getPackage()->getExtra()
);
$executor = new ProcessExecutor($this->getIO());
$filesystem = new Filesystem($executor);
$this->cleaner = new Cleaner($filesystem, $this->buildContexts($config[self::EXTRA_CONFIG_KEY]));
}
return $this->cleaner;
}
/**
* Sets the cleaner instance.
* @param Cleaner $cleaner
*/
public function setCleaner(Cleaner $cleaner)
{
$this->cleaner = $cleaner;
return $this;
}
/**
* @param array $config
* @return array|Context[]
*/
protected function buildContexts(array $config)
{
$contexts = array();
foreach ($config as $name => $values) {
$contexts[] = new Context($values, $name);
}
return $contexts;
}
}