2014-11-07 16:26:12 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Daniel Rudolf <github.com@daniel-rudolf.de>
|
|
|
|
* @author Greta Doci <gretadoci@gmail.com>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
|
|
|
* @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>
|
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 OCP\App;
|
|
|
|
|
2019-06-25 16:20:06 +03:00
|
|
|
use OCP\IGroup;
|
2019-11-22 22:52:10 +03:00
|
|
|
use OCP\IUser;
|
2015-02-02 16:47:29 +03:00
|
|
|
|
2015-04-16 18:00:08 +03:00
|
|
|
/**
|
|
|
|
* Interface IAppManager
|
|
|
|
*
|
|
|
|
* @since 8.0.0
|
|
|
|
*/
|
2014-11-07 16:26:12 +03:00
|
|
|
interface IAppManager {
|
2018-01-29 15:09:32 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the app information from "appinfo/info.xml".
|
|
|
|
*
|
|
|
|
* @param string $appId
|
|
|
|
* @return mixed
|
|
|
|
* @since 14.0.0
|
|
|
|
*/
|
|
|
|
public function getAppInfo(string $appId, bool $path = false, $lang = null);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the app information from "appinfo/info.xml".
|
|
|
|
*
|
|
|
|
* @param string $appId
|
|
|
|
* @param bool $useCache
|
2018-02-17 17:25:24 +03:00
|
|
|
* @return string
|
2018-01-29 15:09:32 +03:00
|
|
|
* @since 14.0.0
|
|
|
|
*/
|
2018-02-17 17:25:24 +03:00
|
|
|
public function getAppVersion(string $appId, bool $useCache = true): string;
|
2018-01-29 15:09:32 +03:00
|
|
|
|
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 loggedin user will be used
|
|
|
|
* @return bool
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.0.0
|
2014-11-07 16:26:12 +03:00
|
|
|
*/
|
|
|
|
public function isEnabledForUser($appId, $user = null);
|
|
|
|
|
|
|
|
/**
|
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
|
|
|
|
* @return bool
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.0.0
|
2014-11-07 16:26:12 +03:00
|
|
|
*/
|
|
|
|
public function isInstalled($appId);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.0.0
|
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;
|
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
|
|
|
|
* @since 12.0.0
|
|
|
|
*/
|
|
|
|
public function hasProtectedAppType($types);
|
|
|
|
|
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
|
2018-01-18 12:02:08 +03:00
|
|
|
* @throws \Exception
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.0.0
|
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;
|
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-04-16 18:00:08 +03:00
|
|
|
* @since 8.0.0
|
2014-11-07 16:26:12 +03:00
|
|
|
*/
|
2019-07-23 11:28:47 +03:00
|
|
|
public function disableApp($appId, $automaticDisabled = false);
|
2015-02-02 16:47:29 +03:00
|
|
|
|
2016-11-17 14:30:52 +03:00
|
|
|
/**
|
|
|
|
* Get the directory for the given app.
|
|
|
|
*
|
|
|
|
* @param string $appId
|
|
|
|
* @return string
|
|
|
|
* @since 11.0.0
|
|
|
|
* @throws AppPathNotFoundException
|
|
|
|
*/
|
|
|
|
public function getAppPath($appId);
|
|
|
|
|
2019-08-25 16:27:04 +03:00
|
|
|
/**
|
|
|
|
* Get the web path for the given app.
|
|
|
|
*
|
|
|
|
* @param string $appId
|
|
|
|
* @return string
|
2019-09-05 19:35:40 +03:00
|
|
|
* @since 18.0.0
|
2019-08-25 16:27:04 +03:00
|
|
|
* @throws AppPathNotFoundException
|
|
|
|
*/
|
2019-09-05 19:35:40 +03:00
|
|
|
public function getAppWebPath(string $appId): string;
|
2019-08-25 16:27:04 +03:00
|
|
|
|
2015-02-02 16:47:29 +03:00
|
|
|
/**
|
|
|
|
* List all apps enabled for a user
|
|
|
|
*
|
|
|
|
* @param \OCP\IUser $user
|
|
|
|
* @return string[]
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2015-02-02 16:47:29 +03:00
|
|
|
*/
|
2015-02-05 17:11:07 +03:00
|
|
|
public function getEnabledAppsForUser(IUser $user);
|
2015-02-02 16:47:29 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* List all installed apps
|
|
|
|
*
|
|
|
|
* @return string[]
|
2015-06-04 16:19:04 +03:00
|
|
|
* @since 8.1.0
|
2015-02-02 16:47:29 +03:00
|
|
|
*/
|
|
|
|
public function getInstalledApps();
|
2015-03-30 16:58:20 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Clear the cached list of apps when enabling/disabling an app
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2015-03-30 16:58:20 +03:00
|
|
|
*/
|
|
|
|
public function clearAppsCache();
|
2015-10-16 17:30:29 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $appId
|
|
|
|
* @return boolean
|
|
|
|
* @since 9.0.0
|
|
|
|
*/
|
|
|
|
public function isShipped($appId);
|
2015-10-16 17:38:43 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string[]
|
|
|
|
* @since 9.0.0
|
|
|
|
*/
|
|
|
|
public function getAlwaysEnabledApps();
|
2019-06-25 16:20:06 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param \OCP\IGroup $group
|
|
|
|
* @return String[]
|
|
|
|
* @since 17.0.0
|
|
|
|
*/
|
|
|
|
public function getEnabledAppsForGroup(IGroup $group): array;
|
|
|
|
|
2019-07-23 11:28:47 +03:00
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
* @since 17.0.0
|
|
|
|
*/
|
|
|
|
public function getAutoDisabledApps(): array;
|
|
|
|
|
2019-06-25 16:20:06 +03:00
|
|
|
/**
|
|
|
|
* @param String $appId
|
|
|
|
* @return string[]
|
|
|
|
* @since 17.0.0
|
|
|
|
*/
|
|
|
|
public function getAppRestriction(string $appId): array;
|
2014-11-07 16:26:12 +03:00
|
|
|
}
|