2013-01-04 06:32:33 +04:00
|
|
|
<?php
|
|
|
|
set_time_limit(0);
|
|
|
|
require_once '../../lib/base.php';
|
|
|
|
|
|
|
|
if (OC::checkUpgrade(false)) {
|
2013-08-27 02:26:44 +04:00
|
|
|
$l = new \OC_L10N('core');
|
2013-07-06 19:00:00 +04:00
|
|
|
$eventSource = new OC_EventSource();
|
|
|
|
$updater = new \OC\Updater(\OC_Log::$object);
|
2013-08-27 02:26:44 +04:00
|
|
|
$updater->listen('\OC\Updater', 'maintenanceStart', function () use ($eventSource, $l) {
|
|
|
|
$eventSource->send('success', (string)$l->t('Turned on maintenance mode'));
|
2013-07-06 19:00:00 +04:00
|
|
|
});
|
2013-08-27 02:26:44 +04:00
|
|
|
$updater->listen('\OC\Updater', 'maintenanceEnd', function () use ($eventSource, $l) {
|
|
|
|
$eventSource->send('success', (string)$l->t('Turned off maintenance mode'));
|
2013-07-06 19:00:00 +04:00
|
|
|
});
|
2013-08-27 02:26:44 +04:00
|
|
|
$updater->listen('\OC\Updater', 'dbUpgrade', function () use ($eventSource, $l) {
|
|
|
|
$eventSource->send('success', (string)$l->t('Updated database'));
|
2013-07-06 19:00:00 +04:00
|
|
|
});
|
2014-06-04 18:40:53 +04:00
|
|
|
$updater->listen('\OC\Updater', 'dbSimulateUpgrade', function () use ($eventSource, $l) {
|
|
|
|
$eventSource->send('success', (string)$l->t('Checked database schema update'));
|
|
|
|
});
|
2014-05-27 17:20:33 +04:00
|
|
|
$updater->listen('\OC\Updater', 'disabledApps', function ($appList) use ($eventSource, $l) {
|
|
|
|
$list = array();
|
|
|
|
foreach ($appList as $appId) {
|
|
|
|
$info = OC_App::getAppInfo($appId);
|
|
|
|
$list[] = $info['name'] . ' (' . $info['id'] . ')';
|
|
|
|
}
|
|
|
|
$eventSource->send('success', (string)$l->t('Disabled incompatible apps: %s', implode(', ', $list)));
|
|
|
|
});
|
2013-07-06 19:00:00 +04:00
|
|
|
$updater->listen('\OC\Updater', 'failure', function ($message) use ($eventSource) {
|
|
|
|
$eventSource->send('failure', $message);
|
|
|
|
$eventSource->close();
|
2013-04-09 22:51:43 +04:00
|
|
|
OC_Config::setValue('maintenance', false);
|
2013-07-06 19:00:00 +04:00
|
|
|
});
|
2013-01-04 19:21:33 +04:00
|
|
|
|
2013-07-06 19:00:00 +04:00
|
|
|
$updater->upgrade();
|
2013-01-04 19:21:33 +04:00
|
|
|
|
2013-07-06 19:00:00 +04:00
|
|
|
$eventSource->send('done', '');
|
|
|
|
$eventSource->close();
|
|
|
|
}
|