2011-11-19 14:56:40 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-03-26 13:44:34 +03:00
|
|
|
* @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/>
|
|
|
|
*
|
2011-11-19 14:56:40 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2013-07-06 19:00:00 +04:00
|
|
|
namespace OC;
|
2014-07-24 19:18:54 +04:00
|
|
|
|
2013-07-06 19:00:00 +04:00
|
|
|
use OC\Hooks\BasicEmitter;
|
2015-02-17 14:00:39 +03:00
|
|
|
use OC_App;
|
2015-03-13 14:16:16 +03:00
|
|
|
use OC_Installer;
|
2015-02-17 14:00:39 +03:00
|
|
|
use OC_Util;
|
|
|
|
use OCP\IConfig;
|
2015-02-19 04:15:21 +03:00
|
|
|
use OC\Setup;
|
2013-07-06 19:00:00 +04:00
|
|
|
|
2011-11-19 14:56:40 +04:00
|
|
|
/**
|
2013-07-08 23:13:23 +04:00
|
|
|
* Class that handles autoupdating of ownCloud
|
2013-07-06 19:00:00 +04:00
|
|
|
*
|
|
|
|
* Hooks provided in scope \OC\Updater
|
|
|
|
* - maintenanceStart()
|
|
|
|
* - maintenanceEnd()
|
|
|
|
* - dbUpgrade()
|
|
|
|
* - failure(string $message)
|
2011-11-19 14:56:40 +04:00
|
|
|
*/
|
2013-07-06 19:00:00 +04:00
|
|
|
class Updater extends BasicEmitter {
|
|
|
|
|
2015-02-17 14:00:39 +03:00
|
|
|
/** @var \OC\Log $log */
|
2013-07-06 19:00:00 +04:00
|
|
|
private $log;
|
2014-11-25 22:41:15 +03:00
|
|
|
|
2015-02-17 14:00:39 +03:00
|
|
|
/** @var \OC\HTTPHelper $helper */
|
2014-11-25 22:41:15 +03:00
|
|
|
private $httpHelper;
|
2014-12-10 01:13:38 +03:00
|
|
|
|
2015-02-17 14:00:39 +03:00
|
|
|
/** @var IConfig */
|
2014-12-10 01:13:38 +03:00
|
|
|
private $config;
|
2013-07-06 19:00:00 +04:00
|
|
|
|
2015-02-17 14:00:39 +03:00
|
|
|
/** @var bool */
|
2014-06-05 18:19:24 +04:00
|
|
|
private $simulateStepEnabled;
|
|
|
|
|
2015-02-17 14:00:39 +03:00
|
|
|
/** @var bool */
|
2014-06-05 18:19:24 +04:00
|
|
|
private $updateStepEnabled;
|
|
|
|
|
2013-07-06 19:00:00 +04:00
|
|
|
/**
|
2015-02-17 14:00:39 +03:00
|
|
|
* @param HTTPHelper $httpHelper
|
|
|
|
* @param IConfig $config
|
2013-07-06 19:00:00 +04:00
|
|
|
* @param \OC\Log $log
|
|
|
|
*/
|
2015-02-17 14:00:39 +03:00
|
|
|
public function __construct(HTTPHelper $httpHelper, IConfig $config, $log = null) {
|
2014-11-25 22:41:15 +03:00
|
|
|
$this->httpHelper = $httpHelper;
|
2013-07-06 19:00:00 +04:00
|
|
|
$this->log = $log;
|
2014-12-10 01:13:38 +03:00
|
|
|
$this->config = $config;
|
2014-06-05 18:19:24 +04:00
|
|
|
$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;
|
2013-07-06 19:00:00 +04:00
|
|
|
}
|
2011-11-19 14:56:40 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if a new version is available
|
2014-07-24 19:18:54 +04:00
|
|
|
*
|
2013-11-26 17:12:48 +04:00
|
|
|
* @param string $updaterUrl the url to check, i.e. 'http://apps.owncloud.com/updater.php'
|
2014-05-11 21:28:45 +04:00
|
|
|
* @return array|bool
|
2011-11-19 14:56:40 +04:00
|
|
|
*/
|
2014-10-17 13:42:10 +04:00
|
|
|
public function check($updaterUrl = null) {
|
2013-04-24 20:47:38 +04:00
|
|
|
|
|
|
|
// Look up the cache - it is invalidated all 30 minutes
|
2015-02-17 14:00:39 +03:00
|
|
|
if (((int)$this->config->getAppValue('core', 'lastupdatedat') + 1800) > time()) {
|
|
|
|
return json_decode($this->config->getAppValue('core', 'lastupdateResult'), true);
|
2013-04-24 20:47:38 +04:00
|
|
|
}
|
|
|
|
|
2014-10-17 13:42:10 +04:00
|
|
|
if (is_null($updaterUrl)) {
|
|
|
|
$updaterUrl = 'https://apps.owncloud.com/updater.php';
|
|
|
|
}
|
|
|
|
|
2015-02-17 14:00:39 +03:00
|
|
|
$this->config->setAppValue('core', 'lastupdatedat', time());
|
2013-04-24 20:47:38 +04:00
|
|
|
|
2015-02-17 14:00:39 +03:00
|
|
|
if ($this->config->getAppValue('core', 'installedat', '') == '') {
|
|
|
|
$this->config->setAppValue('core', 'installedat', microtime(true));
|
2013-02-11 20:44:02 +04:00
|
|
|
}
|
2013-07-08 23:13:23 +04:00
|
|
|
|
2013-07-06 19:00:00 +04:00
|
|
|
$version = \OC_Util::getVersion();
|
2015-02-17 14:00:39 +03:00
|
|
|
$version['installed'] = $this->config->getAppValue('core', 'installedat');
|
|
|
|
$version['updated'] = $this->config->getAppValue('core', 'lastupdatedat');
|
2014-06-04 13:07:31 +04:00
|
|
|
$version['updatechannel'] = \OC_Util::getChannel();
|
2013-07-06 19:00:00 +04:00
|
|
|
$version['edition'] = \OC_Util::getEditionString();
|
2013-11-24 19:45:06 +04:00
|
|
|
$version['build'] = \OC_Util::getBuild();
|
2013-07-06 19:05:38 +04:00
|
|
|
$versionString = implode('x', $version);
|
2011-11-19 14:56:40 +04:00
|
|
|
|
|
|
|
//fetch xml data from updater
|
2013-07-06 19:05:38 +04:00
|
|
|
$url = $updaterUrl . '?version=' . $versionString;
|
2012-10-08 13:53:00 +04:00
|
|
|
|
|
|
|
// set a sensible timeout of 10 sec to stay responsive even if the update server is down.
|
2011-11-19 14:56:40 +04:00
|
|
|
|
2013-07-06 19:00:00 +04:00
|
|
|
$tmp = array();
|
2014-11-25 22:41:15 +03:00
|
|
|
$xml = $this->httpHelper->getUrlContent($url);
|
2014-12-08 17:38:56 +03:00
|
|
|
if ($xml) {
|
2014-11-25 22:41:15 +03:00
|
|
|
$loadEntities = libxml_disable_entity_loader(true);
|
|
|
|
$data = @simplexml_load_string($xml);
|
|
|
|
libxml_disable_entity_loader($loadEntities);
|
2014-12-08 17:38:56 +03:00
|
|
|
if ($data !== false) {
|
|
|
|
$tmp['version'] = $data->version;
|
|
|
|
$tmp['versionstring'] = $data->versionstring;
|
|
|
|
$tmp['url'] = $data->url;
|
|
|
|
$tmp['web'] = $data->web;
|
|
|
|
}
|
2014-11-25 22:41:15 +03:00
|
|
|
} else {
|
|
|
|
$data = array();
|
|
|
|
}
|
2011-11-19 14:56:40 +04:00
|
|
|
|
2013-04-24 20:47:38 +04:00
|
|
|
// Cache the result
|
2015-02-17 14:00:39 +03:00
|
|
|
$this->config->setAppValue('core', 'lastupdateResult', json_encode($data));
|
2013-04-24 20:47:38 +04:00
|
|
|
return $tmp;
|
2011-11-19 14:56:40 +04:00
|
|
|
}
|
2013-07-06 19:00:00 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* runs the update actions in maintenance mode, does not upgrade the source files
|
2014-02-28 14:59:30 +04:00
|
|
|
* except the main .htaccess file
|
2014-06-05 18:19:24 +04:00
|
|
|
*
|
|
|
|
* @return bool true if the operation succeeded, false otherwise
|
2013-07-06 19:00:00 +04:00
|
|
|
*/
|
|
|
|
public function upgrade() {
|
2015-02-17 14:00:39 +03:00
|
|
|
$this->config->setSystemValue('maintenance', true);
|
2014-06-10 13:47:27 +04:00
|
|
|
|
2015-02-17 14:00:39 +03:00
|
|
|
$installedVersion = $this->config->getSystemValue('version', '0.0.0');
|
2013-07-06 19:00:00 +04:00
|
|
|
$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');
|
2014-02-18 19:26:37 +04:00
|
|
|
|
2014-06-10 13:47:27 +04:00
|
|
|
try {
|
|
|
|
$this->doUpgrade($currentVersion, $installedVersion);
|
|
|
|
} catch (\Exception $exception) {
|
|
|
|
$this->emit('\OC\Updater', 'failure', array($exception->getMessage()));
|
|
|
|
}
|
|
|
|
|
2015-02-17 14:00:39 +03:00
|
|
|
$this->config->setSystemValue('maintenance', false);
|
2014-06-10 13:47:27 +04:00
|
|
|
$this->emit('\OC\Updater', 'maintenanceEnd');
|
|
|
|
}
|
|
|
|
|
2014-09-18 19:45:30 +04:00
|
|
|
/**
|
|
|
|
* 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;
|
|
|
|
}
|
|
|
|
|
2015-02-27 14:44:04 +03:00
|
|
|
/**
|
|
|
|
* 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));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2014-06-10 13:47:27 +04:00
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*
|
2014-09-18 19:45:30 +04:00
|
|
|
* @throws \Exception
|
2014-06-10 13:47:27 +04:00
|
|
|
* @return bool true if the operation succeeded, false otherwise
|
|
|
|
*/
|
|
|
|
private function doUpgrade($currentVersion, $installedVersion) {
|
2014-09-18 19:45:30 +04:00
|
|
|
// 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.');
|
|
|
|
}
|
|
|
|
|
2015-02-19 04:15:21 +03:00
|
|
|
// Update .htaccess files
|
|
|
|
try {
|
|
|
|
Setup::updateHtaccess();
|
|
|
|
Setup::protectDataDirectory();
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
throw new \Exception($e->getMessage());
|
2014-02-28 14:59:30 +04:00
|
|
|
}
|
|
|
|
|
2014-03-14 16:03:18 +04:00
|
|
|
// 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)
|
2015-02-17 14:00:39 +03:00
|
|
|
file_put_contents($this->config->getSystemValue('datadirectory', \OC::$SERVERROOT . '/data') . '/.ocdata', '');
|
2014-03-14 16:03:18 +04:00
|
|
|
|
2014-06-10 13:47:27 +04:00
|
|
|
// pre-upgrade repairs
|
2015-02-17 14:00:39 +03:00
|
|
|
$repair = new Repair(Repair::getBeforeUpgradeRepairSteps());
|
2015-02-27 14:44:04 +03:00
|
|
|
$this->emitRepairMessages($repair);
|
2014-06-10 13:47:27 +04:00
|
|
|
$repair->run();
|
2014-02-18 19:26:37 +04:00
|
|
|
|
2014-06-04 18:40:53 +04:00
|
|
|
// simulate DB upgrade
|
2014-06-05 18:19:24 +04:00
|
|
|
if ($this->simulateStepEnabled) {
|
2014-07-24 19:18:54 +04:00
|
|
|
$this->checkCoreUpgrade();
|
2014-06-10 13:47:27 +04:00
|
|
|
|
|
|
|
// simulate apps DB upgrade
|
2014-07-24 19:18:54 +04:00
|
|
|
$this->checkAppUpgrade($currentVersion);
|
2014-06-10 13:47:27 +04:00
|
|
|
|
2013-07-06 19:00:00 +04:00
|
|
|
}
|
2013-11-26 17:12:48 +04:00
|
|
|
|
2014-06-10 13:47:27 +04:00
|
|
|
if ($this->updateStepEnabled) {
|
2014-07-24 19:18:54 +04:00
|
|
|
$this->doCoreUpgrade();
|
2014-06-04 18:40:53 +04:00
|
|
|
|
2015-03-13 14:16:16 +03:00
|
|
|
// update all shipped apps
|
|
|
|
$disabledApps = $this->checkAppsRequirements();
|
2014-07-24 19:18:54 +04:00
|
|
|
$this->doAppUpgrade();
|
2014-06-04 18:40:53 +04:00
|
|
|
|
2015-03-13 14:16:16 +03:00
|
|
|
// upgrade appstore apps
|
|
|
|
$this->upgradeAppStoreApps($disabledApps);
|
|
|
|
|
|
|
|
|
2014-06-10 13:47:27 +04:00
|
|
|
// post-upgrade repairs
|
2015-02-17 14:00:39 +03:00
|
|
|
$repair = new Repair(Repair::getRepairSteps());
|
2015-02-27 14:44:04 +03:00
|
|
|
$this->emitRepairMessages($repair);
|
2014-06-04 18:40:53 +04:00
|
|
|
$repair->run();
|
|
|
|
|
|
|
|
//Invalidate update feed
|
2015-02-17 14:00:39 +03:00
|
|
|
$this->config->setAppValue('core', 'lastupdatedat', 0);
|
2014-07-24 01:38:17 +04:00
|
|
|
|
|
|
|
// only set the final version if everything went well
|
2015-02-17 14:00:39 +03:00
|
|
|
$this->config->setSystemValue('version', implode('.', \OC_Util::getVersion()));
|
2014-06-04 18:40:53 +04:00
|
|
|
}
|
2013-07-06 19:00:00 +04:00
|
|
|
}
|
2014-07-24 19:18:54 +04:00
|
|
|
|
|
|
|
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');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-09-18 19:45:30 +04:00
|
|
|
* @param string $version the oc version to check app compatibility with
|
2014-07-24 19:18:54 +04:00
|
|
|
*/
|
|
|
|
protected function checkAppUpgrade($version) {
|
|
|
|
$apps = \OC_App::getEnabledApps();
|
|
|
|
|
|
|
|
foreach ($apps as $appId) {
|
2015-02-17 14:00:39 +03:00
|
|
|
$info = \OC_App::getAppInfo($appId);
|
|
|
|
$compatible = \OC_App::isAppCompatible($version, $info);
|
|
|
|
$isShipped = \OC_App::isShipped($appId);
|
2014-07-24 19:18:54 +04:00
|
|
|
|
2015-02-17 14:00:39 +03:00
|
|
|
if ($compatible && $isShipped && \OC_App::shouldUpgrade($appId)) {
|
2014-11-11 19:26:08 +03:00
|
|
|
/**
|
|
|
|
* 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);
|
|
|
|
}
|
2014-07-24 19:18:54 +04:00
|
|
|
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');
|
|
|
|
}
|
|
|
|
|
2014-11-11 19:26:08 +03:00
|
|
|
/**
|
|
|
|
* 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';
|
|
|
|
}
|
|
|
|
|
2015-02-03 21:02:25 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* upgrades all apps within a major ownCloud upgrade. Also loads "priority"
|
|
|
|
* (types authentication, filesystem, logging, in that order) afterwards.
|
|
|
|
*
|
|
|
|
* @throws NeedsUpdateException
|
|
|
|
*/
|
2014-07-24 19:18:54 +04:00
|
|
|
protected function doAppUpgrade() {
|
|
|
|
$apps = \OC_App::getEnabledApps();
|
2015-02-03 21:02:25 +03:00
|
|
|
$priorityTypes = array('authentication', 'filesystem', 'logging');
|
|
|
|
$pseudoOtherType = 'other';
|
|
|
|
$stacks = array($pseudoOtherType => array());
|
2014-07-24 19:18:54 +04:00
|
|
|
|
|
|
|
foreach ($apps as $appId) {
|
2015-02-03 21:02:25 +03:00
|
|
|
$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);
|
|
|
|
}
|
2014-07-24 19:18:54 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-02-17 14:00:39 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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() {
|
2015-02-24 14:51:55 +03:00
|
|
|
$isCoreUpgrade = $this->isCodeUpgrade();
|
2015-02-17 14:00:39 +03:00
|
|
|
$apps = OC_App::getEnabledApps();
|
|
|
|
$version = OC_Util::getVersion();
|
2015-03-13 14:16:16 +03:00
|
|
|
$disabledApps = [];
|
2015-02-17 14:00:39 +03:00
|
|
|
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));
|
|
|
|
}
|
2015-02-24 14:51:55 +03:00
|
|
|
// no need to disable any app in case this is a non-core upgrade
|
|
|
|
if (!$isCoreUpgrade) {
|
|
|
|
continue;
|
|
|
|
}
|
2015-02-19 17:59:20 +03:00
|
|
|
// shipped apps will remain enabled
|
|
|
|
if (OC_App::isShipped($app)) {
|
|
|
|
continue;
|
2015-02-17 14:00:39 +03:00
|
|
|
}
|
2015-02-19 17:59:20 +03:00
|
|
|
// 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);
|
2015-03-13 14:16:16 +03:00
|
|
|
$disabledApps[]= $app;
|
2015-02-19 17:59:20 +03:00
|
|
|
$this->emit('\OC\Updater', 'thirdPartyAppDisabled', array($app));
|
2015-02-17 14:00:39 +03:00
|
|
|
}
|
2015-03-13 14:16:16 +03:00
|
|
|
return $disabledApps;
|
2015-02-17 14:00:39 +03:00
|
|
|
}
|
2015-02-24 14:51:55 +03:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
2015-03-13 14:16:16 +03:00
|
|
|
|
|
|
|
private function upgradeAppStoreApps($disabledApps) {
|
|
|
|
foreach($disabledApps as $app) {
|
|
|
|
if (OC_Installer::isUpdateAvailable($app)) {
|
2015-03-16 12:52:29 +03:00
|
|
|
$ocsId = \OC::$server->getConfig()->getAppValue($app, 'ocsid', '');
|
2015-03-13 14:16:16 +03:00
|
|
|
|
|
|
|
$this->emit('\OC\Updater', 'upgradeAppStoreApp', array($app));
|
|
|
|
OC_Installer::updateAppByOCSId($ocsId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-07-06 19:00:00 +04:00
|
|
|
}
|
2014-02-18 19:26:37 +04:00
|
|
|
|