2014-11-07 16:26:12 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Bjoern Schiessle <bjoern@schiessle.org>
|
2017-11-07 15:47:42 +03:00
|
|
|
* @author Christoph Schaefer "christophł@wolkesicher.de"
|
2020-03-31 11:49:10 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Daniel Kesselberg <mail@danielkesselberg.de>
|
|
|
|
* @author Daniel Rudolf <github.com@daniel-rudolf.de>
|
|
|
|
* @author Greta Doci <gretadoci@gmail.com>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Julius Haertl <jus@bitgrid.net>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Julius Härtl <jus@bitgrid.net>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Tobia De Koninck <tobia@ledfan.be>
|
2015-10-05 21:54:56 +03:00
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
|
|
|
* @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,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
2014-11-07 16:26:12 +03:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2014-11-07 16:26:12 +03:00
|
|
|
namespace OC\App;
|
|
|
|
|
2018-06-06 12:43:47 +03:00
|
|
|
use OC\AppConfig;
|
2016-11-17 14:30:52 +03:00
|
|
|
use OCP\App\AppPathNotFoundException;
|
2014-11-07 16:26:12 +03:00
|
|
|
use OCP\App\IAppManager;
|
2016-02-09 04:51:12 +03:00
|
|
|
use OCP\App\ManagerEvent;
|
2015-04-01 16:37:22 +03:00
|
|
|
use OCP\ICacheFactory;
|
2019-09-05 13:55:24 +03:00
|
|
|
use OCP\IConfig;
|
2019-06-25 16:20:06 +03:00
|
|
|
use OCP\IGroup;
|
2014-11-07 16:26:12 +03:00
|
|
|
use OCP\IGroupManager;
|
2019-07-15 23:19:11 +03:00
|
|
|
use OCP\ILogger;
|
2015-02-02 16:47:29 +03:00
|
|
|
use OCP\IUser;
|
2014-11-07 16:26:12 +03:00
|
|
|
use OCP\IUserSession;
|
2016-02-09 04:51:12 +03:00
|
|
|
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
|
2014-11-07 16:26:12 +03:00
|
|
|
|
|
|
|
class AppManager implements IAppManager {
|
2015-10-16 17:30:29 +03:00
|
|
|
|
2016-01-14 17:23:07 +03:00
|
|
|
/**
|
|
|
|
* Apps with these types can not be enabled for certain groups only
|
|
|
|
* @var string[]
|
|
|
|
*/
|
|
|
|
protected $protectedAppTypes = [
|
|
|
|
'filesystem',
|
|
|
|
'prelogin',
|
|
|
|
'authentication',
|
|
|
|
'logging',
|
|
|
|
'prevent_group_restriction',
|
|
|
|
];
|
|
|
|
|
2017-03-20 12:11:49 +03:00
|
|
|
/** @var IUserSession */
|
2014-11-07 16:26:12 +03:00
|
|
|
private $userSession;
|
|
|
|
|
2019-09-05 13:55:24 +03:00
|
|
|
/** @var IConfig */
|
|
|
|
private $config;
|
|
|
|
|
2018-01-17 23:10:40 +03:00
|
|
|
/** @var AppConfig */
|
2014-11-07 16:26:12 +03:00
|
|
|
private $appConfig;
|
|
|
|
|
2017-03-20 12:11:49 +03:00
|
|
|
/** @var IGroupManager */
|
2014-11-07 16:26:12 +03:00
|
|
|
private $groupManager;
|
|
|
|
|
2017-03-20 12:11:49 +03:00
|
|
|
/** @var ICacheFactory */
|
2015-04-01 16:37:22 +03:00
|
|
|
private $memCacheFactory;
|
|
|
|
|
2017-03-20 12:11:49 +03:00
|
|
|
/** @var EventDispatcherInterface */
|
|
|
|
private $dispatcher;
|
|
|
|
|
2019-07-15 23:19:11 +03:00
|
|
|
/** @var ILogger */
|
|
|
|
private $logger;
|
|
|
|
|
2015-10-16 17:30:29 +03:00
|
|
|
/** @var string[] $appId => $enabled */
|
2014-11-07 16:26:12 +03:00
|
|
|
private $installedAppsCache;
|
|
|
|
|
2015-10-16 17:30:29 +03:00
|
|
|
/** @var string[] */
|
|
|
|
private $shippedApps;
|
|
|
|
|
|
|
|
/** @var string[] */
|
|
|
|
private $alwaysEnabled;
|
|
|
|
|
2018-01-29 15:09:32 +03:00
|
|
|
/** @var array */
|
|
|
|
private $appInfos = [];
|
|
|
|
|
|
|
|
/** @var array */
|
|
|
|
private $appVersions = [];
|
|
|
|
|
2019-07-23 11:28:47 +03:00
|
|
|
/** @var array */
|
|
|
|
private $autoDisabledApps = [];
|
|
|
|
|
2014-11-07 16:26:12 +03:00
|
|
|
/**
|
2017-03-20 12:11:49 +03:00
|
|
|
* @param IUserSession $userSession
|
2019-09-05 13:55:24 +03:00
|
|
|
* @param IConfig $config
|
2018-01-17 23:10:40 +03:00
|
|
|
* @param AppConfig $appConfig
|
2017-03-20 12:11:49 +03:00
|
|
|
* @param IGroupManager $groupManager
|
|
|
|
* @param ICacheFactory $memCacheFactory
|
|
|
|
* @param EventDispatcherInterface $dispatcher
|
2014-11-07 16:26:12 +03:00
|
|
|
*/
|
2015-04-02 09:28:42 +03:00
|
|
|
public function __construct(IUserSession $userSession,
|
2019-09-05 13:55:24 +03:00
|
|
|
IConfig $config,
|
2018-01-17 23:10:40 +03:00
|
|
|
AppConfig $appConfig,
|
2015-04-02 09:28:42 +03:00
|
|
|
IGroupManager $groupManager,
|
2016-02-09 04:51:12 +03:00
|
|
|
ICacheFactory $memCacheFactory,
|
2019-07-15 23:19:11 +03:00
|
|
|
EventDispatcherInterface $dispatcher,
|
|
|
|
ILogger $logger) {
|
2014-11-07 16:26:12 +03:00
|
|
|
$this->userSession = $userSession;
|
2019-09-05 13:55:24 +03:00
|
|
|
$this->config = $config;
|
2014-11-07 16:26:12 +03:00
|
|
|
$this->appConfig = $appConfig;
|
|
|
|
$this->groupManager = $groupManager;
|
2015-04-01 16:37:22 +03:00
|
|
|
$this->memCacheFactory = $memCacheFactory;
|
2016-02-09 04:51:12 +03:00
|
|
|
$this->dispatcher = $dispatcher;
|
2019-07-15 23:19:11 +03:00
|
|
|
$this->logger = $logger;
|
2014-11-07 16:26:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string[] $appId => $enabled
|
|
|
|
*/
|
2015-02-02 16:47:29 +03:00
|
|
|
private function getInstalledAppsValues() {
|
2014-11-07 16:26:12 +03:00
|
|
|
if (!$this->installedAppsCache) {
|
|
|
|
$values = $this->appConfig->getValues(false, 'enabled');
|
2015-11-19 11:11:14 +03:00
|
|
|
|
|
|
|
$alwaysEnabledApps = $this->getAlwaysEnabledApps();
|
2020-04-10 15:19:56 +03:00
|
|
|
foreach ($alwaysEnabledApps as $appId) {
|
2015-11-19 11:11:14 +03:00
|
|
|
$values[$appId] = 'yes';
|
|
|
|
}
|
|
|
|
|
2014-11-07 16:26:12 +03:00
|
|
|
$this->installedAppsCache = array_filter($values, function ($value) {
|
|
|
|
return $value !== 'no';
|
|
|
|
});
|
|
|
|
ksort($this->installedAppsCache);
|
|
|
|
}
|
|
|
|
return $this->installedAppsCache;
|
|
|
|
}
|
|
|
|
|
2015-02-02 16:47:29 +03:00
|
|
|
/**
|
|
|
|
* List all installed apps
|
|
|
|
*
|
|
|
|
* @return string[]
|
|
|
|
*/
|
|
|
|
public function getInstalledApps() {
|
|
|
|
return array_keys($this->getInstalledAppsValues());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* List all apps enabled for a user
|
|
|
|
*
|
|
|
|
* @param \OCP\IUser $user
|
|
|
|
* @return string[]
|
|
|
|
*/
|
2015-02-05 17:11:07 +03:00
|
|
|
public function getEnabledAppsForUser(IUser $user) {
|
2015-02-02 16:47:29 +03:00
|
|
|
$apps = $this->getInstalledAppsValues();
|
|
|
|
$appsForUser = array_filter($apps, function ($enabled) use ($user) {
|
|
|
|
return $this->checkAppForUser($enabled, $user);
|
|
|
|
});
|
|
|
|
return array_keys($appsForUser);
|
|
|
|
}
|
|
|
|
|
2019-06-25 16:20:06 +03:00
|
|
|
/**
|
|
|
|
* @param \OCP\IGroup $group
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getEnabledAppsForGroup(IGroup $group): array {
|
|
|
|
$apps = $this->getInstalledAppsValues();
|
|
|
|
$appsForGroups = array_filter($apps, function ($enabled) use ($group) {
|
|
|
|
return $this->checkAppForGroups($enabled, $group);
|
|
|
|
});
|
|
|
|
return array_keys($appsForGroups);
|
|
|
|
}
|
|
|
|
|
2019-07-23 11:28:47 +03:00
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getAutoDisabledApps(): array {
|
|
|
|
return $this->autoDisabledApps;
|
|
|
|
}
|
|
|
|
|
2019-06-25 16:20:06 +03:00
|
|
|
/**
|
|
|
|
* @param string $appId
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getAppRestriction(string $appId): array {
|
|
|
|
$values = $this->getInstalledAppsValues();
|
|
|
|
|
|
|
|
if (!isset($values[$appId])) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($values[$appId] === 'yes' || $values[$appId] === 'no') {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
return json_decode($values[$appId]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-11-07 16:26:12 +03:00
|
|
|
/**
|
|
|
|
* Check if an app is enabled for user
|
|
|
|
*
|
|
|
|
* @param string $appId
|
|
|
|
* @param \OCP\IUser $user (optional) if not defined, the currently logged in user will be used
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isEnabledForUser($appId, $user = null) {
|
2015-10-16 17:30:29 +03:00
|
|
|
if ($this->isAlwaysEnabled($appId)) {
|
|
|
|
return true;
|
|
|
|
}
|
2017-03-20 12:11:49 +03:00
|
|
|
if ($user === null) {
|
2014-11-07 16:26:12 +03:00
|
|
|
$user = $this->userSession->getUser();
|
|
|
|
}
|
2015-02-02 16:47:29 +03:00
|
|
|
$installedApps = $this->getInstalledAppsValues();
|
2014-11-07 16:26:12 +03:00
|
|
|
if (isset($installedApps[$appId])) {
|
2015-02-02 16:47:29 +03:00
|
|
|
return $this->checkAppForUser($installedApps[$appId], $user);
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $enabled
|
|
|
|
* @param IUser $user
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
private function checkAppForUser($enabled, $user) {
|
|
|
|
if ($enabled === 'yes') {
|
|
|
|
return true;
|
2017-03-20 12:11:49 +03:00
|
|
|
} elseif ($user === null) {
|
2015-02-02 16:47:29 +03:00
|
|
|
return false;
|
|
|
|
} else {
|
2020-04-10 15:19:56 +03:00
|
|
|
if (empty($enabled)) {
|
2016-01-07 21:49:40 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-02-02 16:47:29 +03:00
|
|
|
$groupIds = json_decode($enabled);
|
2015-12-10 16:53:34 +03:00
|
|
|
|
|
|
|
if (!is_array($groupIds)) {
|
|
|
|
$jsonError = json_last_error();
|
2019-07-15 23:19:11 +03:00
|
|
|
$this->logger->warning('AppManger::checkAppForUser - can\'t decode group IDs: ' . print_r($enabled, true) . ' - json error code: ' . $jsonError, ['app' => 'lib']);
|
2015-12-10 16:53:34 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-02-02 16:47:29 +03:00
|
|
|
$userGroups = $this->groupManager->getUserGroupIds($user);
|
|
|
|
foreach ($userGroups as $groupId) {
|
2017-03-20 12:11:49 +03:00
|
|
|
if (in_array($groupId, $groupIds, true)) {
|
2015-02-02 16:47:29 +03:00
|
|
|
return true;
|
2014-11-07 16:26:12 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-25 16:20:06 +03:00
|
|
|
/**
|
|
|
|
* @param string $enabled
|
|
|
|
* @param IGroup $group
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
private function checkAppForGroups(string $enabled, IGroup $group): bool {
|
|
|
|
if ($enabled === 'yes') {
|
|
|
|
return true;
|
|
|
|
} elseif ($group === null) {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
if (empty($enabled)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$groupIds = json_decode($enabled);
|
|
|
|
|
|
|
|
if (!is_array($groupIds)) {
|
|
|
|
$jsonError = json_last_error();
|
2019-07-15 23:19:11 +03:00
|
|
|
$this->logger->warning('AppManger::checkAppForUser - can\'t decode group IDs: ' . print_r($enabled, true) . ' - json error code: ' . $jsonError, ['app' => 'lib']);
|
2019-06-25 16:20:06 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return in_array($group->getGID(), $groupIds);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-07 16:26:12 +03:00
|
|
|
/**
|
2018-02-22 18:00:26 +03:00
|
|
|
* Check if an app is enabled in the instance
|
|
|
|
*
|
|
|
|
* Notice: This actually checks if the app is enabled and not only if it is installed.
|
2014-11-07 16:26:12 +03:00
|
|
|
*
|
|
|
|
* @param string $appId
|
2019-06-25 16:20:06 +03:00
|
|
|
* @param \OCP\IGroup[]|String[] $groups
|
2014-11-07 16:26:12 +03:00
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isInstalled($appId) {
|
2015-02-02 16:47:29 +03:00
|
|
|
$installedApps = $this->getInstalledAppsValues();
|
2014-11-07 16:26:12 +03:00
|
|
|
return isset($installedApps[$appId]);
|
|
|
|
}
|
|
|
|
|
2019-09-05 13:55:24 +03:00
|
|
|
public function ignoreNextcloudRequirementForApp(string $appId): void {
|
|
|
|
$ignoreMaxApps = $this->config->getSystemValue('app_install_overwrite', []);
|
|
|
|
if (!in_array($appId, $ignoreMaxApps, true)) {
|
|
|
|
$ignoreMaxApps[] = $appId;
|
|
|
|
$this->config->setSystemValue('app_install_overwrite', $ignoreMaxApps);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-07 16:26:12 +03:00
|
|
|
/**
|
|
|
|
* Enable an app for every user
|
|
|
|
*
|
|
|
|
* @param string $appId
|
2019-09-05 13:55:24 +03:00
|
|
|
* @param bool $forceEnable
|
2017-03-20 12:02:05 +03:00
|
|
|
* @throws AppPathNotFoundException
|
2014-11-07 16:26:12 +03:00
|
|
|
*/
|
2019-09-05 13:55:24 +03:00
|
|
|
public function enableApp(string $appId, bool $forceEnable = false): void {
|
2017-03-20 12:02:05 +03:00
|
|
|
// Check if app exists
|
|
|
|
$this->getAppPath($appId);
|
|
|
|
|
2019-09-05 13:55:24 +03:00
|
|
|
if ($forceEnable) {
|
|
|
|
$this->ignoreNextcloudRequirementForApp($appId);
|
|
|
|
}
|
|
|
|
|
2015-02-16 18:44:35 +03:00
|
|
|
$this->installedAppsCache[$appId] = 'yes';
|
2014-11-07 16:26:12 +03:00
|
|
|
$this->appConfig->setValue($appId, 'enabled', 'yes');
|
2016-02-09 04:51:12 +03:00
|
|
|
$this->dispatcher->dispatch(ManagerEvent::EVENT_APP_ENABLE, new ManagerEvent(
|
|
|
|
ManagerEvent::EVENT_APP_ENABLE, $appId
|
|
|
|
));
|
2015-04-01 16:37:22 +03:00
|
|
|
$this->clearAppsCache();
|
2014-11-07 16:26:12 +03:00
|
|
|
}
|
|
|
|
|
2017-01-04 12:40:14 +03:00
|
|
|
/**
|
|
|
|
* Whether a list of types contains a protected app type
|
|
|
|
*
|
|
|
|
* @param string[] $types
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function hasProtectedAppType($types) {
|
|
|
|
if (empty($types)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$protectedTypes = array_intersect($this->protectedAppTypes, $types);
|
|
|
|
return !empty($protectedTypes);
|
|
|
|
}
|
|
|
|
|
2014-11-07 16:26:12 +03:00
|
|
|
/**
|
|
|
|
* Enable an app only for specific groups
|
|
|
|
*
|
|
|
|
* @param string $appId
|
|
|
|
* @param \OCP\IGroup[] $groups
|
2019-09-05 13:55:24 +03:00
|
|
|
* @param bool $forceEnable
|
2019-01-27 00:31:45 +03:00
|
|
|
* @throws \InvalidArgumentException if app can't be enabled for groups
|
|
|
|
* @throws AppPathNotFoundException
|
2014-11-07 16:26:12 +03:00
|
|
|
*/
|
2019-09-05 13:55:24 +03:00
|
|
|
public function enableAppForGroups(string $appId, array $groups, bool $forceEnable = false): void {
|
2019-01-27 00:31:45 +03:00
|
|
|
// Check if app exists
|
|
|
|
$this->getAppPath($appId);
|
|
|
|
|
2016-01-14 17:23:07 +03:00
|
|
|
$info = $this->getAppInfo($appId);
|
2019-01-27 00:31:45 +03:00
|
|
|
if (!empty($info['types']) && $this->hasProtectedAppType($info['types'])) {
|
|
|
|
throw new \InvalidArgumentException("$appId can't be enabled for groups.");
|
2016-01-14 17:23:07 +03:00
|
|
|
}
|
|
|
|
|
2019-09-05 13:55:24 +03:00
|
|
|
if ($forceEnable) {
|
|
|
|
$this->ignoreNextcloudRequirementForApp($appId);
|
|
|
|
}
|
|
|
|
|
2014-11-07 16:26:12 +03:00
|
|
|
$groupIds = array_map(function ($group) {
|
|
|
|
/** @var \OCP\IGroup $group */
|
2019-06-25 16:20:06 +03:00
|
|
|
return ($group instanceof IGroup)
|
|
|
|
? $group->getGID()
|
|
|
|
: $group;
|
2014-11-07 16:26:12 +03:00
|
|
|
}, $groups);
|
2019-06-25 16:20:06 +03:00
|
|
|
|
2015-02-16 18:44:35 +03:00
|
|
|
$this->installedAppsCache[$appId] = json_encode($groupIds);
|
2014-11-07 16:26:12 +03:00
|
|
|
$this->appConfig->setValue($appId, 'enabled', json_encode($groupIds));
|
2016-02-09 04:51:12 +03:00
|
|
|
$this->dispatcher->dispatch(ManagerEvent::EVENT_APP_ENABLE_FOR_GROUPS, new ManagerEvent(
|
|
|
|
ManagerEvent::EVENT_APP_ENABLE_FOR_GROUPS, $appId, $groups
|
|
|
|
));
|
2015-04-01 16:37:22 +03:00
|
|
|
$this->clearAppsCache();
|
2014-11-07 16:26:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Disable an app for every user
|
|
|
|
*
|
|
|
|
* @param string $appId
|
2019-07-23 11:28:47 +03:00
|
|
|
* @param bool $automaticDisabled
|
2015-02-03 02:39:01 +03:00
|
|
|
* @throws \Exception if app can't be disabled
|
2014-11-07 16:26:12 +03:00
|
|
|
*/
|
2019-07-23 11:28:47 +03:00
|
|
|
public function disableApp($appId, $automaticDisabled = false) {
|
2015-10-16 17:30:29 +03:00
|
|
|
if ($this->isAlwaysEnabled($appId)) {
|
|
|
|
throw new \Exception("$appId can't be disabled.");
|
2015-02-03 02:39:01 +03:00
|
|
|
}
|
2019-07-23 11:28:47 +03:00
|
|
|
|
|
|
|
if ($automaticDisabled) {
|
|
|
|
$this->autoDisabledApps[] = $appId;
|
|
|
|
}
|
|
|
|
|
2015-02-16 18:44:35 +03:00
|
|
|
unset($this->installedAppsCache[$appId]);
|
2014-11-07 16:26:12 +03:00
|
|
|
$this->appConfig->setValue($appId, 'enabled', 'no');
|
2017-07-22 14:32:56 +03:00
|
|
|
|
|
|
|
// run uninstall steps
|
|
|
|
$appData = $this->getAppInfo($appId);
|
|
|
|
if (!is_null($appData)) {
|
|
|
|
\OC_App::executeRepairSteps($appId, $appData['repair-steps']['uninstall']);
|
|
|
|
}
|
|
|
|
|
2016-06-13 14:36:23 +03:00
|
|
|
$this->dispatcher->dispatch(ManagerEvent::EVENT_APP_DISABLE, new ManagerEvent(
|
2016-02-09 04:51:12 +03:00
|
|
|
ManagerEvent::EVENT_APP_DISABLE, $appId
|
|
|
|
));
|
2015-04-01 16:37:22 +03:00
|
|
|
$this->clearAppsCache();
|
|
|
|
}
|
|
|
|
|
2016-11-17 14:30:52 +03:00
|
|
|
/**
|
|
|
|
* Get the directory for the given app.
|
|
|
|
*
|
|
|
|
* @param string $appId
|
|
|
|
* @return string
|
|
|
|
* @throws AppPathNotFoundException if app folder can't be found
|
|
|
|
*/
|
|
|
|
public function getAppPath($appId) {
|
|
|
|
$appPath = \OC_App::getAppPath($appId);
|
2020-04-10 15:19:56 +03:00
|
|
|
if ($appPath === false) {
|
2016-11-17 14:30:52 +03:00
|
|
|
throw new AppPathNotFoundException('Could not find path for ' . $appId);
|
|
|
|
}
|
|
|
|
return $appPath;
|
|
|
|
}
|
|
|
|
|
2019-08-25 16:27:04 +03:00
|
|
|
/**
|
|
|
|
* Get the web path for the given app.
|
|
|
|
*
|
|
|
|
* @param string $appId
|
|
|
|
* @return string
|
|
|
|
* @throws AppPathNotFoundException if app path can't be found
|
|
|
|
*/
|
2019-09-05 19:35:40 +03:00
|
|
|
public function getAppWebPath(string $appId): string {
|
2019-08-25 16:27:04 +03:00
|
|
|
$appWebPath = \OC_App::getAppWebPath($appId);
|
2020-04-10 15:19:56 +03:00
|
|
|
if ($appWebPath === false) {
|
2019-08-25 16:27:04 +03:00
|
|
|
throw new AppPathNotFoundException('Could not find web path for ' . $appId);
|
|
|
|
}
|
|
|
|
return $appWebPath;
|
|
|
|
}
|
|
|
|
|
2015-04-01 16:37:22 +03:00
|
|
|
/**
|
|
|
|
* Clear the cached list of apps when enabling/disabling an app
|
|
|
|
*/
|
2015-03-30 16:58:20 +03:00
|
|
|
public function clearAppsCache() {
|
2017-12-15 13:31:13 +03:00
|
|
|
$settingsMemCache = $this->memCacheFactory->createDistributed('settings');
|
2015-04-01 16:37:22 +03:00
|
|
|
$settingsMemCache->clear('listApps');
|
2018-05-30 17:06:18 +03:00
|
|
|
$this->appInfos = [];
|
2014-11-07 16:26:12 +03:00
|
|
|
}
|
2015-07-07 13:12:54 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a list of apps that need upgrade
|
|
|
|
*
|
2017-03-20 12:11:49 +03:00
|
|
|
* @param string $version Nextcloud version as array of version components
|
2015-07-07 13:12:54 +03:00
|
|
|
* @return array list of app info from apps that need an upgrade
|
|
|
|
*
|
|
|
|
* @internal
|
|
|
|
*/
|
2017-03-20 12:11:49 +03:00
|
|
|
public function getAppsNeedingUpgrade($version) {
|
2015-07-07 13:12:54 +03:00
|
|
|
$appsToUpgrade = [];
|
|
|
|
$apps = $this->getInstalledApps();
|
|
|
|
foreach ($apps as $appId) {
|
|
|
|
$appInfo = $this->getAppInfo($appId);
|
|
|
|
$appDbVersion = $this->appConfig->getValue($appId, 'installed_version');
|
|
|
|
if ($appDbVersion
|
|
|
|
&& isset($appInfo['version'])
|
|
|
|
&& version_compare($appInfo['version'], $appDbVersion, '>')
|
2017-03-20 12:11:49 +03:00
|
|
|
&& \OC_App::isAppCompatible($version, $appInfo)
|
2015-07-07 13:12:54 +03:00
|
|
|
) {
|
|
|
|
$appsToUpgrade[] = $appInfo;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $appsToUpgrade;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the app information from "appinfo/info.xml".
|
|
|
|
*
|
|
|
|
* @param string $appId app id
|
|
|
|
*
|
2018-01-29 15:09:32 +03:00
|
|
|
* @param bool $path
|
|
|
|
* @param null $lang
|
2018-03-28 12:12:56 +03:00
|
|
|
* @return array|null app info
|
2015-07-07 13:12:54 +03:00
|
|
|
*/
|
2018-01-29 15:09:32 +03:00
|
|
|
public function getAppInfo(string $appId, bool $path = false, $lang = null) {
|
|
|
|
if ($path) {
|
|
|
|
$file = $appId;
|
|
|
|
} else {
|
|
|
|
if ($lang === null && isset($this->appInfos[$appId])) {
|
|
|
|
return $this->appInfos[$appId];
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
$appPath = $this->getAppPath($appId);
|
|
|
|
} catch (AppPathNotFoundException $e) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
$file = $appPath . '/appinfo/info.xml';
|
|
|
|
}
|
|
|
|
|
|
|
|
$parser = new InfoParser($this->memCacheFactory->createLocal('core.appinfo'));
|
|
|
|
$data = $parser->parse($file);
|
|
|
|
|
|
|
|
if (is_array($data)) {
|
|
|
|
$data = \OC_App::parseAppInfo($data, $lang);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($lang === null) {
|
|
|
|
$this->appInfos[$appId] = $data;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
2018-02-17 17:25:24 +03:00
|
|
|
public function getAppVersion(string $appId, bool $useCache = true): string {
|
2020-04-10 15:19:56 +03:00
|
|
|
if (!$useCache || !isset($this->appVersions[$appId])) {
|
2019-07-18 12:33:58 +03:00
|
|
|
$appInfo = $this->getAppInfo($appId);
|
2018-02-17 17:25:24 +03:00
|
|
|
$this->appVersions[$appId] = ($appInfo !== null && isset($appInfo['version'])) ? $appInfo['version'] : '0';
|
2015-07-07 13:12:54 +03:00
|
|
|
}
|
2018-01-29 15:09:32 +03:00
|
|
|
return $this->appVersions[$appId];
|
2015-07-07 13:12:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a list of apps incompatible with the given version
|
|
|
|
*
|
2017-03-20 12:11:49 +03:00
|
|
|
* @param string $version Nextcloud version as array of version components
|
2015-07-07 13:12:54 +03:00
|
|
|
*
|
|
|
|
* @return array list of app info from incompatible apps
|
|
|
|
*
|
|
|
|
* @internal
|
|
|
|
*/
|
2018-02-21 15:00:41 +03:00
|
|
|
public function getIncompatibleApps(string $version): array {
|
2015-07-07 13:12:54 +03:00
|
|
|
$apps = $this->getInstalledApps();
|
2020-03-26 11:30:18 +03:00
|
|
|
$incompatibleApps = [];
|
2015-07-07 13:12:54 +03:00
|
|
|
foreach ($apps as $appId) {
|
|
|
|
$info = $this->getAppInfo($appId);
|
2018-03-28 12:12:56 +03:00
|
|
|
if ($info === null) {
|
|
|
|
$incompatibleApps[] = ['id' => $appId];
|
2020-04-10 11:35:09 +03:00
|
|
|
} elseif (!\OC_App::isAppCompatible($version, $info)) {
|
2015-07-07 13:12:54 +03:00
|
|
|
$incompatibleApps[] = $info;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $incompatibleApps;
|
|
|
|
}
|
|
|
|
|
2015-10-16 17:38:43 +03:00
|
|
|
/**
|
|
|
|
* @inheritdoc
|
2018-02-07 18:03:21 +03:00
|
|
|
* In case you change this method, also change \OC\App\CodeChecker\InfoChecker::isShipped()
|
2015-10-16 17:38:43 +03:00
|
|
|
*/
|
2015-10-16 17:30:29 +03:00
|
|
|
public function isShipped($appId) {
|
|
|
|
$this->loadShippedJson();
|
2017-03-20 12:11:49 +03:00
|
|
|
return in_array($appId, $this->shippedApps, true);
|
2015-10-16 17:30:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
private function isAlwaysEnabled($appId) {
|
2015-10-16 17:38:43 +03:00
|
|
|
$alwaysEnabled = $this->getAlwaysEnabledApps();
|
2017-03-20 12:11:49 +03:00
|
|
|
return in_array($appId, $alwaysEnabled, true);
|
2015-10-16 17:30:29 +03:00
|
|
|
}
|
|
|
|
|
2018-02-07 18:03:21 +03:00
|
|
|
/**
|
|
|
|
* In case you change this method, also change \OC\App\CodeChecker\InfoChecker::loadShippedJson()
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
2015-10-16 17:30:29 +03:00
|
|
|
private function loadShippedJson() {
|
2017-03-20 12:11:49 +03:00
|
|
|
if ($this->shippedApps === null) {
|
2015-10-16 17:30:29 +03:00
|
|
|
$shippedJson = \OC::$SERVERROOT . '/core/shipped.json';
|
2015-10-26 11:52:47 +03:00
|
|
|
if (!file_exists($shippedJson)) {
|
|
|
|
throw new \Exception("File not found: $shippedJson");
|
2015-10-16 17:30:29 +03:00
|
|
|
}
|
2015-10-26 11:52:47 +03:00
|
|
|
$content = json_decode(file_get_contents($shippedJson), true);
|
|
|
|
$this->shippedApps = $content['shippedApps'];
|
|
|
|
$this->alwaysEnabled = $content['alwaysEnabled'];
|
2015-10-16 17:30:29 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-16 17:38:43 +03:00
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
|
|
|
public function getAlwaysEnabledApps() {
|
|
|
|
$this->loadShippedJson();
|
|
|
|
return $this->alwaysEnabled;
|
|
|
|
}
|
2014-11-07 16:26:12 +03:00
|
|
|
}
|