This repository was archived by the owner on Jan 28, 2021. It is now read-only.
forked from modmore/Gitify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUpgradeModxCommand.php
87 lines (68 loc) · 2.58 KB
/
UpgradeModxCommand.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
<?php
namespace modmore\Gitify\Command;
use modmore\Gitify\BaseCommand;
use modmore\Gitify\Mixins\DownloadModx;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class UpgradeModxCommand extends BaseCommand
{
use DownloadModx;
public $loadConfig = false;
public $loadModx = true;
protected function configure()
{
$this
->setName('modx:upgrade')
->setDescription('Downloads, configures and updates the current MODX installation.')
->addArgument(
'version',
InputArgument::OPTIONAL,
'The version of MODX to upgrade, in the format 2.3.2-pl. Leave empty or specify "latest" to install the last stable release.',
'latest'
);
}
protected function execute(InputInterface $input, OutputInterface $output)
{
$version = $this->input->getArgument('version');
if (!$this->download($version)) {
return 1; // exit
}
// Create the XML config
$config = $this->createMODXConfig();
// Variables for running the setup
$tz = date_default_timezone_get();
$wd = GITIFY_WORKING_DIR;
$output->writeln("Running MODX Upgrade...");
// Actually run the CLI setup
exec("php -d date.timezone={$tz} {$wd}setup/index.php --installmode=upgrade --config={$config}", $setupOutput);
$output->writeln($setupOutput[0]);
// Try to clean up the config file
if (!unlink($config)) {
$output->writeln("<warning>Warning:: could not clean up the setup config file, please remove this manually.</warning>");
}
$output->writeln('Done! ' . $this->getRunStats());
return 0;
}
protected function createMODXConfig()
{
$directory = GITIFY_WORKING_DIR;
$config = array(
'inplace' => 1,
'unpacked' => 0,
'language' => $this->modx->getOption('manager_language'),
'core_path' => $this->modx->getOption('core_path'),
'remove_setup_directory' => true
);
$xml = new \DOMDocument('1.0', 'utf-8');
$modx = $xml->createElement('modx');
foreach ($config as $key => $value) {
$modx->appendChild($xml->createElement($key, $value));
}
$xml->appendChild($modx);
$fh = fopen($directory . 'config.xml', "w+");
fwrite($fh, $xml->saveXML());
fclose($fh);
return $directory . 'config.xml';
}
}