Newer
Older
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
<?php
/**
* Piwik - free/libre analytics platform
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
*/
namespace Piwik\Plugins\CoreConsole\Commands;
use Piwik\View;
use Piwik\Plugin\ConsoleCommand;
use Piwik\Plugins\CoreConsole\TravisYmlView;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Output\OutputInterface;
use Exception;
/**
* Command to generate an self-updating .travis.yml file either for Piwik Core or
* an individual Piwik plugin.
*/
class GenerateTravisYmlFile extends ConsoleCommand
{
protected function configure()
{
$this->setName('generate:travis-yml')
->setDescription('Generates a .travis.yml file for a plugin. The file can be auto-updating based on the parameters supplied.')
->addOption('plugin', null, InputOption::VALUE_REQUIRED, 'The plugin for whom a .travis.yml file should be generated.')
->addOption('core', null, InputOption::VALUE_NONE, 'Supplied when generating the .travis.yml file for Piwik core.'
. ' Should only be used by core developers.')
->addOption('artifacts-pass', null, InputOption::VALUE_REQUIRED,
"Password to the Piwik build artifacts server. Will be encrypted in the .travis.yml file.")
->addOption('github-token', null, InputOption::VALUE_REQUIRED,
"Github token of a user w/ push access to this repository. Used to auto-commit updates to the "
. ".travis.yml file and checkout dependencies. Will be encrypted in the .travis.yml file.\n\n"
. "If not supplied, the .travis.yml will fail the build if it needs updating.")
->addOption('before-install', null, InputOption::VALUE_IS_ARRAY | InputOption::VALUE_OPTIONAL,
"Custom shell command(s) to run at the end of the before_install .travis.yml section.")
->addOption('install', null, InputOption::VALUE_IS_ARRAY | InputOption::VALUE_OPTIONAL,
"Custom shell command(s) to run at the end of the install .travis.yml section.")
->addOption('before-script', null, InputOption::VALUE_IS_ARRAY | InputOption::VALUE_OPTIONAL,
"Custom shell command(s) to run at the end of the before_script .travis.yml section.")
->addOption('after-script', null, InputOption::VALUE_IS_ARRAY | InputOption::VALUE_OPTIONAL,
"Custom shell command(s) to run at the end of the after_script .travis.yml section.")
->addOption('after-success', null, InputOption::VALUE_IS_ARRAY | InputOption::VALUE_OPTIONAL,
"Custom shell command(s) to run at the end of the after_success .travis.yml section.")
->addOption('dump', null, InputOption::VALUE_REQUIRED, "Debugging option. Saves the output .travis.yml to the specified file.");
}
protected function execute(InputInterface $input, OutputInterface $output)
{
$targetPlugin = $input->getOption('plugin');
$artifactsPass = $input->getOption('artifacts-pass');
$githubToken = $input->getOption('github-token');
$outputYmlPath = $this->getTravisYmlOutputPath($input, $targetPlugin);
$thisConsoleCommand = $this->getExecutedConsoleCommandForTravis($input);
$view = new TravisYmlView();
diosmosis
a validé
$output->writeln("<info>Found existing YAML file at $outputYmlPath.</info>");
diosmosis
a validé
$view->processExistingTravisYml($outputYmlPath);
$output->writeln("<info>Could not find existing YAML file at $outputYmlPath, generating a new one.</info>");
diosmosis
a validé
}
$customTravisSteps = array(
'before_install' => $input->getOption('before-install'),
'install' => $input->getOption('install'),
'before_script' => $input->getOption('before-script'),
'after_script' => $input->getOption('after-script'),
'after_success' => $input->getOption('after-success')
);
$view->configure($targetPlugin, $artifactsPass, $githubToken, $thisConsoleCommand, $customTravisSteps, $output);
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
105
106
107
108
109
110
111
112
113
$travisYmlContents = $view->render();
$writePath = $input->getOption('dump');
if (empty($writePath)) {
$writePath = $outputYmlPath;
}
file_put_contents($writePath, $travisYmlContents);
$this->writeSuccessMessage($output, array("Generated .travis.yml file at '$writePath'!"));
}
private function getTravisYmlOutputPath(InputInterface $input, $targetPlugin)
{
if ($input->getOption('core')) {
return PIWIK_INCLUDE_PATH . '/.travis.yml';
} else if ($targetPlugin) {
$pluginDirectory = PIWIK_INCLUDE_PATH . '/plugins/' . $targetPlugin;
if (!is_writable($pluginDirectory)) {
throw new Exception("Cannot write to '$pluginDirectory'!");
}
return $pluginDirectory . '/.travis.yml';
} else {
throw new Exception("Neither --plugin option or --core option specified; don't know where to generate .travis.yml."
. " Execute './console help generate:travis-yml' for more info");
}
}
private function getExecutedConsoleCommandForTravis(InputInterface $input)
{
$command = "php ./console " . $this->getName();
$arguments = $input->getOptions();
unset($arguments['github-token']);
unset($arguments['artifacts-pass']);
unset($arguments['dump']);
foreach ($arguments as $name => $value) {
if ($value === false
|| $value === null
) {
continue;
}
if ($value === true) {
$command .= " --$name";
} else if (is_array($value)) {
foreach ($value as $arrayValue) {
$command .= " --$name=\"" . addslashes($arrayValue) . "\"";
}
} else {
$command .= " --$name=\"" . addslashes($value) . "\"";