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
|
<?php
/**
* Copyright (c) 2013 Owen Winkler <ringmaster@midnightcircus.com>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
namespace OC\Core\Command;
use OC\Updater;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
class Upgrade extends Command {
const ERROR_SUCCESS = 0;
const ERROR_NOT_INSTALLED = 1;
const ERROR_MAINTENANCE_MODE = 2;
const ERROR_UP_TO_DATE = 3;
protected function configure() {
$this
->setName('upgrade')
->setDescription('run upgrade routines')
;
}
protected function execute(InputInterface $input, OutputInterface $output) {
global $RUNTIME_NOAPPS;
$RUNTIME_NOAPPS = true; //no apps, yet
require_once \OC::$SERVERROOT . '/lib/base.php';
// Don't do anything if ownCloud has not been installed
if(!\OC_Config::getValue('installed', false)) {
$output->write('ownCloud has not yet been installed', true);
return self::ERROR_NOT_INSTALLED;
}
if(\OC::checkUpgrade(false)) {
$updater = new Updater();
$updater->listen('\OC\Updater', 'maintenanceStart', function () use($output) {
$output->write('Turned on maintenance mode', true);
});
$updater->listen('\OC\Updater', 'maintenanceEnd', function () use($output) {
$output->write('Turned off maintenance mode', true);
$output->write('Update successful', true);
});
$updater->listen('\OC\Updater', 'dbUpgrade', function () use($output) {
$output->write('Updated database', true);
});
$updater->listen('\OC\Updater', 'filecacheStart', function () use($output) {
$output->write('Updating filecache, this may take really long...', true);
});
$updater->listen('\OC\Updater', 'filecacheDone', function () use($output) {
$output->write('Updated filecache', true);
});
$updater->listen('\OC\Updater', 'filecacheProgress', function ($out) use($output) {
$output->write('... ' . $out . '% done ...', true);
});
$updater->listen('\OC\Updater', 'failure', function ($message) use($output) {
$output->write($message, true);
\OC_Config::setValue('maintenance', false);
});
$updater->upgrade();
return self::ERROR_SUCCESS;
} else {
if(\OC_Config::getValue('maintenance', false)) {
//Possible scenario: ownCloud core is updated but an app failed
$output->write('ownCloud is in maintenance mode', true);
$output->write('Maybe an upgrade is already in process. Please check the '
. 'logfile (data/owncloud.log). If you want to re-run the '
. 'upgrade procedure, remove the "maintenance mode" from '
. 'config.php and call this script again.'
, true);
return self::ERROR_MAINTENANCE_MODE;
} else {
$output->write('ownCloud is already latest version', true);
return self::ERROR_UP_TO_DATE;
}
}
}
}
|