Re-enable apps that got automatically disabled while updating
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
dfbc21d806
commit
4b49f810b7
|
@ -250,6 +250,7 @@ class Updater extends BasicEmitter {
|
|||
|
||||
// upgrade appstore apps
|
||||
$this->upgradeAppStoreApps(\OC::$server->getAppManager()->getInstalledApps());
|
||||
$this->upgradeAppStoreApps(\OC_App::$autoDisabledApps, true);
|
||||
|
||||
// install new shipped apps on upgrade
|
||||
OC_App::loadApps(['authentication']);
|
||||
|
@ -430,9 +431,10 @@ class Updater extends BasicEmitter {
|
|||
|
||||
/**
|
||||
* @param array $disabledApps
|
||||
* @param bool $reenable
|
||||
* @throws \Exception
|
||||
*/
|
||||
private function upgradeAppStoreApps(array $disabledApps) {
|
||||
private function upgradeAppStoreApps(array $disabledApps, $reenable = false) {
|
||||
foreach($disabledApps as $app) {
|
||||
try {
|
||||
$this->emit('\OC\Updater', 'checkAppStoreAppBefore', [$app]);
|
||||
|
@ -441,6 +443,11 @@ class Updater extends BasicEmitter {
|
|||
$this->installer->updateAppstoreApp($app);
|
||||
}
|
||||
$this->emit('\OC\Updater', 'checkAppStoreApp', [$app]);
|
||||
|
||||
if ($reenable) {
|
||||
$ocApp = new \OC_App();
|
||||
$ocApp->enable($app);
|
||||
}
|
||||
} catch (\Exception $ex) {
|
||||
$this->log->logException($ex, ['app' => 'core']);
|
||||
}
|
||||
|
|
|
@ -70,6 +70,7 @@ class OC_App {
|
|||
static private $loadedApps = [];
|
||||
static private $altLogin = [];
|
||||
static private $alreadyRegistered = [];
|
||||
static public $autoDisabledApps = [];
|
||||
const officialApp = 200;
|
||||
|
||||
/**
|
||||
|
@ -156,6 +157,7 @@ class OC_App {
|
|||
if (!\OC::$server->getAppManager()->isShipped($app)) {
|
||||
// Only disable apps which are not shipped
|
||||
\OC::$server->getAppManager()->disableApp($app);
|
||||
self::$autoDisabledApps[] = $app;
|
||||
}
|
||||
}
|
||||
\OC::$server->getEventLogger()->end('load_app_' . $app);
|
||||
|
|
Loading…
Reference in New Issue