123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439 |
- <?php
- /**
- * @author Arthur Schiwon <blizzz@owncloud.com>
- * @author Bart Visscher <bartv@thisnet.nl>
- * @author Björn Schießle <schiessle@owncloud.com>
- * @author Frank Karlitschek <frank@owncloud.org>
- * @author Lukas Reschke <lukas@owncloud.com>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Robin Appelman <icewind@owncloud.com>
- * @author Robin McCorkell <rmccorkell@karoshi.org.uk>
- * @author Thomas Müller <thomas.mueller@tmit.eu>
- * @author Victor Dubiniuk <dubiniuk@owncloud.com>
- * @author Vincent Petry <pvince81@owncloud.com>
- *
- * @copyright Copyright (c) 2015, ownCloud, Inc.
- * @license AGPL-3.0
- *
- * This code is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License, version 3,
- * along with this program. If not, see <http://www.gnu.org/licenses/>
- *
- */
- namespace OC;
- use OC\Hooks\BasicEmitter;
- use OC_App;
- use OC_Installer;
- use OC_Util;
- use OCP\IConfig;
- use OC\Setup;
- use OCP\ILogger;
- /**
- * Class that handles autoupdating of ownCloud
- *
- * Hooks provided in scope \OC\Updater
- * - maintenanceStart()
- * - maintenanceEnd()
- * - dbUpgrade()
- * - failure(string $message)
- */
- class Updater extends BasicEmitter {
- /** @var ILogger $log */
- private $log;
-
- /** @var \OC\HTTPHelper $helper */
- private $httpHelper;
-
- /** @var IConfig */
- private $config;
- /** @var bool */
- private $simulateStepEnabled;
- /** @var bool */
- private $updateStepEnabled;
- /**
- * @param HTTPHelper $httpHelper
- * @param IConfig $config
- * @param ILogger $log
- */
- public function __construct(HTTPHelper $httpHelper, IConfig $config, ILogger $log = null) {
- $this->httpHelper = $httpHelper;
- $this->log = $log;
- $this->config = $config;
- $this->simulateStepEnabled = true;
- $this->updateStepEnabled = true;
- }
- /**
- * Sets whether the database migration simulation must
- * be enabled.
- * This can be set to false to skip this test.
- *
- * @param bool $flag true to enable simulation, false otherwise
- */
- public function setSimulateStepEnabled($flag) {
- $this->simulateStepEnabled = $flag;
- }
- /**
- * Sets whether the update must be performed.
- * This can be set to false to skip the actual update.
- *
- * @param bool $flag true to enable update, false otherwise
- */
- public function setUpdateStepEnabled($flag) {
- $this->updateStepEnabled = $flag;
- }
- /**
- * Check if a new version is available
- *
- * @param string $updaterUrl the url to check, i.e. 'http://apps.owncloud.com/updater.php'
- * @return array|bool
- */
- public function check($updaterUrl = null) {
- // Look up the cache - it is invalidated all 30 minutes
- if (((int)$this->config->getAppValue('core', 'lastupdatedat') + 1800) > time()) {
- return json_decode($this->config->getAppValue('core', 'lastupdateResult'), true);
- }
- if (is_null($updaterUrl)) {
- $updaterUrl = 'https://apps.owncloud.com/updater.php';
- }
- $this->config->setAppValue('core', 'lastupdatedat', time());
- if ($this->config->getAppValue('core', 'installedat', '') == '') {
- $this->config->setAppValue('core', 'installedat', microtime(true));
- }
- $version = \OC_Util::getVersion();
- $version['installed'] = $this->config->getAppValue('core', 'installedat');
- $version['updated'] = $this->config->getAppValue('core', 'lastupdatedat');
- $version['updatechannel'] = \OC_Util::getChannel();
- $version['edition'] = \OC_Util::getEditionString();
- $version['build'] = \OC_Util::getBuild();
- $versionString = implode('x', $version);
- //fetch xml data from updater
- $url = $updaterUrl . '?version=' . $versionString;
- // set a sensible timeout of 10 sec to stay responsive even if the update server is down.
- $tmp = array();
- $xml = $this->httpHelper->getUrlContent($url);
- if ($xml) {
- $loadEntities = libxml_disable_entity_loader(true);
- $data = @simplexml_load_string($xml);
- libxml_disable_entity_loader($loadEntities);
- if ($data !== false) {
- $tmp['version'] = $data->version;
- $tmp['versionstring'] = $data->versionstring;
- $tmp['url'] = $data->url;
- $tmp['web'] = $data->web;
- }
- } else {
- $data = array();
- }
- // Cache the result
- $this->config->setAppValue('core', 'lastupdateResult', json_encode($data));
- return $tmp;
- }
- /**
- * runs the update actions in maintenance mode, does not upgrade the source files
- * except the main .htaccess file
- *
- * @return bool true if the operation succeeded, false otherwise
- */
- public function upgrade() {
- $this->config->setSystemValue('maintenance', true);
- $installedVersion = $this->config->getSystemValue('version', '0.0.0');
- $currentVersion = implode('.', \OC_Util::getVersion());
- if ($this->log) {
- $this->log->debug('starting upgrade from ' . $installedVersion . ' to ' . $currentVersion, array('app' => 'core'));
- }
- $this->emit('\OC\Updater', 'maintenanceStart');
- try {
- $this->doUpgrade($currentVersion, $installedVersion);
- } catch (\Exception $exception) {
- $this->emit('\OC\Updater', 'failure', array($exception->getMessage()));
- }
- $this->config->setSystemValue('maintenance', false);
- $this->emit('\OC\Updater', 'maintenanceEnd');
- }
- /**
- * Whether an upgrade to a specified version is possible
- * @param string $oldVersion
- * @param string $newVersion
- * @return bool
- */
- public function isUpgradePossible($oldVersion, $newVersion) {
- $oldVersion = explode('.', $oldVersion);
- $newVersion = explode('.', $newVersion);
- if($newVersion[0] > ($oldVersion[0] + 1) || $oldVersion[0] > $newVersion[0]) {
- return false;
- }
- return true;
- }
- /**
- * Forward messages emitted by the repair routine
- *
- * @param Repair $repair repair routine
- */
- private function emitRepairMessages(Repair $repair) {
- $repair->listen('\OC\Repair', 'warning', function ($description) {
- $this->emit('\OC\Updater', 'repairWarning', array($description));
- });
- $repair->listen('\OC\Repair', 'error', function ($description) {
- $this->emit('\OC\Updater', 'repairError', array($description));
- });
- }
- /**
- * runs the update actions in maintenance mode, does not upgrade the source files
- * except the main .htaccess file
- *
- * @param string $currentVersion current version to upgrade to
- * @param string $installedVersion previous version from which to upgrade from
- *
- * @throws \Exception
- * @return bool true if the operation succeeded, false otherwise
- */
- private function doUpgrade($currentVersion, $installedVersion) {
- // Stop update if the update is over several major versions
- if (!self::isUpgradePossible($installedVersion, $currentVersion)) {
- throw new \Exception('Updates between multiple major versions are unsupported.');
- }
- // Update .htaccess files
- try {
- Setup::updateHtaccess();
- Setup::protectDataDirectory();
- } catch (\Exception $e) {
- throw new \Exception($e->getMessage());
- }
- // create empty file in data dir, so we can later find
- // out that this is indeed an ownCloud data directory
- // (in case it didn't exist before)
- file_put_contents($this->config->getSystemValue('datadirectory', \OC::$SERVERROOT . '/data') . '/.ocdata', '');
- // pre-upgrade repairs
- $repair = new Repair(Repair::getBeforeUpgradeRepairSteps());
- $this->emitRepairMessages($repair);
- $repair->run();
- // simulate DB upgrade
- if ($this->simulateStepEnabled) {
- $this->checkCoreUpgrade();
- // simulate apps DB upgrade
- $this->checkAppUpgrade($currentVersion);
- }
- if ($this->updateStepEnabled) {
- $this->doCoreUpgrade();
- // update all shipped apps
- $disabledApps = $this->checkAppsRequirements();
- $this->doAppUpgrade();
- // upgrade appstore apps
- $this->upgradeAppStoreApps($disabledApps);
- // post-upgrade repairs
- $repair = new Repair(Repair::getRepairSteps());
- $this->emitRepairMessages($repair);
- $repair->run();
- //Invalidate update feed
- $this->config->setAppValue('core', 'lastupdatedat', 0);
- // only set the final version if everything went well
- $this->config->setSystemValue('version', implode('.', \OC_Util::getVersion()));
- }
- }
- protected function checkCoreUpgrade() {
- // simulate core DB upgrade
- \OC_DB::simulateUpdateDbFromStructure(\OC::$SERVERROOT . '/db_structure.xml');
- $this->emit('\OC\Updater', 'dbSimulateUpgrade');
- }
- protected function doCoreUpgrade() {
- // do the real upgrade
- \OC_DB::updateDbFromStructure(\OC::$SERVERROOT . '/db_structure.xml');
- $this->emit('\OC\Updater', 'dbUpgrade');
- }
- /**
- * @param string $version the oc version to check app compatibility with
- */
- protected function checkAppUpgrade($version) {
- $apps = \OC_App::getEnabledApps();
- foreach ($apps as $appId) {
- $info = \OC_App::getAppInfo($appId);
- $compatible = \OC_App::isAppCompatible($version, $info);
- $isShipped = \OC_App::isShipped($appId);
- if ($compatible && $isShipped && \OC_App::shouldUpgrade($appId)) {
- /**
- * FIXME: The preupdate check is performed before the database migration, otherwise database changes
- * are not possible anymore within it. - Consider this when touching the code.
- * @link https://github.com/owncloud/core/issues/10980
- * @see \OC_App::updateApp
- */
- if (file_exists(\OC_App::getAppPath($appId) . '/appinfo/preupdate.php')) {
- $this->includePreUpdate($appId);
- }
- if (file_exists(\OC_App::getAppPath($appId) . '/appinfo/database.xml')) {
- \OC_DB::simulateUpdateDbFromStructure(\OC_App::getAppPath($appId) . '/appinfo/database.xml');
- }
- }
- }
- $this->emit('\OC\Updater', 'appUpgradeCheck');
- }
- /**
- * Includes the pre-update file. Done here to prevent namespace mixups.
- * @param string $appId
- */
- private function includePreUpdate($appId) {
- include \OC_App::getAppPath($appId) . '/appinfo/preupdate.php';
- }
- /**
- * upgrades all apps within a major ownCloud upgrade. Also loads "priority"
- * (types authentication, filesystem, logging, in that order) afterwards.
- *
- * @throws NeedsUpdateException
- */
- protected function doAppUpgrade() {
- $apps = \OC_App::getEnabledApps();
- $priorityTypes = array('authentication', 'filesystem', 'logging');
- $pseudoOtherType = 'other';
- $stacks = array($pseudoOtherType => array());
- foreach ($apps as $appId) {
- $priorityType = false;
- foreach ($priorityTypes as $type) {
- if(!isset($stacks[$type])) {
- $stacks[$type] = array();
- }
- if (\OC_App::isType($appId, $type)) {
- $stacks[$type][] = $appId;
- $priorityType = true;
- break;
- }
- }
- if (!$priorityType) {
- $stacks[$pseudoOtherType][] = $appId;
- }
- }
- foreach ($stacks as $type => $stack) {
- foreach ($stack as $appId) {
- if (\OC_App::shouldUpgrade($appId)) {
- \OC_App::updateApp($appId);
- $this->emit('\OC\Updater', 'appUpgrade', array($appId, \OC_App::getAppVersion($appId)));
- }
- if($type !== $pseudoOtherType) {
- // load authentication, filesystem and logging apps after
- // upgrading them. Other apps my need to rely on modifying
- // user and/or filesystem aspects.
- \OC_App::loadApp($appId, false);
- }
- }
- }
- }
- /**
- * check if the current enabled apps are compatible with the current
- * ownCloud version. disable them if not.
- * This is important if you upgrade ownCloud and have non ported 3rd
- * party apps installed.
- */
- private function checkAppsRequirements() {
- $isCoreUpgrade = $this->isCodeUpgrade();
- $apps = OC_App::getEnabledApps();
- $version = OC_Util::getVersion();
- $disabledApps = [];
- foreach ($apps as $app) {
- // check if the app is compatible with this version of ownCloud
- $info = OC_App::getAppInfo($app);
- if(!OC_App::isAppCompatible($version, $info)) {
- OC_App::disable($app);
- $this->emit('\OC\Updater', 'incompatibleAppDisabled', array($app));
- }
- // no need to disable any app in case this is a non-core upgrade
- if (!$isCoreUpgrade) {
- continue;
- }
- // shipped apps will remain enabled
- if (OC_App::isShipped($app)) {
- continue;
- }
- // authentication and session apps will remain enabled as well
- if (OC_App::isType($app, ['session', 'authentication'])) {
- continue;
- }
- // disable any other 3rd party apps
- \OC_App::disable($app);
- $disabledApps[]= $app;
- $this->emit('\OC\Updater', 'thirdPartyAppDisabled', array($app));
- }
- return $disabledApps;
- }
- private function isCodeUpgrade() {
- $installedVersion = $this->config->getSystemValue('version', '0.0.0');
- $currentVersion = implode('.', OC_Util::getVersion());
- if (version_compare($currentVersion, $installedVersion, '>')) {
- return true;
- }
- return false;
- }
- private function upgradeAppStoreApps($disabledApps) {
- foreach($disabledApps as $app) {
- if (OC_Installer::isUpdateAvailable($app)) {
- $ocsId = \OC::$server->getConfig()->getAppValue($app, 'ocsid', '');
- $this->emit('\OC\Updater', 'upgradeAppStoreApp', array($app));
- OC_Installer::updateAppByOCSId($ocsId);
- }
- }
- }
- }
|