Example #1
0
 /**
  * @return array
  */
 public function getUpdateState()
 {
     $data = $this->updater->check();
     $result = [];
     if (isset($data['version']) && $data['version'] !== '' && $data['version'] !== []) {
         $result['updateAvailable'] = true;
         $result['updateVersion'] = $data['versionstring'];
         if (substr($data['web'], 0, 8) === 'https://') {
             $result['updateLink'] = $data['web'];
         }
         return $result;
     }
     return [];
 }
Example #2
0
 public function testSetSkip3rdPartyAppsDisable()
 {
     $this->updater->setSkip3rdPartyAppsDisable(true);
     $this->assertSame(true, $this->invokePrivate($this->updater, 'skip3rdPartyAppsDisable'));
     $this->updater->setSkip3rdPartyAppsDisable(false);
     $this->assertSame(false, $this->invokePrivate($this->updater, 'skip3rdPartyAppsDisable'));
 }
Example #3
0
 /**
  * Execute the upgrade command
  *
  * @param InputInterface $input input interface
  * @param OutputInterface $output output interface
  */
 protected function execute(InputInterface $input, OutputInterface $output)
 {
     $simulateStepEnabled = true;
     $updateStepEnabled = true;
     if ($input->getOption('skip-migration-test')) {
         $simulateStepEnabled = false;
     }
     if ($input->getOption('dry-run')) {
         $updateStepEnabled = false;
     }
     if (!$simulateStepEnabled && !$updateStepEnabled) {
         $output->writeln('<error>Only one of "--skip-migration-test" or "--dry-run" ' . 'can be specified at a time.</error>');
         return self::ERROR_INVALID_ARGUMENTS;
     }
     if (\OC::checkUpgrade(false)) {
         $self = $this;
         $updater = new Updater(\OC::$server->getHTTPHelper(), \OC::$server->getAppConfig());
         $updater->setSimulateStepEnabled($simulateStepEnabled);
         $updater->setUpdateStepEnabled($updateStepEnabled);
         $updater->listen('\\OC\\Updater', 'maintenanceStart', function () use($output) {
             $output->writeln('<info>Turned on maintenance mode</info>');
         });
         $updater->listen('\\OC\\Updater', 'maintenanceEnd', function () use($output, $updateStepEnabled, $self) {
             $output->writeln('<info>Turned off maintenance mode</info>');
             $mode = $updateStepEnabled ? 'Update' : 'Update simulation';
             $status = $self->upgradeFailed ? 'failed' : 'successful';
             $message = "<info>{$mode} {$status}</info>";
             $output->writeln($message);
         });
         $updater->listen('\\OC\\Updater', 'dbUpgrade', function () use($output) {
             $output->writeln('<info>Updated database</info>');
         });
         $updater->listen('\\OC\\Updater', 'dbSimulateUpgrade', function () use($output) {
             $output->writeln('<info>Checked database schema update</info>');
         });
         $updater->listen('\\OC\\Updater', 'disabledApps', function ($appList) use($output) {
             $output->writeln('<info>Disabled incompatible apps: ' . implode(', ', $appList) . '</info>');
         });
         $updater->listen('\\OC\\Updater', 'failure', function ($message) use($output, $self) {
             $output->writeln("<error>{$message}</error>");
             $self->upgradeFailed = true;
         });
         $updater->upgrade();
         $this->postUpgradeCheck($input, $output);
         return self::ERROR_SUCCESS;
     } else {
         if ($this->config->getSystemValue('maintenance', false)) {
             //Possible scenario: ownCloud core is updated but an app failed
             $output->writeln('<warning>ownCloud is in maintenance mode</warning>');
             $output->write('<comment>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.</comment>', true);
             return self::ERROR_MAINTENANCE_MODE;
         } else {
             $output->writeln('<info>ownCloud is already latest version</info>');
             return self::ERROR_UP_TO_DATE;
         }
     }
 }
