From a24cbb50afb0e4fffd6bd045645607c42dc404cb Mon Sep 17 00:00:00 2001 From: ringmaster Date: Mon, 28 Oct 2013 10:15:56 -0400 Subject: [PATCH] Move all upgrade routines into the command-line tool. --- core/command/upgrade.php | 56 ++++++++++++++++++++++++++++- upgrade.php | 77 ---------------------------------------- 2 files changed, 55 insertions(+), 78 deletions(-) delete mode 100644 upgrade.php diff --git a/core/command/upgrade.php b/core/command/upgrade.php index c6551747d3c..3424c79bf10 100644 --- a/core/command/upgrade.php +++ b/core/command/upgrade.php @@ -8,6 +8,7 @@ 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; @@ -23,6 +24,59 @@ class Upgrade extends Command { } protected function execute(InputInterface $input, OutputInterface $output) { - include \OC::$SERVERROOT . '/upgrade.php'; + 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)) { + echo 'ownCloud has not yet been installed' . PHP_EOL; + exit(0); + } + + if(\OC::checkUpgrade(false)) { + $updater = new Updater(); + + $updater->listen('\OC\Updater', 'maintenanceStart', function () { + echo 'Turned on maintenance mode' . PHP_EOL; + }); + $updater->listen('\OC\Updater', 'maintenanceEnd', function () { + echo 'Turned off maintenance mode' . PHP_EOL; + echo 'Update successful' . PHP_EOL; + }); + $updater->listen('\OC\Updater', 'dbUpgrade', function () { + echo 'Updated database' . PHP_EOL; + }); + $updater->listen('\OC\Updater', 'filecacheStart', function () { + echo 'Updating filecache, this may take really long...' . PHP_EOL; + }); + $updater->listen('\OC\Updater', 'filecacheDone', function () { + echo 'Updated filecache' . PHP_EOL; + }); + $updater->listen('\OC\Updater', 'filecacheProgress', function ($out) { + echo '... ' . $out . '% done ...' . PHP_EOL; + }); + + $updater->listen('\OC\Updater', 'failure', function ($message) { + echo $message . PHP_EOL; + \OC_Config::setValue('maintenance', false); + }); + + $updater->upgrade(); + } else { + if(\OC_Config::getValue('maintenance', false)) { + //Possible scenario: ownCloud core is updated but an app failed + echo 'ownCloud is in maintenance mode' . PHP_EOL; + echo '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.' + . PHP_EOL; + } else { + echo 'ownCloud is already latest version' . PHP_EOL; + } + } } } diff --git a/upgrade.php b/upgrade.php deleted file mode 100644 index 518b514cd8a..00000000000 --- a/upgrade.php +++ /dev/null @@ -1,77 +0,0 @@ -. -* -*/ - -$RUNTIME_NOAPPS = true; //no apps, yet - -require_once 'lib/base.php'; - -// Don't do anything if ownCloud has not been installed -if(!OC_Config::getValue('installed', false)) { - exit(0); -} - -$br = OC::$CLI ? PHP_EOL : '
'; - -if(OC::checkUpgrade(false)) { - $updater = new \OC\Updater(); - - $updater->listen('\OC\Updater', 'maintenanceStart', function () use ($br) { - echo 'Turned on maintenance mode'.$br; - }); - $updater->listen('\OC\Updater', 'maintenanceEnd', function () use ($br) { - echo 'Turned off maintenance mode'.$br; - echo 'Update successful'.$br; - }); - $updater->listen('\OC\Updater', 'dbUpgrade', function () use ($br) { - echo 'Updated database'.$br; - }); - $updater->listen('\OC\Updater', 'filecacheStart', function () use ($br) { - echo 'Updating filecache, this may take really long...'.$br; - }); - $updater->listen('\OC\Updater', 'filecacheDone', function () use ($br) { - echo 'Updated filecache'.$br; - }); - $updater->listen('\OC\Updater', 'filecacheProgress', function ($out) - use ($br) { - echo '... ' . $out . '% done ...'.$br; - }); - - $updater->listen('\OC\Updater', 'failure', function ($message) use ($br) { - echo $message.$br; - OC_Config::setValue('maintenance', false); - }); - - $updater->upgrade(); -} else { - if(OC_Config::getValue('maintenance', false)) { - //Possible scenario: ownCloud core is updated but an app failed - echo 'ownCloud is in maintenance mode'.$br; - echo '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.' - .$br; - } else { - echo 'ownCloud is already latest version'.$br; - } -}