123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
- * @author Bjoern Schiessle <bjoern@schiessle.org>
- * @author Christoph Schaefer "christophł@wolkesicher.de"
- * @author Christoph Wurst <christoph@owncloud.com>
- * @author Joas Schilling <coding@schilljs.com>
- * @author Julius Haertl <jus@bitgrid.net>
- * @author Lukas Reschke <lukas@statuscode.ch>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Robin Appelman <robin@icewind.nl>
- * @author Thomas Müller <thomas.mueller@tmit.eu>
- * @author Vincent Petry <pvince81@owncloud.com>
- *
- * @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/>
- *
- */
- namespace OC\App;
- use OC\AppConfig;
- use OCP\App\AppPathNotFoundException;
- use OCP\App\IAppManager;
- use OCP\App\ManagerEvent;
- use OCP\ICacheFactory;
- use OCP\IGroupManager;
- use OCP\IUser;
- use OCP\IUserSession;
- use Symfony\Component\EventDispatcher\EventDispatcherInterface;
- class AppManager implements IAppManager {
- /**
- * Apps with these types can not be enabled for certain groups only
- * @var string[]
- */
- protected $protectedAppTypes = [
- 'filesystem',
- 'prelogin',
- 'authentication',
- 'logging',
- 'prevent_group_restriction',
- ];
- /** @var IUserSession */
- private $userSession;
- /** @var AppConfig */
- private $appConfig;
- /** @var IGroupManager */
- private $groupManager;
- /** @var ICacheFactory */
- private $memCacheFactory;
- /** @var EventDispatcherInterface */
- private $dispatcher;
- /** @var string[] $appId => $enabled */
- private $installedAppsCache;
- /** @var string[] */
- private $shippedApps;
- /** @var string[] */
- private $alwaysEnabled;
- /** @var array */
- private $appInfos = [];
- /** @var array */
- private $appVersions = [];
- /**
- * @param IUserSession $userSession
- * @param AppConfig $appConfig
- * @param IGroupManager $groupManager
- * @param ICacheFactory $memCacheFactory
- * @param EventDispatcherInterface $dispatcher
- */
- public function __construct(IUserSession $userSession,
- AppConfig $appConfig,
- IGroupManager $groupManager,
- ICacheFactory $memCacheFactory,
- EventDispatcherInterface $dispatcher) {
- $this->userSession = $userSession;
- $this->appConfig = $appConfig;
- $this->groupManager = $groupManager;
- $this->memCacheFactory = $memCacheFactory;
- $this->dispatcher = $dispatcher;
- }
- /**
- * @return string[] $appId => $enabled
- */
- private function getInstalledAppsValues() {
- if (!$this->installedAppsCache) {
- $values = $this->appConfig->getValues(false, 'enabled');
- $alwaysEnabledApps = $this->getAlwaysEnabledApps();
- foreach($alwaysEnabledApps as $appId) {
- $values[$appId] = 'yes';
- }
- $this->installedAppsCache = array_filter($values, function ($value) {
- return $value !== 'no';
- });
- ksort($this->installedAppsCache);
- }
- return $this->installedAppsCache;
- }
- /**
- * 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[]
- */
- public function getEnabledAppsForUser(IUser $user) {
- $apps = $this->getInstalledAppsValues();
- $appsForUser = array_filter($apps, function ($enabled) use ($user) {
- return $this->checkAppForUser($enabled, $user);
- });
- return array_keys($appsForUser);
- }
- /**
- * 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) {
- if ($this->isAlwaysEnabled($appId)) {
- return true;
- }
- if ($user === null) {
- $user = $this->userSession->getUser();
- }
- $installedApps = $this->getInstalledAppsValues();
- if (isset($installedApps[$appId])) {
- 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;
- } elseif ($user === null) {
- return false;
- } else {
- if(empty($enabled)){
- return false;
- }
- $groupIds = json_decode($enabled);
- if (!is_array($groupIds)) {
- $jsonError = json_last_error();
- \OC::$server->getLogger()->warning('AppManger::checkAppForUser - can\'t decode group IDs: ' . print_r($enabled, true) . ' - json error code: ' . $jsonError, ['app' => 'lib']);
- return false;
- }
- $userGroups = $this->groupManager->getUserGroupIds($user);
- foreach ($userGroups as $groupId) {
- if (in_array($groupId, $groupIds, true)) {
- return true;
- }
- }
- return false;
- }
- }
- /**
- * 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.
- *
- * @param string $appId
- * @return bool
- */
- public function isInstalled($appId) {
- $installedApps = $this->getInstalledAppsValues();
- return isset($installedApps[$appId]);
- }
- /**
- * Enable an app for every user
- *
- * @param string $appId
- * @throws AppPathNotFoundException
- */
- public function enableApp($appId) {
- // Check if app exists
- $this->getAppPath($appId);
- $this->installedAppsCache[$appId] = 'yes';
- $this->appConfig->setValue($appId, 'enabled', 'yes');
- $this->dispatcher->dispatch(ManagerEvent::EVENT_APP_ENABLE, new ManagerEvent(
- ManagerEvent::EVENT_APP_ENABLE, $appId
- ));
- $this->clearAppsCache();
- }
- /**
- * 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);
- }
- /**
- * Enable an app only for specific groups
- *
- * @param string $appId
- * @param \OCP\IGroup[] $groups
- * @throws \Exception if app can't be enabled for groups
- */
- public function enableAppForGroups($appId, $groups) {
- $info = $this->getAppInfo($appId);
- if (!empty($info['types'])) {
- $protectedTypes = array_intersect($this->protectedAppTypes, $info['types']);
- if (!empty($protectedTypes)) {
- throw new \Exception("$appId can't be enabled for groups.");
- }
- }
- $groupIds = array_map(function ($group) {
- /** @var \OCP\IGroup $group */
- return $group->getGID();
- }, $groups);
- $this->installedAppsCache[$appId] = json_encode($groupIds);
- $this->appConfig->setValue($appId, 'enabled', json_encode($groupIds));
- $this->dispatcher->dispatch(ManagerEvent::EVENT_APP_ENABLE_FOR_GROUPS, new ManagerEvent(
- ManagerEvent::EVENT_APP_ENABLE_FOR_GROUPS, $appId, $groups
- ));
- $this->clearAppsCache();
- }
- /**
- * Disable an app for every user
- *
- * @param string $appId
- * @throws \Exception if app can't be disabled
- */
- public function disableApp($appId) {
- if ($this->isAlwaysEnabled($appId)) {
- throw new \Exception("$appId can't be disabled.");
- }
- unset($this->installedAppsCache[$appId]);
- $this->appConfig->setValue($appId, 'enabled', 'no');
- // run uninstall steps
- $appData = $this->getAppInfo($appId);
- if (!is_null($appData)) {
- \OC_App::executeRepairSteps($appId, $appData['repair-steps']['uninstall']);
- }
- $this->dispatcher->dispatch(ManagerEvent::EVENT_APP_DISABLE, new ManagerEvent(
- ManagerEvent::EVENT_APP_DISABLE, $appId
- ));
- $this->clearAppsCache();
- }
- /**
- * 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);
- if($appPath === false) {
- throw new AppPathNotFoundException('Could not find path for ' . $appId);
- }
- return $appPath;
- }
- /**
- * Clear the cached list of apps when enabling/disabling an app
- */
- public function clearAppsCache() {
- $settingsMemCache = $this->memCacheFactory->createDistributed('settings');
- $settingsMemCache->clear('listApps');
- $this->appInfos = [];
- }
- /**
- * Returns a list of apps that need upgrade
- *
- * @param string $version Nextcloud version as array of version components
- * @return array list of app info from apps that need an upgrade
- *
- * @internal
- */
- public function getAppsNeedingUpgrade($version) {
- $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, '>')
- && \OC_App::isAppCompatible($version, $appInfo)
- ) {
- $appsToUpgrade[] = $appInfo;
- }
- }
- return $appsToUpgrade;
- }
- /**
- * Returns the app information from "appinfo/info.xml".
- *
- * @param string $appId app id
- *
- * @param bool $path
- * @param null $lang
- * @return array|null app info
- */
- 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;
- }
- public function getAppVersion(string $appId, bool $useCache = true): string {
- if(!$useCache || !isset($this->appVersions[$appId])) {
- $appInfo = \OC::$server->getAppManager()->getAppInfo($appId);
- $this->appVersions[$appId] = ($appInfo !== null && isset($appInfo['version'])) ? $appInfo['version'] : '0';
- }
- return $this->appVersions[$appId];
- }
- /**
- * Returns a list of apps incompatible with the given version
- *
- * @param string $version Nextcloud version as array of version components
- *
- * @return array list of app info from incompatible apps
- *
- * @internal
- */
- public function getIncompatibleApps(string $version): array {
- $apps = $this->getInstalledApps();
- $incompatibleApps = array();
- foreach ($apps as $appId) {
- $info = $this->getAppInfo($appId);
- if ($info === null) {
- $incompatibleApps[] = ['id' => $appId];
- } else if (!\OC_App::isAppCompatible($version, $info)) {
- $incompatibleApps[] = $info;
- }
- }
- return $incompatibleApps;
- }
- /**
- * @inheritdoc
- * In case you change this method, also change \OC\App\CodeChecker\InfoChecker::isShipped()
- */
- public function isShipped($appId) {
- $this->loadShippedJson();
- return in_array($appId, $this->shippedApps, true);
- }
- private function isAlwaysEnabled($appId) {
- $alwaysEnabled = $this->getAlwaysEnabledApps();
- return in_array($appId, $alwaysEnabled, true);
- }
- /**
- * In case you change this method, also change \OC\App\CodeChecker\InfoChecker::loadShippedJson()
- * @throws \Exception
- */
- private function loadShippedJson() {
- if ($this->shippedApps === null) {
- $shippedJson = \OC::$SERVERROOT . '/core/shipped.json';
- if (!file_exists($shippedJson)) {
- throw new \Exception("File not found: $shippedJson");
- }
- $content = json_decode(file_get_contents($shippedJson), true);
- $this->shippedApps = $content['shippedApps'];
- $this->alwaysEnabled = $content['alwaysEnabled'];
- }
- }
- /**
- * @inheritdoc
- */
- public function getAlwaysEnabledApps() {
- $this->loadShippedJson();
- return $this->alwaysEnabled;
- }
- }
|