-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathToolInstaller.php
80 lines (70 loc) · 2.06 KB
/
ToolInstaller.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
<?php
namespace MacFJA\PHPQAExtensions;
use Symfony\Component\Yaml\Yaml;
use Wikimedia\RelPath;
/**
* Installer
*
* @author MacFJA
* @license MIT
*/
class ToolInstaller
{
/**
* Install a tool.
*
* Read all needed information from the Tools\Analyser class and run composer
*
* @param string $class The Tools\Analyser class name
*/
public function install($class)
{
if (!in_array(ToolDefinition::class, class_implements($class), true)) {
throw new \InvalidArgumentException;
}
$this->runComposer(call_user_func([$class, 'getComposer']));
$this->updatePhpQaConfig(
call_user_func([$class, 'getCliName']),
$class,
call_user_func([$class, 'getReportName'])
);
}
/**
* Run a command `composer require --dev`
* (Use the php function `exec`)
*
* @param string $packageName
*/
public function runComposer($packageName)
{
exec('composer require --dev '.$packageName);
}
/**
* Update the phpqa configuration file in the **Current Working Directory** to add a new tool
*
* @param string $toolName
* @param string $toolClass
* @param string|null $toolReport
*/
public function updatePhpQaConfig($toolName, $toolClass, $toolReport = null)
{
$configPath = getcwd().'/.phpqa.yml';
$config = [];
if (file_exists($configPath)) {
$config = Yaml::parse(file_get_contents($configPath));
}
// Add tools
if (!array_key_exists('tool', $config)) {
$config['tool'] = [];
}
$config['tool'][$toolName] = $toolClass;
if (is_string($toolReport)) {
// Add Report
if (!array_key_exists('report', $config)) {
$config['report'] = [];
}
$config['report'][$toolName] = RelPath::getRelativePath(realpath($toolReport), getcwd());
}
file_put_contents($configPath, Yaml::dump($config));
}
}