Example #4
0
 /**
  * Execute the upgrade command
  *
  * @param InputInterface $input input interface
  * @param OutputInterface $output output interface
  */
 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->writeln('<error>ownCloud has not yet been installed</error>');
         return self::ERROR_NOT_INSTALLED;
     }
     if (\OC::checkUpgrade(false)) {
         $updater = new Updater();
         $updater->listen('\\OC\\Updater', 'maintenanceStart', function () use($output) {
             $output->writeln('<info>Turned on maintenance mode</info>');
         });
         $updater->listen('\\OC\\Updater', 'maintenanceEnd', function () use($output) {
             $output->writeln('<info>Turned off maintenance mode</info>');
             $output->writeln('<info>Update successful</info>');
         });
         $updater->listen('\\OC\\Updater', 'dbUpgrade', function () use($output) {
             $output->writeln('<info>Updated database</info>');
         });
         $updater->listen('\\OC\\Updater', 'filecacheStart', function () use($output) {
             $output->writeln('<info>Updating filecache, this may take really long...</info>');
         });
         $updater->listen('\\OC\\Updater', 'filecacheDone', function () use($output) {
             $output->writeln('<info>Updated filecache</info>');
         });
         $updater->listen('\\OC\\Updater', 'filecacheProgress', function ($out) use($output) {
             $output->writeln('... ' . $out . '% done ...');
         });
         $updater->listen('\\OC\\Updater', 'failure', function ($message) use($output) {
             $output->writeln($message);
             \OC_Config::setValue('maintenance', false);
         });
         $updater->upgrade();
         $this->postUpgradeCheck($input, $output);
         return self::ERROR_SUCCESS;
     } else {
         if (\OC_Config::getValue('maintenance', false)) {
             //Possible scenario: ownCloud core is updated but an app failed
             $output->writeln('<warning>ownCloud is in maintenance mode</warning>');
             $output->write('<comment>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.</comment>', true);
             return self::ERROR_MAINTENANCE_MODE;
         } else {
             $output->writeln('<info>ownCloud is already latest version</info>');
             return self::ERROR_UP_TO_DATE;
         }
     }
 }
Example #5
0
 public function testCheckWithEmptyInvalidXmlResponse()
 {
     $expectedResult = [];
     $this->config->expects($this->at(0))->method('getAppValue')->with('core', 'lastupdatedat')->will($this->returnValue(0));
     $this->config->expects($this->at(1))->method('setAppValue')->with('core', 'lastupdatedat', $this->isType('integer'));
     $this->config->expects($this->at(3))->method('getAppValue')->with('core', 'installedat')->will($this->returnValue('installedat'));
     $this->config->expects($this->at(4))->method('getAppValue')->with('core', 'lastupdatedat')->will($this->returnValue('lastupdatedat'));
     $this->config->expects($this->at(5))->method('setAppValue')->with('core', 'lastupdateResult', json_encode($expectedResult));
     $updateXml = '';
     $this->httpHelper->expects($this->once())->method('getUrlContent')->with($this->buildUpdateUrl('https://updates.owncloud.com/server/'))->will($this->returnValue($updateXml));
     $this->assertSame($expectedResult, $this->updater->check());
 }
 public function testGetUpdateStateWithoutUpdate()
 {
     $this->updater->expects($this->once())->method('check')->willReturn([]);
     $expected = [];
     $this->assertSame($expected, $this->updateChecker->getUpdateState());
 }
