123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975 |
- <?php
- declare(strict_types=1);
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- * @copyright Copyright (c) 2016, Lukas Reschke <lukas@statuscode.ch>
- *
- * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
- * @author Bart Visscher <bartv@thisnet.nl>
- * @author Bernhard Posselt <dev@bernhard-posselt.com>
- * @author Borjan Tchakaloff <borjan@tchakaloff.fr>
- * @author Brice Maron <brice@bmaron.net>
- * @author Christopher Schäpers <kondou@ts.unde.re>
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Daniel Rudolf <github.com@daniel-rudolf.de>
- * @author Frank Karlitschek <frank@karlitschek.de>
- * @author Georg Ehrke <oc.list@georgehrke.com>
- * @author Jakob Sack <mail@jakobsack.de>
- * @author Joas Schilling <coding@schilljs.com>
- * @author Jörn Friedrich Dreyer <jfd@butonic.de>
- * @author Julius Haertl <jus@bitgrid.net>
- * @author Julius Härtl <jus@bitgrid.net>
- * @author Kamil Domanski <kdomanski@kdemail.net>
- * @author Lukas Reschke <lukas@statuscode.ch>
- * @author Markus Goetz <markus@woboq.com>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author RealRancor <Fisch.666@gmx.de>
- * @author Robin Appelman <robin@icewind.nl>
- * @author Robin McCorkell <robin@mccorkell.me.uk>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- * @author Sam Tuke <mail@samtuke.com>
- * @author Sebastian Wessalowski <sebastian@wessalowski.org>
- * @author Thomas Müller <thomas.mueller@tmit.eu>
- * @author Thomas Tanghus <thomas@tanghus.net>
- * @author Vincent Petry <vincent@nextcloud.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/>
- *
- */
- use OCP\App\Events\AppUpdateEvent;
- use OCP\AppFramework\QueryException;
- use OCP\App\IAppManager;
- use OCP\App\ManagerEvent;
- use OCP\Authentication\IAlternativeLogin;
- use OCP\EventDispatcher\IEventDispatcher;
- use OCP\ILogger;
- use OC\AppFramework\Bootstrap\Coordinator;
- use OC\App\DependencyAnalyzer;
- use OC\App\Platform;
- use OC\DB\MigrationService;
- use OC\Installer;
- use OC\Repair;
- use OC\Repair\Events\RepairErrorEvent;
- use Psr\Log\LoggerInterface;
- /**
- * This class manages the apps. It allows them to register and integrate in the
- * ownCloud ecosystem. Furthermore, this class is responsible for installing,
- * upgrading and removing apps.
- */
- class OC_App {
- private static $adminForms = [];
- private static $personalForms = [];
- private static $altLogin = [];
- private static $alreadyRegistered = [];
- public const supportedApp = 300;
- public const officialApp = 200;
- /**
- * clean the appId
- *
- * @psalm-taint-escape file
- * @psalm-taint-escape include
- * @psalm-taint-escape html
- * @psalm-taint-escape has_quotes
- *
- * @param string $app AppId that needs to be cleaned
- * @return string
- */
- public static function cleanAppId(string $app): string {
- return str_replace(['<', '>', '"', "'", '\0', '/', '\\', '..'], '', $app);
- }
- /**
- * Check if an app is loaded
- *
- * @param string $app
- * @return bool
- * @deprecated 27.0.0 use IAppManager::isAppLoaded
- */
- public static function isAppLoaded(string $app): bool {
- return \OC::$server->get(IAppManager::class)->isAppLoaded($app);
- }
- /**
- * loads all apps
- *
- * @param string[] $types
- * @return bool
- *
- * This function walks through the ownCloud directory and loads all apps
- * it can find. A directory contains an app if the file /appinfo/info.xml
- * exists.
- *
- * if $types is set to non-empty array, only apps of those types will be loaded
- */
- public static function loadApps(array $types = []): bool {
- if (!\OC::$server->getSystemConfig()->getValue('installed', false)) {
- // This should be done before calling this method so that appmanager can be used
- return false;
- }
- return \OC::$server->get(IAppManager::class)->loadApps($types);
- }
- /**
- * load a single app
- *
- * @param string $app
- * @throws Exception
- * @deprecated 27.0.0 use IAppManager::loadApp
- */
- public static function loadApp(string $app): void {
- \OC::$server->get(IAppManager::class)->loadApp($app);
- }
- /**
- * @internal
- * @param string $app
- * @param string $path
- * @param bool $force
- */
- public static function registerAutoloading(string $app, string $path, bool $force = false) {
- $key = $app . '-' . $path;
- if (!$force && isset(self::$alreadyRegistered[$key])) {
- return;
- }
- self::$alreadyRegistered[$key] = true;
- // Register on PSR-4 composer autoloader
- $appNamespace = \OC\AppFramework\App::buildAppNamespace($app);
- \OC::$server->registerNamespace($app, $appNamespace);
- if (file_exists($path . '/composer/autoload.php')) {
- require_once $path . '/composer/autoload.php';
- } else {
- \OC::$composerAutoloader->addPsr4($appNamespace . '\\', $path . '/lib/', true);
- }
- // Register Test namespace only when testing
- if (defined('PHPUNIT_RUN') || defined('CLI_TEST_RUN')) {
- \OC::$composerAutoloader->addPsr4($appNamespace . '\\Tests\\', $path . '/tests/', true);
- }
- }
- /**
- * check if an app is of a specific type
- *
- * @param string $app
- * @param array $types
- * @return bool
- * @deprecated 27.0.0 use IAppManager::isType
- */
- public static function isType(string $app, array $types): bool {
- return \OC::$server->get(IAppManager::class)->isType($app, $types);
- }
- /**
- * read app types from info.xml and cache them in the database
- */
- public static function setAppTypes(string $app) {
- $appManager = \OC::$server->getAppManager();
- $appData = $appManager->getAppInfo($app);
- if (!is_array($appData)) {
- return;
- }
- if (isset($appData['types'])) {
- $appTypes = implode(',', $appData['types']);
- } else {
- $appTypes = '';
- $appData['types'] = [];
- }
- $config = \OC::$server->getConfig();
- $config->setAppValue($app, 'types', $appTypes);
- if ($appManager->hasProtectedAppType($appData['types'])) {
- $enabled = $config->getAppValue($app, 'enabled', 'yes');
- if ($enabled !== 'yes' && $enabled !== 'no') {
- $config->setAppValue($app, 'enabled', 'yes');
- }
- }
- }
- /**
- * Returns apps enabled for the current user.
- *
- * @param bool $forceRefresh whether to refresh the cache
- * @param bool $all whether to return apps for all users, not only the
- * currently logged in one
- * @return string[]
- */
- public static function getEnabledApps(bool $forceRefresh = false, bool $all = false): array {
- if (!\OC::$server->getSystemConfig()->getValue('installed', false)) {
- return [];
- }
- // in incognito mode or when logged out, $user will be false,
- // which is also the case during an upgrade
- $appManager = \OC::$server->getAppManager();
- if ($all) {
- $user = null;
- } else {
- $user = \OC::$server->getUserSession()->getUser();
- }
- if (is_null($user)) {
- $apps = $appManager->getInstalledApps();
- } else {
- $apps = $appManager->getEnabledAppsForUser($user);
- }
- $apps = array_filter($apps, function ($app) {
- return $app !== 'files';//we add this manually
- });
- sort($apps);
- array_unshift($apps, 'files');
- return $apps;
- }
- /**
- * enables an app
- *
- * @param string $appId
- * @param array $groups (optional) when set, only these groups will have access to the app
- * @throws \Exception
- * @return void
- *
- * This function set an app as enabled in appconfig.
- */
- public function enable(string $appId,
- array $groups = []) {
- // Check if app is already downloaded
- /** @var Installer $installer */
- $installer = \OC::$server->query(Installer::class);
- $isDownloaded = $installer->isDownloaded($appId);
- if (!$isDownloaded) {
- $installer->downloadApp($appId);
- }
- $installer->installApp($appId);
- $appManager = \OC::$server->getAppManager();
- if ($groups !== []) {
- $groupManager = \OC::$server->getGroupManager();
- $groupsList = [];
- foreach ($groups as $group) {
- $groupItem = $groupManager->get($group);
- if ($groupItem instanceof \OCP\IGroup) {
- $groupsList[] = $groupManager->get($group);
- }
- }
- $appManager->enableAppForGroups($appId, $groupsList);
- } else {
- $appManager->enableApp($appId);
- }
- }
- /**
- * Get the path where to install apps
- *
- * @return string|false
- */
- public static function getInstallPath() {
- foreach (OC::$APPSROOTS as $dir) {
- if (isset($dir['writable']) && $dir['writable'] === true) {
- return $dir['path'];
- }
- }
- \OCP\Util::writeLog('core', 'No application directories are marked as writable.', ILogger::ERROR);
- return null;
- }
- /**
- * search for an app in all app-directories
- *
- * @param string $appId
- * @param bool $ignoreCache ignore cache and rebuild it
- * @return false|string
- */
- public static function findAppInDirectories(string $appId, bool $ignoreCache = false) {
- $sanitizedAppId = self::cleanAppId($appId);
- if ($sanitizedAppId !== $appId) {
- return false;
- }
- static $app_dir = [];
- if (isset($app_dir[$appId]) && !$ignoreCache) {
- return $app_dir[$appId];
- }
- $possibleApps = [];
- foreach (OC::$APPSROOTS as $dir) {
- if (file_exists($dir['path'] . '/' . $appId)) {
- $possibleApps[] = $dir;
- }
- }
- if (empty($possibleApps)) {
- return false;
- } elseif (count($possibleApps) === 1) {
- $dir = array_shift($possibleApps);
- $app_dir[$appId] = $dir;
- return $dir;
- } else {
- $versionToLoad = [];
- foreach ($possibleApps as $possibleApp) {
- $version = self::getAppVersionByPath($possibleApp['path'] . '/' . $appId);
- if (empty($versionToLoad) || version_compare($version, $versionToLoad['version'], '>')) {
- $versionToLoad = [
- 'dir' => $possibleApp,
- 'version' => $version,
- ];
- }
- }
- $app_dir[$appId] = $versionToLoad['dir'];
- return $versionToLoad['dir'];
- //TODO - write test
- }
- }
- /**
- * Get the directory for the given app.
- * If the app is defined in multiple directories, the first one is taken. (false if not found)
- *
- * @psalm-taint-specialize
- *
- * @param string $appId
- * @param bool $refreshAppPath should be set to true only during install/upgrade
- * @return string|false
- * @deprecated 11.0.0 use \OC::$server->getAppManager()->getAppPath()
- */
- public static function getAppPath(string $appId, bool $refreshAppPath = false) {
- if ($appId === null || trim($appId) === '') {
- return false;
- }
- if (($dir = self::findAppInDirectories($appId, $refreshAppPath)) != false) {
- return $dir['path'] . '/' . $appId;
- }
- return false;
- }
- /**
- * Get the path for the given app on the access
- * If the app is defined in multiple directories, the first one is taken. (false if not found)
- *
- * @param string $appId
- * @return string|false
- * @deprecated 18.0.0 use \OC::$server->getAppManager()->getAppWebPath()
- */
- public static function getAppWebPath(string $appId) {
- if (($dir = self::findAppInDirectories($appId)) != false) {
- return OC::$WEBROOT . $dir['url'] . '/' . $appId;
- }
- return false;
- }
- /**
- * get app's version based on it's path
- *
- * @param string $path
- * @return string
- */
- public static function getAppVersionByPath(string $path): string {
- $infoFile = $path . '/appinfo/info.xml';
- $appData = \OC::$server->getAppManager()->getAppInfo($infoFile, true);
- return isset($appData['version']) ? $appData['version'] : '';
- }
- /**
- * get the id of loaded app
- *
- * @return string
- */
- public static function getCurrentApp(): string {
- if (\OC::$CLI) {
- return '';
- }
- $request = \OC::$server->getRequest();
- $script = substr($request->getScriptName(), strlen(OC::$WEBROOT) + 1);
- $topFolder = substr($script, 0, strpos($script, '/') ?: 0);
- if (empty($topFolder)) {
- try {
- $path_info = $request->getPathInfo();
- } catch (Exception $e) {
- // Can happen from unit tests because the script name is `./vendor/bin/phpunit` or something a like then.
- \OC::$server->get(LoggerInterface::class)->error('Failed to detect current app from script path', ['exception' => $e]);
- return '';
- }
- if ($path_info) {
- $topFolder = substr($path_info, 1, strpos($path_info, '/', 1) - 1);
- }
- }
- if ($topFolder == 'apps') {
- $length = strlen($topFolder);
- return substr($script, $length + 1, strpos($script, '/', $length + 1) - $length - 1) ?: '';
- } else {
- return $topFolder;
- }
- }
- /**
- * @param string $type
- * @return array
- */
- public static function getForms(string $type): array {
- $forms = [];
- switch ($type) {
- case 'admin':
- $source = self::$adminForms;
- break;
- case 'personal':
- $source = self::$personalForms;
- break;
- default:
- return [];
- }
- foreach ($source as $form) {
- $forms[] = include $form;
- }
- return $forms;
- }
- /**
- * @param array $entry
- * @deprecated 20.0.0 Please register your alternative login option using the registerAlternativeLogin() on the RegistrationContext in your Application class implementing the OCP\Authentication\IAlternativeLogin interface
- */
- public static function registerLogIn(array $entry) {
- \OC::$server->getLogger()->debug('OC_App::registerLogIn() is deprecated, please register your alternative login option using the registerAlternativeLogin() on the RegistrationContext in your Application class implementing the OCP\Authentication\IAlternativeLogin interface');
- self::$altLogin[] = $entry;
- }
- /**
- * @return array
- */
- public static function getAlternativeLogIns(): array {
- /** @var Coordinator $bootstrapCoordinator */
- $bootstrapCoordinator = \OC::$server->query(Coordinator::class);
- foreach ($bootstrapCoordinator->getRegistrationContext()->getAlternativeLogins() as $registration) {
- if (!in_array(IAlternativeLogin::class, class_implements($registration->getService()), true)) {
- \OC::$server->getLogger()->error('Alternative login option {option} does not implement {interface} and is therefore ignored.', [
- 'option' => $registration->getService(),
- 'interface' => IAlternativeLogin::class,
- 'app' => $registration->getAppId(),
- ]);
- continue;
- }
- try {
- /** @var IAlternativeLogin $provider */
- $provider = \OC::$server->query($registration->getService());
- } catch (QueryException $e) {
- \OC::$server->getLogger()->logException($e, [
- 'message' => 'Alternative login option {option} can not be initialised.',
- 'option' => $registration->getService(),
- 'app' => $registration->getAppId(),
- ]);
- }
- try {
- $provider->load();
- self::$altLogin[] = [
- 'name' => $provider->getLabel(),
- 'href' => $provider->getLink(),
- 'class' => $provider->getClass(),
- ];
- } catch (Throwable $e) {
- \OC::$server->getLogger()->logException($e, [
- 'message' => 'Alternative login option {option} had an error while loading.',
- 'option' => $registration->getService(),
- 'app' => $registration->getAppId(),
- ]);
- }
- }
- return self::$altLogin;
- }
- /**
- * get a list of all apps in the apps folder
- *
- * @return string[] an array of app names (string IDs)
- * @todo: change the name of this method to getInstalledApps, which is more accurate
- */
- public static function getAllApps(): array {
- $apps = [];
- foreach (OC::$APPSROOTS as $apps_dir) {
- if (!is_readable($apps_dir['path'])) {
- \OCP\Util::writeLog('core', 'unable to read app folder : ' . $apps_dir['path'], ILogger::WARN);
- continue;
- }
- $dh = opendir($apps_dir['path']);
- if (is_resource($dh)) {
- while (($file = readdir($dh)) !== false) {
- if ($file[0] != '.' and is_dir($apps_dir['path'] . '/' . $file) and is_file($apps_dir['path'] . '/' . $file . '/appinfo/info.xml')) {
- $apps[] = $file;
- }
- }
- }
- }
- $apps = array_unique($apps);
- return $apps;
- }
- /**
- * List all supported apps
- *
- * @return array
- */
- public function getSupportedApps(): array {
- /** @var \OCP\Support\Subscription\IRegistry $subscriptionRegistry */
- $subscriptionRegistry = \OC::$server->query(\OCP\Support\Subscription\IRegistry::class);
- $supportedApps = $subscriptionRegistry->delegateGetSupportedApps();
- return $supportedApps;
- }
- /**
- * List all apps, this is used in apps.php
- *
- * @return array
- */
- public function listAllApps(): array {
- $installedApps = OC_App::getAllApps();
- $appManager = \OC::$server->getAppManager();
- //we don't want to show configuration for these
- $blacklist = $appManager->getAlwaysEnabledApps();
- $appList = [];
- $langCode = \OC::$server->getL10N('core')->getLanguageCode();
- $urlGenerator = \OC::$server->getURLGenerator();
- $supportedApps = $this->getSupportedApps();
- foreach ($installedApps as $app) {
- if (array_search($app, $blacklist) === false) {
- $info = $appManager->getAppInfo($app, false, $langCode);
- if (!is_array($info)) {
- \OCP\Util::writeLog('core', 'Could not read app info file for app "' . $app . '"', ILogger::ERROR);
- continue;
- }
- if (!isset($info['name'])) {
- \OCP\Util::writeLog('core', 'App id "' . $app . '" has no name in appinfo', ILogger::ERROR);
- continue;
- }
- $enabled = \OC::$server->getConfig()->getAppValue($app, 'enabled', 'no');
- $info['groups'] = null;
- if ($enabled === 'yes') {
- $active = true;
- } elseif ($enabled === 'no') {
- $active = false;
- } else {
- $active = true;
- $info['groups'] = $enabled;
- }
- $info['active'] = $active;
- if ($appManager->isShipped($app)) {
- $info['internal'] = true;
- $info['level'] = self::officialApp;
- $info['removable'] = false;
- } else {
- $info['internal'] = false;
- $info['removable'] = true;
- }
- if (in_array($app, $supportedApps)) {
- $info['level'] = self::supportedApp;
- }
- $appPath = self::getAppPath($app);
- if ($appPath !== false) {
- $appIcon = $appPath . '/img/' . $app . '.svg';
- if (file_exists($appIcon)) {
- $info['preview'] = $urlGenerator->imagePath($app, $app . '.svg');
- $info['previewAsIcon'] = true;
- } else {
- $appIcon = $appPath . '/img/app.svg';
- if (file_exists($appIcon)) {
- $info['preview'] = $urlGenerator->imagePath($app, 'app.svg');
- $info['previewAsIcon'] = true;
- }
- }
- }
- // fix documentation
- if (isset($info['documentation']) && is_array($info['documentation'])) {
- foreach ($info['documentation'] as $key => $url) {
- // If it is not an absolute URL we assume it is a key
- // i.e. admin-ldap will get converted to go.php?to=admin-ldap
- if (stripos($url, 'https://') !== 0 && stripos($url, 'http://') !== 0) {
- $url = $urlGenerator->linkToDocs($url);
- }
- $info['documentation'][$key] = $url;
- }
- }
- $info['version'] = $appManager->getAppVersion($app);
- $appList[] = $info;
- }
- }
- return $appList;
- }
- public static function shouldUpgrade(string $app): bool {
- $versions = self::getAppVersions();
- $currentVersion = \OCP\Server::get(\OCP\App\IAppManager::class)->getAppVersion($app);
- if ($currentVersion && isset($versions[$app])) {
- $installedVersion = $versions[$app];
- if (!version_compare($currentVersion, $installedVersion, '=')) {
- return true;
- }
- }
- return false;
- }
- /**
- * Adjust the number of version parts of $version1 to match
- * the number of version parts of $version2.
- *
- * @param string $version1 version to adjust
- * @param string $version2 version to take the number of parts from
- * @return string shortened $version1
- */
- private static function adjustVersionParts(string $version1, string $version2): string {
- $version1 = explode('.', $version1);
- $version2 = explode('.', $version2);
- // reduce $version1 to match the number of parts in $version2
- while (count($version1) > count($version2)) {
- array_pop($version1);
- }
- // if $version1 does not have enough parts, add some
- while (count($version1) < count($version2)) {
- $version1[] = '0';
- }
- return implode('.', $version1);
- }
- /**
- * Check whether the current ownCloud version matches the given
- * application's version requirements.
- *
- * The comparison is made based on the number of parts that the
- * app info version has. For example for ownCloud 6.0.3 if the
- * app info version is expecting version 6.0, the comparison is
- * made on the first two parts of the ownCloud version.
- * This means that it's possible to specify "requiremin" => 6
- * and "requiremax" => 6 and it will still match ownCloud 6.0.3.
- *
- * @param string $ocVersion ownCloud version to check against
- * @param array $appInfo app info (from xml)
- *
- * @return boolean true if compatible, otherwise false
- */
- public static function isAppCompatible(string $ocVersion, array $appInfo, bool $ignoreMax = false): bool {
- $requireMin = '';
- $requireMax = '';
- if (isset($appInfo['dependencies']['nextcloud']['@attributes']['min-version'])) {
- $requireMin = $appInfo['dependencies']['nextcloud']['@attributes']['min-version'];
- } elseif (isset($appInfo['dependencies']['owncloud']['@attributes']['min-version'])) {
- $requireMin = $appInfo['dependencies']['owncloud']['@attributes']['min-version'];
- } elseif (isset($appInfo['requiremin'])) {
- $requireMin = $appInfo['requiremin'];
- } elseif (isset($appInfo['require'])) {
- $requireMin = $appInfo['require'];
- }
- if (isset($appInfo['dependencies']['nextcloud']['@attributes']['max-version'])) {
- $requireMax = $appInfo['dependencies']['nextcloud']['@attributes']['max-version'];
- } elseif (isset($appInfo['dependencies']['owncloud']['@attributes']['max-version'])) {
- $requireMax = $appInfo['dependencies']['owncloud']['@attributes']['max-version'];
- } elseif (isset($appInfo['requiremax'])) {
- $requireMax = $appInfo['requiremax'];
- }
- if (!empty($requireMin)
- && version_compare(self::adjustVersionParts($ocVersion, $requireMin), $requireMin, '<')
- ) {
- return false;
- }
- if (!$ignoreMax && !empty($requireMax)
- && version_compare(self::adjustVersionParts($ocVersion, $requireMax), $requireMax, '>')
- ) {
- return false;
- }
- return true;
- }
- /**
- * get the installed version of all apps
- */
- public static function getAppVersions() {
- static $versions;
- if (!$versions) {
- $appConfig = \OC::$server->getAppConfig();
- $versions = $appConfig->getValues(false, 'installed_version');
- }
- return $versions;
- }
- /**
- * update the database for the app and call the update script
- *
- * @param string $appId
- * @return bool
- */
- public static function updateApp(string $appId): bool {
- // for apps distributed with core, we refresh app path in case the downloaded version
- // have been installed in custom apps and not in the default path
- $appPath = self::getAppPath($appId, true);
- if ($appPath === false) {
- return false;
- }
- if (is_file($appPath . '/appinfo/database.xml')) {
- \OC::$server->getLogger()->error('The appinfo/database.xml file is not longer supported. Used in ' . $appId);
- return false;
- }
- \OC::$server->getAppManager()->clearAppsCache();
- $l = \OC::$server->getL10N('core');
- $appData = \OCP\Server::get(\OCP\App\IAppManager::class)->getAppInfo($appId, false, $l->getLanguageCode());
- $ignoreMaxApps = \OC::$server->getConfig()->getSystemValue('app_install_overwrite', []);
- $ignoreMax = in_array($appId, $ignoreMaxApps, true);
- \OC_App::checkAppDependencies(
- \OC::$server->getConfig(),
- $l,
- $appData,
- $ignoreMax
- );
- self::registerAutoloading($appId, $appPath, true);
- self::executeRepairSteps($appId, $appData['repair-steps']['pre-migration']);
- $ms = new MigrationService($appId, \OC::$server->get(\OC\DB\Connection::class));
- $ms->migrate();
- self::executeRepairSteps($appId, $appData['repair-steps']['post-migration']);
- self::setupLiveMigrations($appId, $appData['repair-steps']['live-migration']);
- // update appversion in app manager
- \OC::$server->getAppManager()->clearAppsCache();
- \OC::$server->getAppManager()->getAppVersion($appId, false);
- self::setupBackgroundJobs($appData['background-jobs']);
- //set remote/public handlers
- if (array_key_exists('ocsid', $appData)) {
- \OC::$server->getConfig()->setAppValue($appId, 'ocsid', $appData['ocsid']);
- } elseif (\OC::$server->getConfig()->getAppValue($appId, 'ocsid', null) !== null) {
- \OC::$server->getConfig()->deleteAppValue($appId, 'ocsid');
- }
- foreach ($appData['remote'] as $name => $path) {
- \OC::$server->getConfig()->setAppValue('core', 'remote_' . $name, $appId . '/' . $path);
- }
- foreach ($appData['public'] as $name => $path) {
- \OC::$server->getConfig()->setAppValue('core', 'public_' . $name, $appId . '/' . $path);
- }
- self::setAppTypes($appId);
- $version = \OCP\Server::get(\OCP\App\IAppManager::class)->getAppVersion($appId);
- \OC::$server->getConfig()->setAppValue($appId, 'installed_version', $version);
- \OC::$server->get(IEventDispatcher::class)->dispatchTyped(new AppUpdateEvent($appId));
- \OC::$server->getEventDispatcher()->dispatch(ManagerEvent::EVENT_APP_UPDATE, new ManagerEvent(
- ManagerEvent::EVENT_APP_UPDATE, $appId
- ));
- return true;
- }
- /**
- * @param string $appId
- * @param string[] $steps
- * @throws \OC\NeedsUpdateException
- */
- public static function executeRepairSteps(string $appId, array $steps) {
- if (empty($steps)) {
- return;
- }
- // load the app
- self::loadApp($appId);
- $dispatcher = \OC::$server->get(IEventDispatcher::class);
- // load the steps
- $r = new Repair([], $dispatcher, \OC::$server->get(LoggerInterface::class));
- foreach ($steps as $step) {
- try {
- $r->addStep($step);
- } catch (Exception $ex) {
- $dispatcher->dispatchTyped(new RepairErrorEvent($ex->getMessage()));
- \OC::$server->getLogger()->logException($ex);
- }
- }
- // run the steps
- $r->run();
- }
- public static function setupBackgroundJobs(array $jobs) {
- $queue = \OC::$server->getJobList();
- foreach ($jobs as $job) {
- $queue->add($job);
- }
- }
- /**
- * @param string $appId
- * @param string[] $steps
- */
- private static function setupLiveMigrations(string $appId, array $steps) {
- $queue = \OC::$server->getJobList();
- foreach ($steps as $step) {
- $queue->add('OC\Migration\BackgroundRepair', [
- 'app' => $appId,
- 'step' => $step]);
- }
- }
- /**
- * @param string $appId
- * @return \OC\Files\View|false
- */
- public static function getStorage(string $appId) {
- if (\OC::$server->getAppManager()->isEnabledForUser($appId)) { //sanity check
- if (\OC::$server->getUserSession()->isLoggedIn()) {
- $view = new \OC\Files\View('/' . OC_User::getUser());
- if (!$view->file_exists($appId)) {
- $view->mkdir($appId);
- }
- return new \OC\Files\View('/' . OC_User::getUser() . '/' . $appId);
- } else {
- \OCP\Util::writeLog('core', 'Can\'t get app storage, app ' . $appId . ', user not logged in', ILogger::ERROR);
- return false;
- }
- } else {
- \OCP\Util::writeLog('core', 'Can\'t get app storage, app ' . $appId . ' not enabled', ILogger::ERROR);
- return false;
- }
- }
- protected static function findBestL10NOption(array $options, string $lang): string {
- // only a single option
- if (isset($options['@value'])) {
- return $options['@value'];
- }
- $fallback = $similarLangFallback = $englishFallback = false;
- $lang = strtolower($lang);
- $similarLang = $lang;
- if (strpos($similarLang, '_')) {
- // For "de_DE" we want to find "de" and the other way around
- $similarLang = substr($lang, 0, strpos($lang, '_'));
- }
- foreach ($options as $option) {
- if (is_array($option)) {
- if ($fallback === false) {
- $fallback = $option['@value'];
- }
- if (!isset($option['@attributes']['lang'])) {
- continue;
- }
- $attributeLang = strtolower($option['@attributes']['lang']);
- if ($attributeLang === $lang) {
- return $option['@value'];
- }
- if ($attributeLang === $similarLang) {
- $similarLangFallback = $option['@value'];
- } elseif (str_starts_with($attributeLang, $similarLang . '_')) {
- if ($similarLangFallback === false) {
- $similarLangFallback = $option['@value'];
- }
- }
- } else {
- $englishFallback = $option;
- }
- }
- if ($similarLangFallback !== false) {
- return $similarLangFallback;
- } elseif ($englishFallback !== false) {
- return $englishFallback;
- }
- return (string) $fallback;
- }
- /**
- * parses the app data array and enhanced the 'description' value
- *
- * @param array $data the app data
- * @param string $lang
- * @return array improved app data
- */
- public static function parseAppInfo(array $data, $lang = null): array {
- if ($lang && isset($data['name']) && is_array($data['name'])) {
- $data['name'] = self::findBestL10NOption($data['name'], $lang);
- }
- if ($lang && isset($data['summary']) && is_array($data['summary'])) {
- $data['summary'] = self::findBestL10NOption($data['summary'], $lang);
- }
- if ($lang && isset($data['description']) && is_array($data['description'])) {
- $data['description'] = trim(self::findBestL10NOption($data['description'], $lang));
- } elseif (isset($data['description']) && is_string($data['description'])) {
- $data['description'] = trim($data['description']);
- } else {
- $data['description'] = '';
- }
- return $data;
- }
- /**
- * @param \OCP\IConfig $config
- * @param \OCP\IL10N $l
- * @param array $info
- * @throws \Exception
- */
- public static function checkAppDependencies(\OCP\IConfig $config, \OCP\IL10N $l, array $info, bool $ignoreMax) {
- $dependencyAnalyzer = new DependencyAnalyzer(new Platform($config), $l);
- $missing = $dependencyAnalyzer->analyze($info, $ignoreMax);
- if (!empty($missing)) {
- $missingMsg = implode(PHP_EOL, $missing);
- throw new \Exception(
- $l->t('App "%1$s" cannot be installed because the following dependencies are not fulfilled: %2$s',
- [$info['name'], $missingMsg]
- )
- );
- }
- }
- }
|