2011-11-19 14:56:40 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2013-07-06 19:00:00 +04:00
|
|
|
* Copyright (c) 2013 Robin Appelman <icewind@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
2011-11-19 14:56:40 +04:00
|
|
|
*/
|
|
|
|
|
2013-07-06 19:00:00 +04:00
|
|
|
namespace OC;
|
|
|
|
use OC\Hooks\BasicEmitter;
|
|
|
|
|
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 {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \OC\Log $log
|
|
|
|
*/
|
|
|
|
private $log;
|
|
|
|
|
2014-06-05 18:19:24 +04:00
|
|
|
private $simulateStepEnabled;
|
|
|
|
|
|
|
|
private $updateStepEnabled;
|
|
|
|
|
2013-07-06 19:00:00 +04:00
|
|
|
/**
|
|
|
|
* @param \OC\Log $log
|
|
|
|
*/
|
|
|
|
public function __construct($log = null) {
|
|
|
|
$this->log = $log;
|
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
|
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
|
|
|
*/
|
2013-07-06 19:05:38 +04:00
|
|
|
public function check($updaterUrl) {
|
2013-04-24 20:47:38 +04:00
|
|
|
|
|
|
|
// Look up the cache - it is invalidated all 30 minutes
|
2013-07-06 19:00:00 +04:00
|
|
|
if ((\OC_Appconfig::getValue('core', 'lastupdatedat') + 1800) > time()) {
|
|
|
|
return json_decode(\OC_Appconfig::getValue('core', 'lastupdateResult'), true);
|
2013-04-24 20:47:38 +04:00
|
|
|
}
|
|
|
|
|
2013-07-06 19:00:00 +04:00
|
|
|
\OC_Appconfig::setValue('core', 'lastupdatedat', time());
|
2013-04-24 20:47:38 +04:00
|
|
|
|
2013-07-06 19:00:00 +04:00
|
|
|
if (\OC_Appconfig::getValue('core', 'installedat', '') == '') {
|
|
|
|
\OC_Appconfig::setValue('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();
|
|
|
|
$version['installed'] = \OC_Appconfig::getValue('core', 'installedat');
|
|
|
|
$version['updated'] = \OC_Appconfig::getValue('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.
|
|
|
|
$ctx = stream_context_create(
|
2012-10-14 23:04:08 +04:00
|
|
|
array(
|
|
|
|
'http' => array(
|
|
|
|
'timeout' => 10
|
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
2013-07-06 19:00:00 +04:00
|
|
|
$xml = @file_get_contents($url, 0, $ctx);
|
|
|
|
if ($xml == false) {
|
2012-12-15 02:04:42 +04:00
|
|
|
return array();
|
|
|
|
}
|
2014-03-10 20:49:47 +04:00
|
|
|
$loadEntities = libxml_disable_entity_loader(true);
|
2013-07-06 19:00:00 +04:00
|
|
|
$data = @simplexml_load_string($xml);
|
2014-03-10 20:49:47 +04:00
|
|
|
libxml_disable_entity_loader($loadEntities);
|
2011-11-19 14:56:40 +04:00
|
|
|
|
2013-07-06 19:00:00 +04:00
|
|
|
$tmp = array();
|
2012-12-15 02:04:42 +04:00
|
|
|
$tmp['version'] = $data->version;
|
|
|
|
$tmp['versionstring'] = $data->versionstring;
|
|
|
|
$tmp['url'] = $data->url;
|
|
|
|
$tmp['web'] = $data->web;
|
2011-11-19 14:56:40 +04:00
|
|
|
|
2013-04-24 20:47:38 +04:00
|
|
|
// Cache the result
|
2013-07-06 19:00:00 +04:00
|
|
|
\OC_Appconfig::setValue('core', 'lastupdateResult', json_encode($data));
|
2011-11-19 14:56:40 +04:00
|
|
|
|
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() {
|
|
|
|
\OC_DB::enableCaching(false);
|
|
|
|
\OC_Config::setValue('maintenance', true);
|
2014-06-10 13:47:27 +04:00
|
|
|
|
2013-07-06 19:00:00 +04:00
|
|
|
$installedVersion = \OC_Config::getValue('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');
|
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()));
|
|
|
|
}
|
|
|
|
|
|
|
|
\OC_Config::setValue('maintenance', false);
|
|
|
|
$this->emit('\OC\Updater', 'maintenanceEnd');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
* @return bool true if the operation succeeded, false otherwise
|
|
|
|
*/
|
|
|
|
private function doUpgrade($currentVersion, $installedVersion) {
|
2014-02-28 14:59:30 +04:00
|
|
|
// Update htaccess files for apache hosts
|
|
|
|
if (isset($_SERVER['SERVER_SOFTWARE']) && strstr($_SERVER['SERVER_SOFTWARE'], 'Apache')) {
|
|
|
|
\OC_Setup::updateHtaccess();
|
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
file_put_contents(\OC_Config::getValue('datadirectory', \OC::$SERVERROOT.'/data').'/.ocdata', '');
|
|
|
|
|
2014-02-18 19:26:37 +04:00
|
|
|
/*
|
|
|
|
* START CONFIG CHANGES FOR OLDER VERSIONS
|
|
|
|
*/
|
2014-03-07 01:40:25 +04:00
|
|
|
if (!\OC::$CLI && version_compare($installedVersion, '6.90.1', '<')) {
|
2014-04-28 22:23:18 +04:00
|
|
|
// Add the trusted_domains config if it is not existant
|
2014-02-18 19:26:37 +04:00
|
|
|
// This is added to prevent host header poisoning
|
2014-06-04 13:07:31 +04:00
|
|
|
\OC_Config::setValue('trusted_domains', \OC_Config::getValue('trusted_domains', array(\OC_Request::serverHost())));
|
2014-02-18 19:26:37 +04:00
|
|
|
}
|
2014-04-17 18:12:48 +04:00
|
|
|
|
2014-02-18 19:26:37 +04:00
|
|
|
/*
|
|
|
|
* STOP CONFIG CHANGES FOR OLDER VERSIONS
|
|
|
|
*/
|
|
|
|
|
2014-06-10 13:47:27 +04:00
|
|
|
// pre-upgrade repairs
|
|
|
|
$repair = new \OC\Repair(\OC\Repair::getBeforeUpgradeRepairSteps());
|
|
|
|
$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-06-10 13:47:27 +04:00
|
|
|
// simulate core DB upgrade
|
|
|
|
\OC_DB::simulateUpdateDbFromStructure(\OC::$SERVERROOT . '/db_structure.xml');
|
|
|
|
|
|
|
|
// simulate apps DB upgrade
|
|
|
|
$version = \OC_Util::getVersion();
|
|
|
|
$apps = \OC_App::getEnabledApps();
|
|
|
|
foreach ($apps as $appId) {
|
|
|
|
$info = \OC_App::getAppInfo($appId);
|
|
|
|
if (\OC_App::isAppCompatible($version, $info) && \OC_App::shouldUpgrade($appId)) {
|
|
|
|
if (file_exists(\OC_App::getAppPath($appId) . '/appinfo/database.xml')) {
|
|
|
|
\OC_DB::simulateUpdateDbFromStructure(\OC_App::getAppPath($appId) . '/appinfo/database.xml');
|
2014-06-04 18:40:53 +04:00
|
|
|
}
|
|
|
|
}
|
2014-06-05 18:19:24 +04:00
|
|
|
}
|
2014-06-10 13:47:27 +04:00
|
|
|
|
|
|
|
$this->emit('\OC\Updater', 'dbSimulateUpgrade');
|
2013-07-06 19:00:00 +04:00
|
|
|
}
|
2013-11-26 17:12:48 +04:00
|
|
|
|
2014-06-04 13:07:31 +04:00
|
|
|
// upgrade from OC6 to OC7
|
|
|
|
// TODO removed it again for OC8
|
|
|
|
$sharePolicy = \OC_Appconfig::getValue('core', 'shareapi_share_policy', 'global');
|
|
|
|
if ($sharePolicy === 'groups_only') {
|
|
|
|
\OC_Appconfig::setValue('core', 'shareapi_only_share_with_group_members', 'yes');
|
|
|
|
}
|
|
|
|
|
2014-06-10 13:47:27 +04:00
|
|
|
if ($this->updateStepEnabled) {
|
|
|
|
// do the real upgrade
|
|
|
|
\OC_DB::updateDbFromStructure(\OC::$SERVERROOT . '/db_structure.xml');
|
|
|
|
$this->emit('\OC\Updater', 'dbUpgrade');
|
2014-06-04 18:40:53 +04:00
|
|
|
|
|
|
|
// TODO: why not do this at the end ?
|
|
|
|
\OC_Config::setValue('version', implode('.', \OC_Util::getVersion()));
|
|
|
|
$disabledApps = \OC_App::checkAppsRequirements();
|
|
|
|
if (!empty($disabledApps)) {
|
|
|
|
$this->emit('\OC\Updater', 'disabledApps', array($disabledApps));
|
|
|
|
}
|
|
|
|
// load all apps to also upgrade enabled apps
|
|
|
|
\OC_App::loadApps();
|
|
|
|
|
2014-06-10 13:47:27 +04:00
|
|
|
// post-upgrade repairs
|
|
|
|
$repair = new \OC\Repair(\OC\Repair::getRepairSteps());
|
2014-06-04 18:40:53 +04:00
|
|
|
$repair->run();
|
|
|
|
|
|
|
|
//Invalidate update feed
|
|
|
|
\OC_Appconfig::setValue('core', 'lastupdatedat', 0);
|
|
|
|
}
|
2013-07-06 19:00:00 +04:00
|
|
|
}
|
|
|
|
}
|
2014-02-18 19:26:37 +04:00
|
|
|
|