Example #7
0
 /**
  * Execute the upgrade command
  *
  * @param InputInterface $input input interface
  * @param OutputInterface $output output interface
  */
 protected function execute(InputInterface $input, OutputInterface $output)
 {
     $simulateStepEnabled = true;
     $updateStepEnabled = true;
     $skip3rdPartyAppsDisable = false;
     if ($input->getOption('skip-migration-test')) {
         $simulateStepEnabled = false;
     }
     if ($input->getOption('dry-run')) {
         $updateStepEnabled = false;
     }
     if ($input->getOption('no-app-disable')) {
         $skip3rdPartyAppsDisable = true;
     }
     if (!$simulateStepEnabled && !$updateStepEnabled) {
         $output->writeln('<error>Only one of "--skip-migration-test" or "--dry-run" ' . 'can be specified at a time.</error>');
         return self::ERROR_INVALID_ARGUMENTS;
     }
     if (\OC::checkUpgrade(false)) {
         if (OutputInterface::VERBOSITY_NORMAL < $output->getVerbosity()) {
             // Prepend each line with a little timestamp
             $timestampFormatter = new TimestampFormatter($this->config, $output->getFormatter());
             $output->setFormatter($timestampFormatter);
         }
         $self = $this;
         $updater = new Updater($this->config, \OC::$server->getIntegrityCodeChecker(), $this->logger);
         $updater->setSimulateStepEnabled($simulateStepEnabled);
         $updater->setUpdateStepEnabled($updateStepEnabled);
         $updater->setSkip3rdPartyAppsDisable($skip3rdPartyAppsDisable);
         $dispatcher = \OC::$server->getEventDispatcher();
         $progress = new ProgressBar($output);
         $progress->setFormat(" %message%\n %current%/%max% [%bar%] %percent:3s%%");
         $listener = function ($event) use($progress, $output) {
             if ($event instanceof GenericEvent) {
                 $message = $event->getSubject();
                 if (OutputInterface::VERBOSITY_NORMAL < $output->getVerbosity()) {
                     $output->writeln(' Checking table ' . $message);
                 } else {
                     if (strlen($message) > 60) {
                         $message = substr($message, 0, 57) . '...';
                     }
                     $progress->setMessage($message);
                     if ($event[0] === 1) {
                         $output->writeln('');
                         $progress->start($event[1]);
                     }
                     $progress->setProgress($event[0]);
                     if ($event[0] === $event[1]) {
                         $progress->setMessage('Done');
                         $progress->finish();
                         $output->writeln('');
                     }
                 }
             }
         };
         $repairListener = function ($event) use($progress, $output) {
             if (!$event instanceof GenericEvent) {
                 return;
             }
             switch ($event->getSubject()) {
                 case '\\OC\\Repair::startProgress':
                     $progress->setMessage('Starting ...');
                     $output->writeln($event->getArgument(1));
                     $output->writeln('');
                     $progress->start($event->getArgument(0));
                     break;
                 case '\\OC\\Repair::advance':
                     $desc = $event->getArgument(1);
                     if (!empty($desc)) {
                         $progress->setMessage($desc);
                     }
                     $progress->advance($event->getArgument(0));
                     break;
                 case '\\OC\\Repair::finishProgress':
                     $progress->setMessage('Done');
                     $progress->finish();
                     $output->writeln('');
                     break;
                 case '\\OC\\Repair::step':
                     if (OutputInterface::VERBOSITY_NORMAL < $output->getVerbosity()) {
                         $output->writeln('<info>Repair step: ' . $event->getArgument(0) . '</info>');
                     }
                     break;
                 case '\\OC\\Repair::info':
                     if (OutputInterface::VERBOSITY_NORMAL < $output->getVerbosity()) {
                         $output->writeln('<info>Repair info: ' . $event->getArgument(0) . '</info>');
                     }
                     break;
                 case '\\OC\\Repair::warning':
                     $output->writeln('<error>Repair warning: ' . $event->getArgument(0) . '</error>');
                     break;
                 case '\\OC\\Repair::error':
                     $output->writeln('<error>Repair error: ' . $event->getArgument(0) . '</error>');
                     break;
             }
         };
         $dispatcher->addListener('\\OC\\DB\\Migrator::executeSql', $listener);
         $dispatcher->addListener('\\OC\\DB\\Migrator::checkTable', $listener);
         $dispatcher->addListener('\\OC\\Repair::startProgress', $repairListener);
         $dispatcher->addListener('\\OC\\Repair::advance', $repairListener);
         $dispatcher->addListener('\\OC\\Repair::finishProgress', $repairListener);
         $dispatcher->addListener('\\OC\\Repair::step', $repairListener);
         $dispatcher->addListener('\\OC\\Repair::info', $repairListener);
         $dispatcher->addListener('\\OC\\Repair::warning', $repairListener);
         $dispatcher->addListener('\\OC\\Repair::error', $repairListener);
         $updater->listen('\\OC\\Updater', 'maintenanceEnabled', function () use($output) {
             $output->writeln('<info>Turned on maintenance mode</info>');
         });
         $updater->listen('\\OC\\Updater', 'maintenanceDisabled', function () use($output) {
             $output->writeln('<info>Turned off maintenance mode</info>');
         });
         $updater->listen('\\OC\\Updater', 'maintenanceActive', function () use($output) {
             $output->writeln('<info>Maintenance mode is kept active</info>');
         });
         $updater->listen('\\OC\\Updater', 'updateEnd', function ($success) use($output, $updateStepEnabled, $self) {
             $mode = $updateStepEnabled ? 'Update' : 'Update simulation';
             if ($success) {
                 $message = "<info>{$mode} successful</info>";
             } else {
                 $message = "<error>{$mode} failed</error>";
             }
             $output->writeln($message);
         });
         $updater->listen('\\OC\\Updater', 'dbUpgradeBefore', function () use($output) {
             $output->writeln('<info>Updating database schema</info>');
         });
         $updater->listen('\\OC\\Updater', 'dbUpgrade', function () use($output) {
             $output->writeln('<info>Updated database</info>');
         });
         $updater->listen('\\OC\\Updater', 'dbSimulateUpgradeBefore', function () use($output) {
             $output->writeln('<info>Checking whether the database schema can be updated (this can take a long time depending on the database size)</info>');
         });
         $updater->listen('\\OC\\Updater', 'dbSimulateUpgrade', function () use($output) {
             $output->writeln('<info>Checked database schema update</info>');
         });
         $updater->listen('\\OC\\Updater', 'incompatibleAppDisabled', function ($app) use($output) {
             $output->writeln('<info>Disabled incompatible app: ' . $app . '</info>');
         });
         $updater->listen('\\OC\\Updater', 'thirdPartyAppDisabled', function ($app) use($output) {
             $output->writeln('<info>Disabled 3rd-party app: ' . $app . '</info>');
         });
         $updater->listen('\\OC\\Updater', 'upgradeAppStoreApp', function ($app) use($output) {
             $output->writeln('<info>Update 3rd-party app: ' . $app . '</info>');
         });
         $updater->listen('\\OC\\Updater', 'appUpgradeCheckBefore', function () use($output) {
             $output->writeln('<info>Checking updates of apps</info>');
         });
         $updater->listen('\\OC\\Updater', 'appSimulateUpdate', function ($app) use($output) {
             $output->writeln("<info>Checking whether the database schema for <{$app}> can be updated (this can take a long time depending on the database size)</info>");
         });
         $updater->listen('\\OC\\Updater', 'appUpgradeCheck', function () use($output) {
             $output->writeln('<info>Checked database schema update for apps</info>');
         });
         $updater->listen('\\OC\\Updater', 'appUpgradeStarted', function ($app, $version) use($output) {
             $output->writeln("<info>Updating <{$app}> ...</info>");
         });
         $updater->listen('\\OC\\Updater', 'appUpgrade', function ($app, $version) use($output) {
             $output->writeln("<info>Updated <{$app}> to {$version}</info>");
         });
         $updater->listen('\\OC\\Updater', 'failure', function ($message) use($output, $self) {
             $output->writeln("<error>{$message}</error>");
         });
         $updater->listen('\\OC\\Updater', 'setDebugLogLevel', function ($logLevel, $logLevelName) use($output) {
             $output->writeln("<info>Set log level to debug</info>");
         });
         $updater->listen('\\OC\\Updater', 'resetLogLevel', function ($logLevel, $logLevelName) use($output) {
             $output->writeln("<info>Reset log level</info>");
         });
         $updater->listen('\\OC\\Updater', 'startCheckCodeIntegrity', function () use($output) {
             $output->writeln("<info>Starting code integrity check...</info>");
         });
         $updater->listen('\\OC\\Updater', 'finishedCheckCodeIntegrity', function () use($output) {
             $output->writeln("<info>Finished code integrity check</info>");
         });
         $success = $updater->upgrade();
         $this->postUpgradeCheck($input, $output);
         if (!$success) {
             return self::ERROR_FAILURE;
         }
         return self::ERROR_SUCCESS;
     } else {
         if ($this->config->getSystemValue('maintenance', false)) {
             //Possible scenario: ownCloud core is updated but an app failed
             $output->writeln('<warning>ownCloud is in maintenance mode</warning>');
             $output->write('<comment>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.</comment>', true);
             return self::ERROR_MAINTENANCE_MODE;
         } else {
             $output->writeln('<info>ownCloud is already latest version</info>');
             return self::ERROR_UP_TO_DATE;
         }
     }
 }
