a2674b2b30
Apps to update and to disable will always be shown. Main title changes only when apps need updated, not core. Added bullet style. Exclude incompatible apps from updated apps list.
281 lines
7 KiB
PHP
281 lines
7 KiB
PHP
<?php
|
|
/**
|
|
* @author Joas Schilling <nickvergessen@owncloud.com>
|
|
* @author Lukas Reschke <lukas@owncloud.com>
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
|
*
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
* @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 OCP\App\IAppManager;
|
|
use OCP\IAppConfig;
|
|
use OCP\ICacheFactory;
|
|
use OCP\IGroupManager;
|
|
use OCP\IUser;
|
|
use OCP\IUserSession;
|
|
|
|
class AppManager implements IAppManager {
|
|
/**
|
|
* @var \OCP\IUserSession
|
|
*/
|
|
private $userSession;
|
|
|
|
/**
|
|
* @var \OCP\IAppConfig
|
|
*/
|
|
private $appConfig;
|
|
|
|
/**
|
|
* @var \OCP\IGroupManager
|
|
*/
|
|
private $groupManager;
|
|
|
|
/** @var \OCP\ICacheFactory */
|
|
private $memCacheFactory;
|
|
|
|
/**
|
|
* @var string[] $appId => $enabled
|
|
*/
|
|
private $installedAppsCache;
|
|
|
|
/**
|
|
* @param \OCP\IUserSession $userSession
|
|
* @param \OCP\IAppConfig $appConfig
|
|
* @param \OCP\IGroupManager $groupManager
|
|
* @param \OCP\ICacheFactory $memCacheFactory
|
|
*/
|
|
public function __construct(IUserSession $userSession,
|
|
IAppConfig $appConfig,
|
|
IGroupManager $groupManager,
|
|
ICacheFactory $memCacheFactory) {
|
|
$this->userSession = $userSession;
|
|
$this->appConfig = $appConfig;
|
|
$this->groupManager = $groupManager;
|
|
$this->memCacheFactory = $memCacheFactory;
|
|
}
|
|
|
|
/**
|
|
* @return string[] $appId => $enabled
|
|
*/
|
|
private function getInstalledAppsValues() {
|
|
if (!$this->installedAppsCache) {
|
|
$values = $this->appConfig->getValues(false, 'enabled');
|
|
$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 (is_null($user)) {
|
|
$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 (is_null($user)) {
|
|
return false;
|
|
} else {
|
|
$groupIds = json_decode($enabled);
|
|
$userGroups = $this->groupManager->getUserGroupIds($user);
|
|
foreach ($userGroups as $groupId) {
|
|
if (array_search($groupId, $groupIds) !== false) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Check if an app is installed in the instance
|
|
*
|
|
* @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
|
|
*/
|
|
public function enableApp($appId) {
|
|
$this->installedAppsCache[$appId] = 'yes';
|
|
$this->appConfig->setValue($appId, 'enabled', 'yes');
|
|
$this->clearAppsCache();
|
|
}
|
|
|
|
/**
|
|
* Enable an app only for specific groups
|
|
*
|
|
* @param string $appId
|
|
* @param \OCP\IGroup[] $groups
|
|
*/
|
|
public function enableAppForGroups($appId, $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->clearAppsCache();
|
|
}
|
|
|
|
/**
|
|
* Disable an app for every user
|
|
*
|
|
* @param string $appId
|
|
* @throws \Exception if app can't be disabled
|
|
*/
|
|
public function disableApp($appId) {
|
|
if ($appId === 'files') {
|
|
throw new \Exception("files can't be disabled.");
|
|
}
|
|
unset($this->installedAppsCache[$appId]);
|
|
$this->appConfig->setValue($appId, 'enabled', 'no');
|
|
$this->clearAppsCache();
|
|
}
|
|
|
|
/**
|
|
* Clear the cached list of apps when enabling/disabling an app
|
|
*/
|
|
public function clearAppsCache() {
|
|
$settingsMemCache = $this->memCacheFactory->create('settings');
|
|
$settingsMemCache->clear('listApps');
|
|
}
|
|
|
|
/**
|
|
* Returns a list of apps that need upgrade
|
|
*
|
|
* @param array $version ownCloud version as array of version components
|
|
* @return array list of app info from apps that need an upgrade
|
|
*
|
|
* @internal
|
|
*/
|
|
public function getAppsNeedingUpgrade($ocVersion) {
|
|
$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($ocVersion, $appInfo)
|
|
) {
|
|
$appsToUpgrade[] = $appInfo;
|
|
}
|
|
}
|
|
|
|
return $appsToUpgrade;
|
|
}
|
|
|
|
/**
|
|
* Returns the app information from "appinfo/info.xml".
|
|
*
|
|
* If no version was present in "appinfo/info.xml", reads it
|
|
* from the external "appinfo/version" file instead.
|
|
*
|
|
* @param string $appId app id
|
|
*
|
|
* @return array app iinfo
|
|
*
|
|
* @internal
|
|
*/
|
|
public function getAppInfo($appId) {
|
|
$appInfo = \OC_App::getAppInfo($appId);
|
|
if (!isset($appInfo['version'])) {
|
|
// read version from separate file
|
|
$appInfo['version'] = \OC_App::getAppVersion($appId);
|
|
}
|
|
return $appInfo;
|
|
}
|
|
|
|
/**
|
|
* Returns a list of apps incompatible with the given version
|
|
*
|
|
* @param array $version ownCloud version as array of version components
|
|
*
|
|
* @return array list of app info from incompatible apps
|
|
*
|
|
* @internal
|
|
*/
|
|
public function getIncompatibleApps($version) {
|
|
$apps = $this->getInstalledApps();
|
|
$incompatibleApps = array();
|
|
foreach ($apps as $appId) {
|
|
$info = $this->getAppInfo($appId);
|
|
if (!\OC_App::isAppCompatible($version, $info)) {
|
|
$incompatibleApps[] = $info;
|
|
}
|
|
}
|
|
return $incompatibleApps;
|
|
}
|
|
|
|
}
|