Example #8
0
 /**
  * Execute the upgrade command
  *
  * @param InputInterface $input input interface
  * @param OutputInterface $output output interface
  */
 protected function execute(InputInterface $input, OutputInterface $output)
 {
     $simulateStepEnabled = true;
     $updateStepEnabled = true;
     $skip3rdPartyAppsDisable = false;
     if ($this->config->getSystemValue('update.skip-migration-test', false)) {
         $output->writeln('<info>"skip-migration-test" is activated via config.php</info>');
         $simulateStepEnabled = false;
     }
     if ($input->getOption('skip-migration-test')) {
         $simulateStepEnabled = false;
     }
     if ($input->getOption('dry-run')) {
         $updateStepEnabled = false;
     }
     if ($input->getOption('no-app-disable')) {
         $skip3rdPartyAppsDisable = true;
     }
     if (!$simulateStepEnabled && !$updateStepEnabled) {
         $output->writeln('<error>Only one of "--skip-migration-test" or "--dry-run" ' . 'can be specified at a time.</error>');
         return self::ERROR_INVALID_ARGUMENTS;
     }
     if (\OC::checkUpgrade(false)) {
         if (OutputInterface::VERBOSITY_NORMAL < $output->getVerbosity()) {
             // Prepend each line with a little timestamp
             $timestampFormatter = new TimestampFormatter($this->config, $output->getFormatter());
             $output->setFormatter($timestampFormatter);
         }
         $self = $this;
         $updater = new Updater(\OC::$server->getHTTPHelper(), $this->config, \OC::$server->getIntegrityCodeChecker(), $this->logger);
         $updater->setSimulateStepEnabled($simulateStepEnabled);
         $updater->setUpdateStepEnabled($updateStepEnabled);
         $updater->setSkip3rdPartyAppsDisable($skip3rdPartyAppsDisable);
         $updater->listen('\\OC\\Updater', 'maintenanceEnabled', function () use($output) {
             $output->writeln('<info>Turned on maintenance mode</info>');
         });
         $updater->listen('\\OC\\Updater', 'maintenanceDisabled', function () use($output) {
             $output->writeln('<info>Turned off maintenance mode</info>');
         });
         $updater->listen('\\OC\\Updater', 'maintenanceActive', function () use($output) {
             $output->writeln('<info>Maintenance mode is kept active</info>');
         });
         $updater->listen('\\OC\\Updater', 'updateEnd', function ($success) use($output, $updateStepEnabled, $self) {
             $mode = $updateStepEnabled ? 'Update' : 'Update simulation';
             if ($success) {
                 $message = "<info>{$mode} successful</info>";
             } else {
                 $message = "<error>{$mode} failed</error>";
             }
             $output->writeln($message);
         });
         $updater->listen('\\OC\\Updater', 'dbUpgradeBefore', function () use($output) {
             $output->writeln('<info>Updating database schema</info>');
         });
         $updater->listen('\\OC\\Updater', 'dbUpgrade', function () use($output) {
             $output->writeln('<info>Updated database</info>');
         });
         $updater->listen('\\OC\\Updater', 'dbSimulateUpgradeBefore', function () use($output) {
             $output->writeln('<info>Checking whether the database schema can be updated (this can take a long time depending on the database size)</info>');
         });
         $updater->listen('\\OC\\Updater', 'dbSimulateUpgrade', function () use($output) {
             $output->writeln('<info>Checked database schema update</info>');
         });
         $updater->listen('\\OC\\Updater', 'incompatibleAppDisabled', function ($app) use($output) {
             $output->writeln('<info>Disabled incompatible app: ' . $app . '</info>');
         });
         $updater->listen('\\OC\\Updater', 'thirdPartyAppDisabled', function ($app) use($output) {
             $output->writeln('<info>Disabled 3rd-party app: ' . $app . '</info>');
         });
         $updater->listen('\\OC\\Updater', 'upgradeAppStoreApp', function ($app) use($output) {
             $output->writeln('<info>Update 3rd-party app: ' . $app . '</info>');
         });
         $updater->listen('\\OC\\Updater', 'repairWarning', function ($app) use($output) {
             $output->writeln('<error>Repair warning: ' . $app . '</error>');
         });
         $updater->listen('\\OC\\Updater', 'repairError', function ($app) use($output) {
             $output->writeln('<error>Repair error: ' . $app . '</error>');
         });
         $updater->listen('\\OC\\Updater', 'appUpgradeCheckBefore', function () use($output) {
             $output->writeln('<info>Checking updates of apps</info>');
         });
         $updater->listen('\\OC\\Updater', 'appSimulateUpdate', function ($app) use($output) {
             $output->writeln("<info>Checking whether the database schema for <{$app}> can be updated (this can take a long time depending on the database size)</info>");
         });
         $updater->listen('\\OC\\Updater', 'appUpgradeCheck', function () use($output) {
             $output->writeln('<info>Checked database schema update for apps</info>');
         });
         $updater->listen('\\OC\\Updater', 'appUpgradeStarted', function ($app, $version) use($output) {
             $output->writeln("<info>Updating <{$app}> ...</info>");
         });
         $updater->listen('\\OC\\Updater', 'appUpgrade', function ($app, $version) use($output) {
             $output->writeln("<info>Updated <{$app}> to {$version}</info>");
         });
         $updater->listen('\\OC\\Updater', 'failure', function ($message) use($output, $self) {
             $output->writeln("<error>{$message}</error>");
         });
         $updater->listen('\\OC\\Updater', 'setDebugLogLevel', function ($logLevel, $logLevelName) use($output) {
             $output->writeln("<info>Set log level to debug</info>");
         });
         $updater->listen('\\OC\\Updater', 'resetLogLevel', function ($logLevel, $logLevelName) use($output) {
             $output->writeln("<info>Reset log level</info>");
         });
         $updater->listen('\\OC\\Updater', 'startCheckCodeIntegrity', function () use($output) {
             $output->writeln("<info>Starting code integrity check...</info>");
         });
         $updater->listen('\\OC\\Updater', 'finishedCheckCodeIntegrity', function () use($output) {
             $output->writeln("<info>Finished code integrity check</info>");
         });
         if (OutputInterface::VERBOSITY_NORMAL < $output->getVerbosity()) {
             $updater->listen('\\OC\\Updater', 'repairInfo', function ($message) use($output) {
                 $output->writeln('<info>Repair info: ' . $message . '</info>');
             });
             $updater->listen('\\OC\\Updater', 'repairStep', function ($message) use($output) {
                 $output->writeln('<info>Repair step: ' . $message . '</info>');
             });
         }
         $success = $updater->upgrade();
         $this->postUpgradeCheck($input, $output);
         if (!$success) {
             return self::ERROR_FAILURE;
         }
         return self::ERROR_SUCCESS;
     } else {
         if ($this->config->getSystemValue('maintenance', false)) {
             //Possible scenario: ownCloud core is updated but an app failed
             $output->writeln('<warning>ownCloud is in maintenance mode</warning>');
             $output->write('<comment>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.</comment>', true);
             return self::ERROR_MAINTENANCE_MODE;
         } else {
             $output->writeln('<info>ownCloud is already latest version</info>');
             return self::ERROR_UP_TO_DATE;
         }
     }
 }
Example #9
0
 /**
  * Execute the upgrade command
  *
  * @param InputInterface $input input interface
  * @param OutputInterface $output output interface
  */
 protected function execute(InputInterface $input, OutputInterface $output)
 {
     $simulateStepEnabled = true;
     $updateStepEnabled = true;
     $skip3rdPartyAppsDisable = false;
     if ($input->getOption('skip-migration-test')) {
         $simulateStepEnabled = false;
     }
     if ($input->getOption('dry-run')) {
         $updateStepEnabled = false;
     }
     if ($input->getOption('no-app-disable')) {
         $skip3rdPartyAppsDisable = true;
     }
     if (!$simulateStepEnabled && !$updateStepEnabled) {
         $output->writeln('<error>Only one of "--skip-migration-test" or "--dry-run" ' . 'can be specified at a time.</error>');
         return self::ERROR_INVALID_ARGUMENTS;
     }
     if (\OC::checkUpgrade(false)) {
         $self = $this;
         $updater = new Updater(\OC::$server->getHTTPHelper(), \OC::$server->getConfig());
         $updater->setSimulateStepEnabled($simulateStepEnabled);
         $updater->setUpdateStepEnabled($updateStepEnabled);
         $updater->setSkip3rdPartyAppsDisable($skip3rdPartyAppsDisable);
         $updater->listen('\\OC\\Updater', 'maintenanceEnabled', function () use($output) {
             $output->writeln('<info>Turned on maintenance mode</info>');
         });
         $updater->listen('\\OC\\Updater', 'maintenanceDisabled', function () use($output) {
             $output->writeln('<info>Turned off maintenance mode</info>');
         });
         $updater->listen('\\OC\\Updater', 'maintenanceActive', function () use($output) {
             $output->writeln('<info>Maintenance mode is kept active</info>');
         });
         $updater->listen('\\OC\\Updater', 'updateEnd', function ($success) use($output, $updateStepEnabled, $self) {
             $mode = $updateStepEnabled ? 'Update' : 'Update simulation';
             $status = $success ? 'successful' : 'failed';
             $type = $success ? 'info' : 'error';
             $message = "<{$type}>{$mode} {$status}</{$type}>";
             $output->writeln($message);
         });
         $updater->listen('\\OC\\Updater', 'dbUpgrade', function () use($output) {
             $output->writeln('<info>Updated database</info>');
         });
         $updater->listen('\\OC\\Updater', 'dbSimulateUpgrade', function () use($output) {
             $output->writeln('<info>Checked database schema update</info>');
         });
         $updater->listen('\\OC\\Updater', 'incompatibleAppDisabled', function ($app) use($output) {
             $output->writeln('<info>Disabled incompatible app: ' . $app . '</info>');
         });
         $updater->listen('\\OC\\Updater', 'thirdPartyAppDisabled', function ($app) use($output) {
             $output->writeln('<info>Disabled 3rd-party app: ' . $app . '</info>');
         });
         $updater->listen('\\OC\\Updater', 'upgradeAppStoreApp', function ($app) use($output) {
             $output->writeln('<info>Update 3rd-party app: ' . $app . '</info>');
         });
         $updater->listen('\\OC\\Updater', 'repairWarning', function ($app) use($output) {
             $output->writeln('<error>Repair warning: ' . $app . '</error>');
         });
         $updater->listen('\\OC\\Updater', 'repairError', function ($app) use($output) {
             $output->writeln('<error>Repair error: ' . $app . '</error>');
         });
         $updater->listen('\\OC\\Updater', 'appUpgradeCheck', function () use($output) {
             $output->writeln('<info>Checked database schema update for apps</info>');
         });
         $updater->listen('\\OC\\Updater', 'appUpgradeStarted', function ($app, $version) use($output) {
             $output->writeln("<info>Updating <{$app}> ...</info>");
         });
         $updater->listen('\\OC\\Updater', 'appUpgrade', function ($app, $version) use($output) {
             $output->writeln("<info>Updated <{$app}> to {$version}</info>");
         });
         $updater->listen('\\OC\\Updater', 'failure', function ($message) use($output, $self) {
             $output->writeln("<error>{$message}</error>");
         });
         $success = $updater->upgrade();
         $this->postUpgradeCheck($input, $output);
         if (!$success) {
             return self::ERROR_FAILURE;
         }
         return self::ERROR_SUCCESS;
     } else {
         if ($this->config->getSystemValue('maintenance', false)) {
             //Possible scenario: ownCloud core is updated but an app failed
             $output->writeln('<warning>ownCloud is in maintenance mode</warning>');
             $output->write('<comment>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.</comment>', true);
             return self::ERROR_MAINTENANCE_MODE;
         } else {
             $output->writeln('<info>ownCloud is already latest version</info>');
             return self::ERROR_UP_TO_DATE;
         }
     }
 }
Example #10
0
 /**
  * Execute the upgrade command
  *
  * @param InputInterface $input input interface
  * @param OutputInterface $output output interface
  */
 protected function execute(InputInterface $input, OutputInterface $output)
 {
     require_once \OC::$SERVERROOT . '/lib/base.php';
     // Don't do anything if ownCloud has not been installed
     if (!\OC_Config::getValue('installed', false)) {
         $output->writeln('<error>ownCloud has not yet been installed</error>');
         return self::ERROR_NOT_INSTALLED;
     }
     $simulateStepEnabled = true;
     $updateStepEnabled = true;
     if ($input->getOption('skip-migration-test')) {
         $simulateStepEnabled = false;
     }
     if ($input->getOption('dry-run')) {
         $updateStepEnabled = false;
     }
     if (!$simulateStepEnabled && !$updateStepEnabled) {
         $output->writeln('<error>Only one of "--skip-migration-test" or "--dry-run" ' . 'can be specified at a time.</error>');
         return self::ERROR_INVALID_ARGUMENTS;
     }
     if (\OC::checkUpgrade(false)) {
         $updater = new Updater();
         $updater->setSimulateStepEnabled($simulateStepEnabled);
         $updater->setUpdateStepEnabled($updateStepEnabled);
         $updater->listen('\\OC\\Updater', 'maintenanceStart', function () use($output) {
             $output->writeln('<info>Turned on maintenance mode</info>');
         });
         $updater->listen('\\OC\\Updater', 'maintenanceEnd', function () use($output) {
             $output->writeln('<info>Turned off maintenance mode</info>');
         });
         $updater->listen('\\OC\\Updater', 'updateEnd', function ($success) use($output, $updateStepEnabled, $self) {
             $mode = $updateStepEnabled ? 'Update' : 'Update simulation';
             $status = $success ? 'successful' : 'failed';
             $type = $success ? 'info' : 'error';
             $message = "<{$type}>{$mode} {$status}</{$type}>";
             $output->writeln($message);
         });
         $updater->listen('\\OC\\Updater', 'dbUpgrade', function () use($output) {
             $output->writeln('<info>Updated database</info>');
         });
         $updater->listen('\\OC\\Updater', 'dbSimulateUpgrade', function () use($output) {
             $output->writeln('<info>Checked database schema update</info>');
         });
         $updater->listen('\\OC\\Updater', 'disabledApps', function ($appList) use($output) {
             $output->writeln('<info>Disabled incompatible apps: ' . implode(', ', $appList) . '</info>');
         });
         $updater->listen('\\OC\\Repair', 'info', function ($message) use($output) {
             $output->writeln('<info>Repair info: ' . $message . '</info>');
         });
         $updater->listen('\\OC\\Updater', 'failure', function ($message) use($output) {
             $output->writeln("<error>{$message}</error>");
             \OC_Config::setValue('maintenance', false);
         });
         $updater->listen('\\OC\\Updater', 'setDebugLogLevel', function ($logLevel, $logLevelName) use($output) {
             $output->writeln("<info>Set log level to debug - current level: '{$logLevelName}'</info>");
         });
         $updater->listen('\\OC\\Updater', 'resetLogLevel', function ($logLevel, $logLevelName) use($output) {
             $output->writeln("<info>Reset log level to '{$logLevelName}'</info>");
         });
         $success = $updater->upgrade();
         $this->postUpgradeCheck($input, $output);
         if (!$success) {
             return self::ERROR_FAILURE;
         }
         return self::ERROR_SUCCESS;
     } else {
         if (\OC_Config::getValue('maintenance', false)) {
             //Possible scenario: ownCloud core is updated but an app failed
             $output->writeln('<warning>ownCloud is in maintenance mode</warning>');
             $output->write('<comment>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.</comment>', true);
             return self::ERROR_MAINTENANCE_MODE;
         } else {
             $output->writeln('<info>ownCloud is already latest version</info>');
             return self::ERROR_UP_TO_DATE;
         }
     }
 }