2011-03-03 23:55:32 +03:00
|
|
|
<?php
|
2011-03-11 17:25:48 +03:00
|
|
|
/**
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@owncloud.com>
|
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* @author Bernhard Posselt <dev@bernhard-posselt.com>
|
|
|
|
* @author Björn Schießle <schiessle@owncloud.com>
|
|
|
|
* @author Borjan Tchakaloff <borjan@tchakaloff.fr>
|
|
|
|
* @author Brice Maron <brice@bmaron.net>
|
|
|
|
* @author Christopher Schäpers <kondou@ts.unde.re>
|
|
|
|
* @author Felix Moeller <mail@felixmoeller.de>
|
|
|
|
* @author Frank Karlitschek <frank@owncloud.org>
|
|
|
|
* @author Georg Ehrke <georg@owncloud.com>
|
|
|
|
* @author Jakob Sack <mail@jakobsack.de>
|
|
|
|
* @author Jan-Christoph Borchardt <hey@jancborchardt.net>
|
|
|
|
* @author Joas Schilling <nickvergessen@owncloud.com>
|
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
|
|
|
* @author Kamil Domanski <kdomanski@kdemail.net>
|
|
|
|
* @author Lukas Reschke <lukas@owncloud.com>
|
|
|
|
* @author Markus Goetz <markus@woboq.com>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
|
|
|
* @author Robin McCorkell <rmccorkell@karoshi.org.uk>
|
|
|
|
* @author Sam Tuke <mail@samtuke.com>
|
|
|
|
* @author Scrutinizer Auto-Fixer <auto-fixer@scrutinizer-ci.com>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Thomas Tanghus <thomas@tanghus.net>
|
|
|
|
* @author Tom Needham <tom@owncloud.com>
|
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
2011-03-11 17:25:48 +03:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @license AGPL-3.0
|
2014-05-21 14:14:10 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* 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.
|
2014-05-21 14:14:10 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2011-03-11 17:25:48 +03:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 13:44:34 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2011-03-11 17:25:48 +03:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* 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/>
|
2011-03-11 17:25:48 +03:00
|
|
|
*
|
|
|
|
*/
|
2014-12-11 19:02:07 +03:00
|
|
|
use OC\App\DependencyAnalyzer;
|
|
|
|
use OC\App\Platform;
|
2015-02-10 00:48:27 +03:00
|
|
|
use OC\OCSClient;
|
2011-03-11 17:25:48 +03:00
|
|
|
|
2011-03-12 12:28:10 +03:00
|
|
|
/**
|
|
|
|
* This class manages the apps. It allows them to register and integrate in the
|
2014-07-09 12:20:17 +04:00
|
|
|
* ownCloud ecosystem. Furthermore, this class is responsible for installing,
|
2011-03-12 12:28:10 +03:00
|
|
|
* upgrading and removing apps.
|
|
|
|
*/
|
2014-04-17 17:30:27 +04:00
|
|
|
class OC_App {
|
2015-02-03 16:13:44 +03:00
|
|
|
static private $appVersion = [];
|
2011-08-09 01:32:54 +04:00
|
|
|
static private $adminForms = array();
|
|
|
|
static private $personalForms = array();
|
2012-03-30 16:39:07 +04:00
|
|
|
static private $appInfo = array();
|
2012-04-14 19:53:02 +04:00
|
|
|
static private $appTypes = array();
|
2012-06-04 23:30:58 +04:00
|
|
|
static private $loadedApps = array();
|
2013-01-29 20:28:08 +04:00
|
|
|
static private $altLogin = array();
|
2015-03-13 13:18:39 +03:00
|
|
|
private static $shippedApps = null;
|
2015-03-30 16:58:20 +03:00
|
|
|
const officialApp = 200;
|
2011-03-03 23:55:32 +03:00
|
|
|
|
2013-02-09 18:03:47 +04:00
|
|
|
/**
|
2014-07-09 12:20:17 +04:00
|
|
|
* clean the appId
|
2015-02-02 16:47:38 +03:00
|
|
|
*
|
2014-07-09 12:20:17 +04:00
|
|
|
* @param string|boolean $app AppId that needs to be cleaned
|
2013-02-09 18:03:47 +04:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function cleanAppId($app) {
|
|
|
|
return str_replace(array('\0', '/', '\\', '..'), '', $app);
|
|
|
|
}
|
|
|
|
|
2011-03-03 23:55:32 +03:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* loads all apps
|
2015-02-02 16:47:38 +03:00
|
|
|
*
|
2012-03-30 16:39:07 +04:00
|
|
|
* @param array $types
|
2012-09-23 04:39:11 +04:00
|
|
|
* @return bool
|
2011-03-03 23:55:32 +03:00
|
|
|
*
|
2014-07-09 12:20:17 +04:00
|
|
|
* This function walks through the ownCloud directory and loads all apps
|
2015-03-17 17:33:55 +03:00
|
|
|
* it can find. A directory contains an app if the file /appinfo/info.xml
|
2011-03-11 16:59:24 +03:00
|
|
|
* exists.
|
2012-03-30 16:39:07 +04:00
|
|
|
*
|
|
|
|
* if $types is set, only apps of those types will be loaded
|
2011-03-03 23:55:32 +03:00
|
|
|
*/
|
2014-04-17 17:30:27 +04:00
|
|
|
public static function loadApps($types = null) {
|
2014-07-24 19:51:28 +04:00
|
|
|
if (OC_Config::getValue('maintenance', false)) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-05-31 15:00:58 +04:00
|
|
|
// Load the enabled apps here
|
2012-03-30 16:00:24 +04:00
|
|
|
$apps = self::getEnabledApps();
|
2012-05-26 22:40:12 +04:00
|
|
|
// prevent app.php from printing output
|
|
|
|
ob_start();
|
2014-04-17 17:30:27 +04:00
|
|
|
foreach ($apps as $app) {
|
|
|
|
if ((is_null($types) or self::isType($app, $types)) && !in_array($app, self::$loadedApps)) {
|
2012-06-04 23:30:58 +04:00
|
|
|
self::$loadedApps[] = $app;
|
2014-01-31 18:12:21 +04:00
|
|
|
self::loadApp($app);
|
2011-06-19 17:18:52 +04:00
|
|
|
}
|
2011-03-03 23:55:32 +03:00
|
|
|
}
|
2012-05-26 22:40:12 +04:00
|
|
|
ob_end_clean();
|
2011-03-03 23:55:32 +03:00
|
|
|
|
2013-02-09 20:27:57 +04:00
|
|
|
return true;
|
|
|
|
}
|
2011-03-03 23:55:32 +03:00
|
|
|
|
2012-05-14 02:28:22 +04:00
|
|
|
/**
|
|
|
|
* load a single app
|
2014-04-17 17:30:27 +04:00
|
|
|
*
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $app
|
2014-07-24 19:51:28 +04:00
|
|
|
* @param bool $checkUpgrade whether an upgrade check should be done
|
2014-07-24 19:16:34 +04:00
|
|
|
* @throws \OC\NeedsUpdateException
|
2012-05-14 02:28:22 +04:00
|
|
|
*/
|
2014-07-24 19:51:28 +04:00
|
|
|
public static function loadApp($app, $checkUpgrade = true) {
|
2014-04-17 17:30:27 +04:00
|
|
|
if (is_file(self::getAppPath($app) . '/appinfo/app.php')) {
|
2014-10-04 00:13:55 +04:00
|
|
|
\OC::$server->getEventLogger()->start('load_app_' . $app, 'Load app: ' . $app);
|
2014-07-24 19:51:28 +04:00
|
|
|
if ($checkUpgrade and self::shouldUpgrade($app)) {
|
2014-07-24 19:16:34 +04:00
|
|
|
throw new \OC\NeedsUpdateException();
|
|
|
|
}
|
2014-10-17 14:28:27 +04:00
|
|
|
self::requireAppFile($app);
|
2014-10-09 15:22:14 +04:00
|
|
|
if (self::isType($app, array('authentication'))) {
|
|
|
|
// since authentication apps affect the "is app enabled for group" check,
|
|
|
|
// the enabled apps cache needs to be cleared to make sure that the
|
|
|
|
// next time getEnableApps() is called it will also include apps that were
|
|
|
|
// enabled for groups
|
|
|
|
self::$enabledAppsCache = array();
|
|
|
|
}
|
2014-10-04 00:13:55 +04:00
|
|
|
\OC::$server->getEventLogger()->end('load_app_' . $app);
|
2012-05-14 02:28:22 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-17 14:28:27 +04:00
|
|
|
/**
|
|
|
|
* Load app.php from the given app
|
|
|
|
*
|
|
|
|
* @param string $app app name
|
|
|
|
*/
|
|
|
|
private static function requireAppFile($app) {
|
|
|
|
// encapsulated here to avoid variable scope conflicts
|
|
|
|
require_once $app . '/appinfo/app.php';
|
|
|
|
}
|
|
|
|
|
2012-03-30 16:39:07 +04:00
|
|
|
/**
|
2012-05-14 19:58:50 +04:00
|
|
|
* check if an app is of a specific type
|
2014-04-17 17:30:27 +04:00
|
|
|
*
|
2012-03-30 16:39:07 +04:00
|
|
|
* @param string $app
|
2014-04-21 14:54:45 +04:00
|
|
|
* @param string|array $types
|
2012-09-23 04:39:11 +04:00
|
|
|
* @return bool
|
2012-03-30 16:39:07 +04:00
|
|
|
*/
|
2012-11-02 22:53:02 +04:00
|
|
|
public static function isType($app, $types) {
|
2014-04-17 17:30:27 +04:00
|
|
|
if (is_string($types)) {
|
|
|
|
$types = array($types);
|
2012-03-30 16:39:07 +04:00
|
|
|
}
|
2014-04-17 17:30:27 +04:00
|
|
|
$appTypes = self::getAppTypes($app);
|
|
|
|
foreach ($types as $type) {
|
|
|
|
if (array_search($type, $appTypes) !== false) {
|
2012-03-30 16:39:07 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2012-05-02 13:14:11 +04:00
|
|
|
|
2012-04-14 19:53:02 +04:00
|
|
|
/**
|
|
|
|
* get the types of an app
|
2014-04-17 17:30:27 +04:00
|
|
|
*
|
2012-04-14 19:53:02 +04:00
|
|
|
* @param string $app
|
|
|
|
* @return array
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
private static function getAppTypes($app) {
|
2012-04-14 19:53:02 +04:00
|
|
|
//load the cache
|
2014-04-17 17:30:27 +04:00
|
|
|
if (count(self::$appTypes) == 0) {
|
|
|
|
self::$appTypes = OC_Appconfig::getValues(false, 'types');
|
2012-04-14 19:53:02 +04:00
|
|
|
}
|
2012-05-02 13:14:11 +04:00
|
|
|
|
2014-04-17 17:30:27 +04:00
|
|
|
if (isset(self::$appTypes[$app])) {
|
2012-09-04 14:32:27 +04:00
|
|
|
return explode(',', self::$appTypes[$app]);
|
2014-04-17 17:30:27 +04:00
|
|
|
} else {
|
2012-05-20 20:51:45 +04:00
|
|
|
return array();
|
|
|
|
}
|
2012-05-15 00:49:20 +04:00
|
|
|
}
|
2012-05-02 13:14:11 +04:00
|
|
|
|
2012-05-15 00:49:20 +04:00
|
|
|
/**
|
|
|
|
* read app types from info.xml and cache them in the database
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function setAppTypes($app) {
|
2014-04-17 17:30:27 +04:00
|
|
|
$appData = self::getAppInfo($app);
|
2012-06-04 23:30:58 +04:00
|
|
|
|
2014-04-17 17:30:27 +04:00
|
|
|
if (isset($appData['types'])) {
|
|
|
|
$appTypes = implode(',', $appData['types']);
|
|
|
|
} else {
|
|
|
|
$appTypes = '';
|
2012-04-14 19:53:02 +04:00
|
|
|
}
|
2012-05-02 13:14:11 +04:00
|
|
|
|
2012-09-04 14:32:27 +04:00
|
|
|
OC_Appconfig::setValue($app, 'types', $appTypes);
|
2012-04-14 19:53:02 +04:00
|
|
|
}
|
2013-01-14 23:30:39 +04:00
|
|
|
|
2012-07-29 19:29:26 +04:00
|
|
|
/**
|
|
|
|
* check if app is shipped
|
2014-04-17 17:30:27 +04:00
|
|
|
*
|
2014-07-09 12:20:17 +04:00
|
|
|
* @param string $appId the id of the app to check
|
2012-07-29 19:29:26 +04:00
|
|
|
* @return bool
|
2013-01-21 23:40:23 +04:00
|
|
|
*
|
|
|
|
* Check if an app that is installed is a shipped app or installed from the appstore.
|
2012-07-29 19:29:26 +04:00
|
|
|
*/
|
2014-07-09 12:20:17 +04:00
|
|
|
public static function isShipped($appId) {
|
2015-03-13 13:18:39 +03:00
|
|
|
if (is_null(self::$shippedApps)) {
|
|
|
|
$shippedJson = \OC::$SERVERROOT . '/core/shipped.json';
|
|
|
|
if (file_exists($shippedJson)) {
|
|
|
|
self::$shippedApps = json_decode(file_get_contents($shippedJson), true);
|
|
|
|
self::$shippedApps = self::$shippedApps['shippedApps'];
|
|
|
|
} else {
|
2015-03-30 23:36:48 +03:00
|
|
|
self::$shippedApps = ['files', 'encryption', 'files_external',
|
2015-03-13 13:18:39 +03:00
|
|
|
'files_sharing', 'files_trashbin', 'files_versions', 'provisioning_api',
|
|
|
|
'user_ldap', 'user_webdavauth'];
|
|
|
|
}
|
2012-07-29 19:29:26 +04:00
|
|
|
}
|
2015-03-13 13:18:39 +03:00
|
|
|
return in_array($appId, self::$shippedApps);
|
2012-07-29 19:29:26 +04:00
|
|
|
}
|
2012-03-30 16:39:07 +04:00
|
|
|
|
2012-03-30 16:00:24 +04:00
|
|
|
/**
|
|
|
|
* get all enabled apps
|
|
|
|
*/
|
2014-07-01 18:55:29 +04:00
|
|
|
protected static $enabledAppsCache = array();
|
2014-04-17 17:30:27 +04:00
|
|
|
|
2014-09-02 16:30:46 +04:00
|
|
|
/**
|
|
|
|
* 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
|
2015-02-02 16:47:38 +03:00
|
|
|
* @return string[]
|
2014-09-02 16:30:46 +04:00
|
|
|
*/
|
|
|
|
public static function getEnabledApps($forceRefresh = false, $all = false) {
|
2014-04-17 17:30:27 +04:00
|
|
|
if (!OC_Config::getValue('installed', false)) {
|
2012-06-22 01:29:18 +04:00
|
|
|
return array();
|
2013-02-10 01:43:35 +04:00
|
|
|
}
|
2014-09-02 16:30:46 +04:00
|
|
|
// in incognito mode or when logged out, $user will be false,
|
|
|
|
// which is also the case during an upgrade
|
2015-02-02 16:47:38 +03:00
|
|
|
$appManager = \OC::$server->getAppManager();
|
|
|
|
if ($all) {
|
|
|
|
$user = null;
|
|
|
|
} else {
|
|
|
|
$user = \OC::$server->getUserSession()->getUser();
|
2013-10-05 21:18:18 +04:00
|
|
|
}
|
2015-02-02 16:47:38 +03:00
|
|
|
|
|
|
|
if (is_null($user)) {
|
|
|
|
$apps = $appManager->getInstalledApps();
|
|
|
|
} else {
|
2015-02-05 17:11:07 +03:00
|
|
|
$apps = $appManager->getEnabledAppsForUser($user);
|
2012-03-30 16:00:24 +04:00
|
|
|
}
|
2015-02-02 16:47:38 +03:00
|
|
|
$apps = array_filter($apps, function ($app) {
|
|
|
|
return $app !== 'files';//we add this manually
|
|
|
|
});
|
2014-04-21 15:38:08 +04:00
|
|
|
sort($apps);
|
|
|
|
array_unshift($apps, 'files');
|
2012-03-30 16:00:24 +04:00
|
|
|
return $apps;
|
|
|
|
}
|
|
|
|
|
2011-06-19 17:18:52 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* checks whether or not an app is enabled
|
2015-02-02 16:47:38 +03:00
|
|
|
*
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $app app
|
|
|
|
* @return bool
|
2011-06-19 17:18:52 +04:00
|
|
|
*
|
|
|
|
* This function checks whether or not an app is enabled.
|
|
|
|
*/
|
2014-04-17 17:30:27 +04:00
|
|
|
public static function isEnabled($app) {
|
|
|
|
if ('files' == $app) {
|
2011-06-19 17:18:52 +04:00
|
|
|
return true;
|
|
|
|
}
|
2015-02-02 16:47:38 +03:00
|
|
|
return \OC::$server->getAppManager()->isEnabledForUser($app);
|
2011-06-19 17:18:52 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* enables an app
|
2015-02-02 16:47:38 +03:00
|
|
|
*
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param mixed $app app
|
2014-04-18 16:29:45 +04:00
|
|
|
* @param array $groups (optional) when set, only these groups will have access to the app
|
2013-08-06 19:19:18 +04:00
|
|
|
* @throws \Exception
|
|
|
|
* @return void
|
2011-06-19 17:18:52 +04:00
|
|
|
*
|
|
|
|
* This function set an app as enabled in appconfig.
|
|
|
|
*/
|
2014-04-18 16:29:45 +04:00
|
|
|
public static function enable($app, $groups = null) {
|
2013-10-05 21:18:18 +04:00
|
|
|
self::$enabledAppsCache = array(); // flush
|
2014-05-21 14:14:10 +04:00
|
|
|
if (!OC_Installer::isInstalled($app)) {
|
|
|
|
$app = self::installApp($app);
|
2011-08-22 16:17:38 +04:00
|
|
|
}
|
2014-05-21 14:14:10 +04:00
|
|
|
|
2015-02-16 18:44:51 +03:00
|
|
|
$appManager = \OC::$server->getAppManager();
|
2014-06-06 00:54:27 +04:00
|
|
|
if (!is_null($groups)) {
|
2015-03-24 14:56:42 +03:00
|
|
|
$groupManager = \OC::$server->getGroupManager();
|
|
|
|
$groupsList = [];
|
|
|
|
foreach ($groups as $group) {
|
|
|
|
$groupItem = $groupManager->get($group);
|
|
|
|
if ($groupItem instanceof \OCP\IGroup) {
|
|
|
|
$groupsList[] = $groupManager->get($group);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$appManager->enableAppForGroups($app, $groupsList);
|
2015-02-02 16:47:38 +03:00
|
|
|
} else {
|
2015-02-16 18:44:51 +03:00
|
|
|
$appManager->enableApp($app);
|
2014-06-06 00:54:27 +04:00
|
|
|
}
|
2014-05-21 14:14:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $app
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public static function downloadApp($app) {
|
2015-03-30 16:58:20 +03:00
|
|
|
$ocsClient = new OCSClient(
|
|
|
|
\OC::$server->getHTTPClientService(),
|
|
|
|
\OC::$server->getConfig(),
|
|
|
|
\OC::$server->getLogger()
|
|
|
|
);
|
|
|
|
$appData = $ocsClient->getApplication($app);
|
|
|
|
$download= $ocsClient->getApplicationDownload($app);
|
2015-02-10 00:48:27 +03:00
|
|
|
if(isset($download['downloadlink']) and $download['downloadlink']!='') {
|
2014-05-21 14:14:10 +04:00
|
|
|
// Replace spaces in download link without encoding entire URL
|
|
|
|
$download['downloadlink'] = str_replace(' ', '%20', $download['downloadlink']);
|
2015-02-02 16:47:38 +03:00
|
|
|
$info = array('source' => 'http', 'href' => $download['downloadlink'], 'appdata' => $appData);
|
|
|
|
$app = OC_Installer::installApp($info);
|
2012-04-14 14:57:03 +04:00
|
|
|
}
|
2014-05-21 14:14:10 +04:00
|
|
|
return $app;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $app
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public static function removeApp($app) {
|
|
|
|
if (self::isShipped($app)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return OC_Installer::removeApp($app);
|
2011-06-19 17:18:52 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-11-09 14:32:06 +04:00
|
|
|
* This function set an app as disabled in appconfig.
|
2015-02-02 16:47:38 +03:00
|
|
|
*
|
2014-06-10 15:51:20 +04:00
|
|
|
* @param string $app app
|
2015-02-12 02:11:38 +03:00
|
|
|
* @throws Exception
|
2011-06-19 17:18:52 +04:00
|
|
|
*/
|
2014-04-17 17:30:27 +04:00
|
|
|
public static function disable($app) {
|
2015-03-06 02:16:17 +03:00
|
|
|
// Convert OCS ID to regular application identifier
|
|
|
|
if(self::getInternalAppIdByOcs($app) !== false) {
|
|
|
|
$app = self::getInternalAppIdByOcs($app);
|
|
|
|
}
|
|
|
|
|
2015-02-03 02:39:01 +03:00
|
|
|
if($app === 'files') {
|
2015-02-03 02:52:04 +03:00
|
|
|
throw new \Exception("files can't be disabled.");
|
2015-02-03 02:39:01 +03:00
|
|
|
}
|
2013-10-05 21:18:18 +04:00
|
|
|
self::$enabledAppsCache = array(); // flush
|
2013-01-31 13:27:02 +04:00
|
|
|
// check if app is a shipped app or not. if not delete
|
2013-06-27 16:09:22 +04:00
|
|
|
\OC_Hook::emit('OC_App', 'pre_disable', array('app' => $app));
|
2015-02-16 18:44:51 +03:00
|
|
|
$appManager = \OC::$server->getAppManager();
|
|
|
|
$appManager->disableApp($app);
|
2011-06-19 17:18:52 +04:00
|
|
|
}
|
|
|
|
|
2011-03-11 16:59:24 +03:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* marks a navigation entry as active
|
2015-02-02 16:47:38 +03:00
|
|
|
*
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $id id of the entry
|
|
|
|
* @return bool
|
2011-03-11 16:59:24 +03:00
|
|
|
*
|
2011-06-20 21:50:25 +04:00
|
|
|
* This function sets a navigation entry as active and removes the 'active'
|
2011-03-11 16:59:24 +03:00
|
|
|
* property from all other entries. The templates can use this for
|
|
|
|
* highlighting the current position of the user.
|
2015-03-17 14:14:34 +03:00
|
|
|
*
|
|
|
|
* @deprecated Use \OC::$server->getNavigationManager()->setActiveEntry() instead
|
2011-03-11 16:59:24 +03:00
|
|
|
*/
|
2014-04-17 17:30:27 +04:00
|
|
|
public static function setActiveNavigationEntry($id) {
|
2013-09-20 19:34:33 +04:00
|
|
|
OC::$server->getNavigationManager()->setActiveEntry($id);
|
2011-03-11 16:59:24 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-02-08 21:53:43 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Get the navigation entries for the $app
|
2015-02-02 16:47:38 +03:00
|
|
|
*
|
2013-02-08 21:53:43 +04:00
|
|
|
* @param string $app app
|
2014-05-11 21:13:51 +04:00
|
|
|
* @return array an array of the $data added with addNavigationEntry
|
2013-09-20 19:34:33 +04:00
|
|
|
*
|
|
|
|
* Warning: destroys the existing entries
|
2013-02-08 21:53:43 +04:00
|
|
|
*/
|
|
|
|
public static function getAppNavigationEntries($app) {
|
2014-04-17 17:30:27 +04:00
|
|
|
if (is_file(self::getAppPath($app) . '/appinfo/app.php')) {
|
2013-09-20 19:34:33 +04:00
|
|
|
OC::$server->getNavigationManager()->clear();
|
2015-05-07 12:00:55 +03:00
|
|
|
try {
|
|
|
|
require $app . '/appinfo/app.php';
|
|
|
|
} catch (\OC\Encryption\Exceptions\ModuleAlreadyExistsException $e) {
|
|
|
|
// FIXME we should avoid getting this exception in first place,
|
|
|
|
// For now we just catch it, since we don't care about encryption modules
|
|
|
|
// when trying to find out, whether the app has a navigation entry.
|
|
|
|
}
|
2013-09-20 19:34:33 +04:00
|
|
|
return OC::$server->getNavigationManager()->getAll();
|
2013-02-08 21:53:43 +04:00
|
|
|
}
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
|
2011-04-16 19:49:57 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* gets the active Menu entry
|
2015-02-02 16:47:38 +03:00
|
|
|
*
|
2012-09-23 04:39:11 +04:00
|
|
|
* @return string id or empty string
|
2011-04-16 19:49:57 +04:00
|
|
|
*
|
|
|
|
* This function returns the id of the active navigation entry (set by
|
|
|
|
* setActiveNavigationEntry
|
2015-03-17 14:14:34 +03:00
|
|
|
*
|
|
|
|
* @deprecated Use \OC::$server->getNavigationManager()->getActiveEntry() instead
|
2011-04-16 19:49:57 +04:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function getActiveNavigationEntry() {
|
2013-09-20 19:34:33 +04:00
|
|
|
return OC::$server->getNavigationManager()->getActiveEntry();
|
2011-04-16 19:49:57 +04:00
|
|
|
}
|
|
|
|
|
2011-03-11 16:59:24 +03:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Returns the Settings Navigation
|
2015-02-02 16:47:38 +03:00
|
|
|
*
|
2014-02-06 19:30:58 +04:00
|
|
|
* @return string
|
2011-03-11 16:59:24 +03:00
|
|
|
*
|
2011-04-17 21:38:04 +04:00
|
|
|
* This function returns an array containing all settings pages added. The
|
2011-06-20 21:50:25 +04:00
|
|
|
* entries are sorted by the key 'order' ascending.
|
2011-03-11 16:59:24 +03:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function getSettingsNavigation() {
|
2014-08-31 12:05:59 +04:00
|
|
|
$l = \OC::$server->getL10N('lib');
|
2011-10-05 14:31:33 +04:00
|
|
|
|
2012-03-23 18:52:41 +04:00
|
|
|
$settings = array();
|
2011-10-05 14:31:33 +04:00
|
|
|
// by default, settings only contain the help menu
|
2014-04-17 17:30:27 +04:00
|
|
|
if (OC_Util::getEditionString() === '' &&
|
|
|
|
OC_Config::getValue('knowledgebaseenabled', true) == true
|
|
|
|
) {
|
2012-03-23 18:52:41 +04:00
|
|
|
$settings = array(
|
2013-02-11 20:44:02 +04:00
|
|
|
array(
|
|
|
|
"id" => "help",
|
|
|
|
"order" => 1000,
|
2014-04-17 17:30:27 +04:00
|
|
|
"href" => OC_Helper::linkToRoute("settings_help"),
|
2013-02-11 20:44:02 +04:00
|
|
|
"name" => $l->t("Help"),
|
2014-04-17 17:30:27 +04:00
|
|
|
"icon" => OC_Helper::imagePath("settings", "help.svg")
|
2013-02-11 20:44:02 +04:00
|
|
|
)
|
|
|
|
);
|
2012-03-23 18:52:41 +04:00
|
|
|
}
|
2011-10-05 14:31:33 +04:00
|
|
|
|
|
|
|
// if the user is logged-in
|
|
|
|
if (OC_User::isLoggedIn()) {
|
|
|
|
// personal menu
|
2013-02-11 20:44:02 +04:00
|
|
|
$settings[] = array(
|
|
|
|
"id" => "personal",
|
|
|
|
"order" => 1,
|
2014-04-17 17:30:27 +04:00
|
|
|
"href" => OC_Helper::linkToRoute("settings_personal"),
|
2013-02-11 20:44:02 +04:00
|
|
|
"name" => $l->t("Personal"),
|
2014-04-17 17:30:27 +04:00
|
|
|
"icon" => OC_Helper::imagePath("settings", "personal.svg")
|
2013-02-11 20:44:02 +04:00
|
|
|
);
|
2011-10-05 14:31:33 +04:00
|
|
|
|
2012-07-15 18:31:28 +04:00
|
|
|
//SubAdmins are also allowed to access user management
|
2014-04-17 17:30:27 +04:00
|
|
|
if (OC_SubAdmin::isSubAdmin(OC_User::getUser())) {
|
2011-10-05 14:31:33 +04:00
|
|
|
// admin users menu
|
2013-02-11 20:44:02 +04:00
|
|
|
$settings[] = array(
|
|
|
|
"id" => "core_users",
|
|
|
|
"order" => 2,
|
2014-04-17 17:30:27 +04:00
|
|
|
"href" => OC_Helper::linkToRoute("settings_users"),
|
2013-02-11 20:44:02 +04:00
|
|
|
"name" => $l->t("Users"),
|
2014-04-17 17:30:27 +04:00
|
|
|
"icon" => OC_Helper::imagePath("settings", "users.svg")
|
2013-02-11 20:44:02 +04:00
|
|
|
);
|
2012-07-15 18:31:28 +04:00
|
|
|
}
|
2012-08-05 03:40:19 +04:00
|
|
|
|
2012-07-15 18:31:28 +04:00
|
|
|
// if the user is an admin
|
2014-04-17 17:30:27 +04:00
|
|
|
if (OC_User::isAdminUser(OC_User::getUser())) {
|
2013-08-07 20:18:09 +04:00
|
|
|
// admin settings
|
2014-04-17 17:30:27 +04:00
|
|
|
$settings[] = array(
|
2013-02-11 20:44:02 +04:00
|
|
|
"id" => "admin",
|
|
|
|
"order" => 1000,
|
2014-04-17 17:30:27 +04:00
|
|
|
"href" => OC_Helper::linkToRoute("settings_admin"),
|
2013-02-11 20:44:02 +04:00
|
|
|
"name" => $l->t("Admin"),
|
2014-04-17 17:30:27 +04:00
|
|
|
"icon" => OC_Helper::imagePath("settings", "admin.svg")
|
2013-02-11 20:44:02 +04:00
|
|
|
);
|
2011-10-05 14:31:33 +04:00
|
|
|
}
|
2012-08-29 22:34:44 +04:00
|
|
|
}
|
2011-10-05 14:31:33 +04:00
|
|
|
|
2011-08-08 23:42:25 +04:00
|
|
|
$navigation = self::proceedNavigation($settings);
|
|
|
|
return $navigation;
|
2011-04-17 21:38:04 +04:00
|
|
|
}
|
|
|
|
|
2013-07-16 07:56:52 +04:00
|
|
|
// This is private as well. It simply works, so don't ask for more details
|
2014-04-17 17:30:27 +04:00
|
|
|
private static function proceedNavigation($list) {
|
2014-07-09 12:20:17 +04:00
|
|
|
$activeApp = OC::$server->getNavigationManager()->getActiveEntry();
|
|
|
|
foreach ($list as &$navEntry) {
|
|
|
|
if ($navEntry['id'] == $activeApp) {
|
|
|
|
$navEntry['active'] = true;
|
2014-04-17 17:30:27 +04:00
|
|
|
} else {
|
2014-07-09 12:20:17 +04:00
|
|
|
$navEntry['active'] = false;
|
2011-04-17 21:38:04 +04:00
|
|
|
}
|
2014-04-17 17:30:27 +04:00
|
|
|
}
|
2014-07-09 12:20:17 +04:00
|
|
|
unset($navEntry);
|
2011-04-16 12:26:18 +04:00
|
|
|
|
2014-04-17 17:30:27 +04:00
|
|
|
usort($list, create_function('$a, $b', 'if( $a["order"] == $b["order"] ) {return 0;}elseif( $a["order"] < $b["order"] ) {return -1;}else{return 1;}'));
|
2011-04-17 21:38:04 +04:00
|
|
|
|
|
|
|
return $list;
|
2011-04-16 12:26:18 +04:00
|
|
|
}
|
2012-05-02 13:14:11 +04:00
|
|
|
|
2012-06-15 01:00:02 +04:00
|
|
|
/**
|
2012-07-24 02:39:59 +04:00
|
|
|
* Get the path where to install apps
|
2014-04-17 17:30:27 +04:00
|
|
|
*
|
2015-01-16 21:31:15 +03:00
|
|
|
* @return string|false
|
2012-07-24 02:39:59 +04:00
|
|
|
*/
|
2012-06-15 01:00:02 +04:00
|
|
|
public static function getInstallPath() {
|
2014-04-17 17:30:27 +04:00
|
|
|
if (OC_Config::getValue('appstoreenabled', true) == false) {
|
2012-06-15 01:00:02 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-04-17 17:30:27 +04:00
|
|
|
foreach (OC::$APPSROOTS as $dir) {
|
|
|
|
if (isset($dir['writable']) && $dir['writable'] === true) {
|
2012-06-15 01:00:02 +04:00
|
|
|
return $dir['path'];
|
2013-02-10 01:43:35 +04:00
|
|
|
}
|
2012-06-15 01:00:02 +04:00
|
|
|
}
|
|
|
|
|
2012-09-04 14:32:27 +04:00
|
|
|
OC_Log::write('core', 'No application directories are marked as writable.', OC_Log::ERROR);
|
2012-06-15 01:00:02 +04:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-05-21 14:14:10 +04:00
|
|
|
/**
|
|
|
|
* search for an app in all app-directories
|
2015-02-02 16:47:38 +03:00
|
|
|
*
|
2015-04-07 14:49:16 +03:00
|
|
|
* @param string $appId
|
2014-05-21 14:14:10 +04:00
|
|
|
* @return mixed (bool|string)
|
|
|
|
*/
|
|
|
|
protected static function findAppInDirectories($appId) {
|
2012-06-28 23:54:33 +04:00
|
|
|
static $app_dir = array();
|
2014-05-21 14:14:10 +04:00
|
|
|
|
|
|
|
if (isset($app_dir[$appId])) {
|
|
|
|
return $app_dir[$appId];
|
2012-06-28 23:54:33 +04:00
|
|
|
}
|
2014-05-21 14:14:10 +04:00
|
|
|
|
|
|
|
$possibleApps = array();
|
2015-02-02 16:47:38 +03:00
|
|
|
foreach (OC::$APPSROOTS as $dir) {
|
|
|
|
if (file_exists($dir['path'] . '/' . $appId)) {
|
2014-05-21 14:14:10 +04:00
|
|
|
$possibleApps[] = $dir;
|
2012-06-15 01:00:02 +04:00
|
|
|
}
|
|
|
|
}
|
2014-05-21 14:14:10 +04:00
|
|
|
|
2014-06-02 23:37:39 +04:00
|
|
|
if (empty($possibleApps)) {
|
2014-05-21 14:14:10 +04:00
|
|
|
return false;
|
2015-02-02 16:47:38 +03:00
|
|
|
} elseif (count($possibleApps) === 1) {
|
2014-06-02 23:37:39 +04:00
|
|
|
$dir = array_shift($possibleApps);
|
2014-05-21 14:14:10 +04:00
|
|
|
$app_dir[$appId] = $dir;
|
|
|
|
return $dir;
|
|
|
|
} else {
|
|
|
|
$versionToLoad = array();
|
2015-02-02 16:47:38 +03:00
|
|
|
foreach ($possibleApps as $possibleApp) {
|
2014-05-21 14:14:10 +04:00
|
|
|
$version = self::getAppVersionByPath($possibleApp['path']);
|
|
|
|
if (empty($versionToLoad) || version_compare($version, $versionToLoad['version'], '>')) {
|
|
|
|
$versionToLoad = array(
|
|
|
|
'dir' => $possibleApp,
|
|
|
|
'version' => $version,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$app_dir[$appId] = $versionToLoad['dir'];
|
|
|
|
return $versionToLoad['dir'];
|
|
|
|
//TODO - write test
|
|
|
|
}
|
2012-06-15 01:00:02 +04:00
|
|
|
}
|
2014-05-21 14:14:10 +04:00
|
|
|
|
2012-06-02 02:05:20 +04:00
|
|
|
/**
|
2014-04-16 00:55:20 +04:00
|
|
|
* Get the directory for the given app.
|
|
|
|
* If the app is defined in multiple directories, the first one is taken. (false if not found)
|
2014-07-09 12:20:17 +04:00
|
|
|
*
|
2014-07-09 12:20:52 +04:00
|
|
|
* @param string $appId
|
2014-04-16 00:55:20 +04:00
|
|
|
* @return string|false
|
|
|
|
*/
|
2014-07-09 12:20:17 +04:00
|
|
|
public static function getAppPath($appId) {
|
|
|
|
if ($appId === null || trim($appId) === '') {
|
2014-06-25 18:24:55 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-07-09 12:20:17 +04:00
|
|
|
if (($dir = self::findAppInDirectories($appId)) != false) {
|
|
|
|
return $dir['path'] . '/' . $appId;
|
2012-06-04 01:13:30 +04:00
|
|
|
}
|
2012-09-23 04:39:11 +04:00
|
|
|
return false;
|
2012-06-04 01:13:30 +04:00
|
|
|
}
|
|
|
|
|
2014-05-21 14:14:10 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* check if an app's directory is writable
|
2014-07-09 12:20:17 +04:00
|
|
|
*
|
|
|
|
* @param string $appId
|
2014-05-21 14:14:10 +04:00
|
|
|
* @return bool
|
|
|
|
*/
|
2014-07-09 12:20:17 +04:00
|
|
|
public static function isAppDirWritable($appId) {
|
|
|
|
$path = self::getAppPath($appId);
|
2014-06-06 11:41:33 +04:00
|
|
|
return ($path !== false) ? is_writable($path) : false;
|
2014-05-21 14:14:10 +04:00
|
|
|
}
|
|
|
|
|
2012-06-04 01:13:30 +04:00
|
|
|
/**
|
2014-04-16 00:55:20 +04:00
|
|
|
* 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)
|
2014-07-09 12:20:17 +04:00
|
|
|
*
|
|
|
|
* @param string $appId
|
2014-04-16 00:55:20 +04:00
|
|
|
* @return string|false
|
|
|
|
*/
|
2014-07-09 12:20:17 +04:00
|
|
|
public static function getAppWebPath($appId) {
|
|
|
|
if (($dir = self::findAppInDirectories($appId)) != false) {
|
|
|
|
return OC::$WEBROOT . $dir['url'] . '/' . $appId;
|
2012-06-02 02:05:20 +04:00
|
|
|
}
|
2012-09-23 04:39:11 +04:00
|
|
|
return false;
|
2012-06-02 02:05:20 +04:00
|
|
|
}
|
|
|
|
|
2012-04-14 18:27:58 +04:00
|
|
|
/**
|
|
|
|
* get the last version of the app, either from appinfo/version or from appinfo/info.xml
|
2014-07-09 12:20:17 +04:00
|
|
|
*
|
|
|
|
* @param string $appId
|
2014-02-06 19:30:58 +04:00
|
|
|
* @return string
|
2012-04-14 18:27:58 +04:00
|
|
|
*/
|
2014-07-09 12:20:17 +04:00
|
|
|
public static function getAppVersion($appId) {
|
2015-02-03 16:13:44 +03:00
|
|
|
if (!isset(self::$appVersion[$appId])) {
|
|
|
|
$file = self::getAppPath($appId);
|
|
|
|
self::$appVersion[$appId] = ($file !== false) ? self::getAppVersionByPath($file) : '0';
|
|
|
|
}
|
|
|
|
return self::$appVersion[$appId];
|
2014-05-21 14:14:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get app's version based on it's path
|
2015-02-02 16:47:38 +03:00
|
|
|
*
|
2014-05-21 14:14:10 +04:00
|
|
|
* @param string $path
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function getAppVersionByPath($path) {
|
|
|
|
$versionFile = $path . '/appinfo/version';
|
|
|
|
$infoFile = $path . '/appinfo/info.xml';
|
2015-02-02 16:47:38 +03:00
|
|
|
if (is_file($versionFile)) {
|
2014-06-02 23:37:39 +04:00
|
|
|
return trim(file_get_contents($versionFile));
|
2015-02-02 16:47:38 +03:00
|
|
|
} else {
|
2014-06-06 00:54:27 +04:00
|
|
|
$appData = self::getAppInfo($infoFile, true);
|
2014-04-17 17:30:27 +04:00
|
|
|
return isset($appData['version']) ? $appData['version'] : '';
|
2012-04-14 18:27:58 +04:00
|
|
|
}
|
|
|
|
}
|
2011-10-05 14:31:33 +04:00
|
|
|
|
2014-05-21 14:14:10 +04:00
|
|
|
|
2011-03-11 16:59:24 +03:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Read all app metadata from the info.xml file
|
2014-07-09 12:20:17 +04:00
|
|
|
*
|
|
|
|
* @param string $appId id of the app or the path of the info.xml file
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param boolean $path (optional)
|
2014-07-05 15:32:21 +04:00
|
|
|
* @return array|null
|
2012-09-18 17:35:27 +04:00
|
|
|
* @note all data is read from info.xml, not just pre-defined fields
|
2014-04-17 17:30:27 +04:00
|
|
|
*/
|
2014-07-09 12:20:17 +04:00
|
|
|
public static function getAppInfo($appId, $path = false) {
|
2014-04-17 17:30:27 +04:00
|
|
|
if ($path) {
|
2014-07-09 12:20:17 +04:00
|
|
|
$file = $appId;
|
2014-04-17 17:30:27 +04:00
|
|
|
} else {
|
2014-07-09 12:20:17 +04:00
|
|
|
if (isset(self::$appInfo[$appId])) {
|
|
|
|
return self::$appInfo[$appId];
|
2012-03-30 16:39:07 +04:00
|
|
|
}
|
2014-07-09 12:20:17 +04:00
|
|
|
$file = self::getAppPath($appId) . '/appinfo/info.xml';
|
2011-05-15 18:31:30 +04:00
|
|
|
}
|
2014-10-09 17:00:36 +04:00
|
|
|
|
2014-11-24 18:24:26 +03:00
|
|
|
$parser = new \OC\App\InfoParser(\OC::$server->getHTTPHelper(), \OC::$server->getURLGenerator());
|
|
|
|
$data = $parser->parse($file);
|
|
|
|
|
2015-02-02 16:47:38 +03:00
|
|
|
if (is_array($data)) {
|
2015-01-13 16:48:30 +03:00
|
|
|
$data = OC_App::parseAppInfo($data);
|
|
|
|
}
|
|
|
|
|
2014-07-09 12:20:17 +04:00
|
|
|
self::$appInfo[$appId] = $data;
|
2012-10-14 23:04:08 +04:00
|
|
|
|
2011-05-15 18:31:30 +04:00
|
|
|
return $data;
|
2011-03-11 16:59:24 +03:00
|
|
|
}
|
2011-10-05 14:31:33 +04:00
|
|
|
|
2011-08-08 23:42:25 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Returns the navigation
|
2015-02-02 16:47:38 +03:00
|
|
|
*
|
2014-04-21 17:44:54 +04:00
|
|
|
* @return array
|
2011-08-08 23:42:25 +04:00
|
|
|
*
|
|
|
|
* This function returns an array containing all entries added. The
|
|
|
|
* entries are sorted by the key 'order' ascending. Additional to the keys
|
|
|
|
* given for each app the following keys exist:
|
|
|
|
* - active: boolean, signals if the user is on this navigation entry
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function getNavigation() {
|
2013-09-20 19:34:33 +04:00
|
|
|
$entries = OC::$server->getNavigationManager()->getAll();
|
2014-04-17 17:30:27 +04:00
|
|
|
$navigation = self::proceedNavigation($entries);
|
2011-08-08 23:42:25 +04:00
|
|
|
return $navigation;
|
|
|
|
}
|
2011-10-05 14:31:33 +04:00
|
|
|
|
2011-07-25 22:12:35 +04:00
|
|
|
/**
|
|
|
|
* get the id of loaded app
|
2014-04-17 17:30:27 +04:00
|
|
|
*
|
2011-07-25 22:12:35 +04:00
|
|
|
* @return string
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function getCurrentApp() {
|
2015-02-10 15:02:48 +03:00
|
|
|
$request = \OC::$server->getRequest();
|
|
|
|
$script = substr($request->getScriptName(), strlen(OC::$WEBROOT) + 1);
|
2014-04-17 17:30:27 +04:00
|
|
|
$topFolder = substr($script, 0, strpos($script, '/'));
|
2012-09-29 01:15:19 +04:00
|
|
|
if (empty($topFolder)) {
|
2015-02-10 15:02:48 +03:00
|
|
|
$path_info = $request->getPathInfo();
|
2012-09-29 01:15:19 +04:00
|
|
|
if ($path_info) {
|
2014-04-17 17:30:27 +04:00
|
|
|
$topFolder = substr($path_info, 1, strpos($path_info, '/', 1) - 1);
|
2012-09-29 01:15:19 +04:00
|
|
|
}
|
|
|
|
}
|
2014-04-17 17:30:27 +04:00
|
|
|
if ($topFolder == 'apps') {
|
|
|
|
$length = strlen($topFolder);
|
|
|
|
return substr($script, $length + 1, strpos($script, '/', $length + 1) - $length - 1);
|
|
|
|
} else {
|
2011-07-25 22:12:35 +04:00
|
|
|
return $topFolder;
|
|
|
|
}
|
|
|
|
}
|
2011-10-05 14:31:33 +04:00
|
|
|
|
2011-08-09 01:32:54 +04:00
|
|
|
/**
|
2015-02-12 02:11:38 +03:00
|
|
|
* @param string $type
|
|
|
|
* @return array
|
2011-08-09 01:32:54 +04:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function getForms($type) {
|
2014-04-17 17:30:27 +04:00
|
|
|
$forms = array();
|
|
|
|
switch ($type) {
|
2011-08-09 01:32:54 +04:00
|
|
|
case 'admin':
|
2014-04-17 17:30:27 +04:00
|
|
|
$source = self::$adminForms;
|
2013-02-09 20:27:57 +04:00
|
|
|
break;
|
2011-08-09 01:32:54 +04:00
|
|
|
case 'personal':
|
2014-04-17 17:30:27 +04:00
|
|
|
$source = self::$personalForms;
|
2013-02-09 20:27:57 +04:00
|
|
|
break;
|
2012-09-23 04:39:11 +04:00
|
|
|
default:
|
2013-02-09 20:27:57 +04:00
|
|
|
return array();
|
2011-08-09 01:32:54 +04:00
|
|
|
}
|
2014-04-17 17:30:27 +04:00
|
|
|
foreach ($source as $form) {
|
|
|
|
$forms[] = include $form;
|
2011-08-09 01:32:54 +04:00
|
|
|
}
|
|
|
|
return $forms;
|
|
|
|
}
|
2011-10-05 14:31:33 +04:00
|
|
|
|
2011-08-09 01:32:54 +04:00
|
|
|
/**
|
|
|
|
* register an admin form to be shown
|
2014-04-17 17:30:27 +04:00
|
|
|
*
|
2014-02-19 12:31:54 +04:00
|
|
|
* @param string $app
|
|
|
|
* @param string $page
|
2011-08-09 01:32:54 +04:00
|
|
|
*/
|
2012-11-02 22:53:02 +04:00
|
|
|
public static function registerAdmin($app, $page) {
|
2014-04-17 17:30:27 +04:00
|
|
|
self::$adminForms[] = $app . '/' . $page . '.php';
|
2011-08-09 01:32:54 +04:00
|
|
|
}
|
2011-10-05 14:31:33 +04:00
|
|
|
|
2011-08-09 01:32:54 +04:00
|
|
|
/**
|
|
|
|
* register a personal form to be shown
|
2015-04-07 14:49:16 +03:00
|
|
|
* @param string $app
|
|
|
|
* @param string $page
|
2011-08-09 01:32:54 +04:00
|
|
|
*/
|
2012-11-02 22:53:02 +04:00
|
|
|
public static function registerPersonal($app, $page) {
|
2014-04-17 17:30:27 +04:00
|
|
|
self::$personalForms[] = $app . '/' . $page . '.php';
|
2011-08-09 01:32:54 +04:00
|
|
|
}
|
2011-10-05 14:31:33 +04:00
|
|
|
|
2015-02-12 02:11:38 +03:00
|
|
|
/**
|
|
|
|
* @param array $entry
|
|
|
|
*/
|
|
|
|
public static function registerLogIn(array $entry) {
|
2013-01-29 20:28:08 +04:00
|
|
|
self::$altLogin[] = $entry;
|
|
|
|
}
|
|
|
|
|
2015-02-12 02:11:38 +03:00
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
2013-01-29 20:28:08 +04:00
|
|
|
public static function getAlternativeLogIns() {
|
|
|
|
return self::$altLogin;
|
|
|
|
}
|
|
|
|
|
2011-08-10 14:20:43 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* get a list of all apps in the apps folder
|
2015-02-02 16:47:38 +03:00
|
|
|
*
|
2014-05-11 21:13:51 +04:00
|
|
|
* @return array an array of app names (string IDs)
|
2012-09-18 17:35:27 +04:00
|
|
|
* @todo: change the name of this method to getInstalledApps, which is more accurate
|
2011-08-10 14:20:43 +04:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function getAllApps() {
|
2012-10-14 23:04:08 +04:00
|
|
|
|
2014-04-17 17:30:27 +04:00
|
|
|
$apps = array();
|
2012-10-14 23:04:08 +04:00
|
|
|
|
2014-04-17 17:30:27 +04:00
|
|
|
foreach (OC::$APPSROOTS as $apps_dir) {
|
|
|
|
if (!is_readable($apps_dir['path'])) {
|
|
|
|
OC_Log::write('core', 'unable to read app folder : ' . $apps_dir['path'], OC_Log::WARN);
|
2012-09-19 23:26:57 +04:00
|
|
|
continue;
|
|
|
|
}
|
2014-04-17 17:30:27 +04:00
|
|
|
$dh = opendir($apps_dir['path']);
|
2012-10-14 23:04:08 +04:00
|
|
|
|
2014-04-17 17:30:27 +04:00
|
|
|
if (is_resource($dh)) {
|
2013-09-04 15:06:04 +04:00
|
|
|
while (($file = readdir($dh)) !== false) {
|
2012-10-14 23:04:08 +04:00
|
|
|
|
2015-03-17 17:33:55 +03:00
|
|
|
if ($file[0] != '.' and is_file($apps_dir['path'] . '/' . $file . '/appinfo/info.xml')) {
|
2012-10-14 23:04:08 +04:00
|
|
|
|
2013-09-04 15:06:04 +04:00
|
|
|
$apps[] = $file;
|
2012-10-14 23:04:08 +04:00
|
|
|
|
2013-09-04 15:06:04 +04:00
|
|
|
}
|
2012-10-14 23:04:08 +04:00
|
|
|
|
2013-09-04 15:06:04 +04:00
|
|
|
}
|
2011-08-10 14:20:43 +04:00
|
|
|
}
|
2012-10-14 23:04:08 +04:00
|
|
|
|
2011-08-10 14:20:43 +04:00
|
|
|
}
|
2012-10-14 23:04:08 +04:00
|
|
|
|
2011-08-10 14:20:43 +04:00
|
|
|
return $apps;
|
|
|
|
}
|
2012-10-14 23:04:08 +04:00
|
|
|
|
2013-01-22 01:18:11 +04:00
|
|
|
/**
|
2015-03-30 16:58:20 +03:00
|
|
|
* List all apps, this is used in apps.php
|
2015-02-02 16:47:38 +03:00
|
|
|
*
|
2015-03-30 16:58:20 +03:00
|
|
|
* @param bool $onlyLocal
|
2013-01-22 01:18:11 +04:00
|
|
|
* @return array
|
|
|
|
*/
|
2014-08-14 17:48:38 +04:00
|
|
|
public static function listAllApps($onlyLocal = false) {
|
2013-01-22 01:18:11 +04:00
|
|
|
$installedApps = OC_App::getAllApps();
|
|
|
|
|
2013-02-11 20:44:02 +04:00
|
|
|
//TODO which apps do we want to blacklist and how do we integrate
|
|
|
|
// blacklisting with the multi apps folder feature?
|
2013-01-22 01:18:11 +04:00
|
|
|
|
2014-07-09 12:20:17 +04:00
|
|
|
$blacklist = array('files'); //we don't want to show configuration for these
|
2013-01-22 01:18:11 +04:00
|
|
|
$appList = array();
|
2014-08-14 17:48:38 +04:00
|
|
|
$l = \OC::$server->getL10N('core');
|
2013-01-22 01:18:11 +04:00
|
|
|
|
2014-04-17 17:30:27 +04:00
|
|
|
foreach ($installedApps as $app) {
|
|
|
|
if (array_search($app, $blacklist) === false) {
|
2013-01-22 01:18:11 +04:00
|
|
|
|
2014-04-17 17:30:27 +04:00
|
|
|
$info = OC_App::getAppInfo($app);
|
2013-01-22 01:18:11 +04:00
|
|
|
|
|
|
|
if (!isset($info['name'])) {
|
2014-04-17 17:30:27 +04:00
|
|
|
OC_Log::write('core', 'App id "' . $app . '" has no name in appinfo', OC_Log::ERROR);
|
2013-01-22 01:18:11 +04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2014-04-18 16:29:45 +04:00
|
|
|
$enabled = OC_Appconfig::getValue($app, 'enabled', 'no');
|
|
|
|
$info['groups'] = null;
|
|
|
|
if ($enabled === 'yes') {
|
2013-01-22 01:18:11 +04:00
|
|
|
$active = true;
|
2015-02-02 16:47:38 +03:00
|
|
|
} else if ($enabled === 'no') {
|
2013-01-22 01:18:11 +04:00
|
|
|
$active = false;
|
2014-04-18 16:29:45 +04:00
|
|
|
} else {
|
|
|
|
$active = true;
|
|
|
|
$info['groups'] = $enabled;
|
2013-01-22 01:18:11 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
$info['active'] = $active;
|
|
|
|
|
2015-02-02 16:47:38 +03:00
|
|
|
if (isset($info['shipped']) and ($info['shipped'] == 'true')) {
|
2014-04-17 17:30:27 +04:00
|
|
|
$info['internal'] = true;
|
2015-03-30 16:58:20 +03:00
|
|
|
$info['level'] = self::officialApp;
|
2014-05-31 19:50:39 +04:00
|
|
|
$info['removable'] = false;
|
2013-01-22 01:18:11 +04:00
|
|
|
} else {
|
2014-04-17 17:30:27 +04:00
|
|
|
$info['internal'] = false;
|
2014-05-31 19:50:39 +04:00
|
|
|
$info['removable'] = true;
|
2013-01-22 01:18:11 +04:00
|
|
|
}
|
|
|
|
|
2014-05-21 14:14:10 +04:00
|
|
|
$info['update'] = OC_Installer::isUpdateAvailable($app);
|
|
|
|
|
2015-02-02 16:47:38 +03:00
|
|
|
$appIcon = self::getAppPath($app) . '/img/' . $app . '.svg';
|
2014-08-14 17:48:38 +04:00
|
|
|
if (file_exists($appIcon)) {
|
2015-02-02 16:47:38 +03:00
|
|
|
$info['preview'] = OC_Helper::imagePath($app, $app . '.svg');
|
2014-08-14 17:48:38 +04:00
|
|
|
$info['previewAsIcon'] = true;
|
|
|
|
} else {
|
|
|
|
$appIcon = self::getAppPath($app) . '/img/app.svg';
|
|
|
|
if (file_exists($appIcon)) {
|
|
|
|
$info['preview'] = OC_Helper::imagePath($app, 'app.svg');
|
|
|
|
$info['previewAsIcon'] = true;
|
|
|
|
}
|
|
|
|
}
|
2013-01-22 01:18:11 +04:00
|
|
|
$info['version'] = OC_App::getAppVersion($app);
|
|
|
|
$appList[] = $info;
|
|
|
|
}
|
|
|
|
}
|
2014-08-14 17:48:38 +04:00
|
|
|
if ($onlyLocal) {
|
2015-03-30 16:58:20 +03:00
|
|
|
$remoteApps = [];
|
2014-08-14 17:48:38 +04:00
|
|
|
} else {
|
|
|
|
$remoteApps = OC_App::getAppstoreApps();
|
|
|
|
}
|
2014-04-17 17:30:27 +04:00
|
|
|
if ($remoteApps) {
|
2013-01-31 13:27:02 +04:00
|
|
|
// Remove duplicates
|
2014-04-17 17:30:27 +04:00
|
|
|
foreach ($appList as $app) {
|
|
|
|
foreach ($remoteApps AS $key => $remote) {
|
2014-07-10 19:18:10 +04:00
|
|
|
if ($app['name'] === $remote['name'] ||
|
2014-08-18 00:26:14 +04:00
|
|
|
(isset($app['ocsid']) &&
|
2015-02-02 16:47:38 +03:00
|
|
|
$app['ocsid'] === $remote['id'])
|
|
|
|
) {
|
2014-04-17 17:30:27 +04:00
|
|
|
unset($remoteApps[$key]);
|
2013-02-09 20:27:57 +04:00
|
|
|
}
|
2013-01-22 01:18:11 +04:00
|
|
|
}
|
|
|
|
}
|
2014-04-17 17:30:27 +04:00
|
|
|
$combinedApps = array_merge($appList, $remoteApps);
|
2013-02-09 20:27:57 +04:00
|
|
|
} else {
|
|
|
|
$combinedApps = $appList;
|
2013-01-22 01:18:11 +04:00
|
|
|
}
|
2013-10-14 12:54:38 +04:00
|
|
|
|
2014-07-09 12:20:17 +04:00
|
|
|
return $combinedApps;
|
2013-10-14 12:54:38 +04:00
|
|
|
}
|
|
|
|
|
2015-03-06 02:16:17 +03:00
|
|
|
/**
|
|
|
|
* Returns the internal app ID or false
|
|
|
|
* @param string $ocsID
|
|
|
|
* @return string|false
|
|
|
|
*/
|
|
|
|
protected static function getInternalAppIdByOcs($ocsID) {
|
|
|
|
if(is_numeric($ocsID)) {
|
|
|
|
$idArray = \OC::$server->getAppConfig()->getValues(false, 'ocsid');
|
|
|
|
if(array_search($ocsID, $idArray)) {
|
|
|
|
return array_search($ocsID, $idArray);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-09-18 17:35:27 +04:00
|
|
|
/**
|
2015-03-30 16:58:20 +03:00
|
|
|
* Get a list of all apps on the appstore
|
|
|
|
* @param string $filter
|
|
|
|
* @param string $category
|
|
|
|
* @return array|bool multi-dimensional array of apps.
|
|
|
|
* Keys: id, name, type, typename, personid, license, detailpage, preview, changed, description
|
2012-09-18 17:35:27 +04:00
|
|
|
*/
|
2014-08-14 17:48:38 +04:00
|
|
|
public static function getAppstoreApps($filter = 'approved', $category = null) {
|
2015-03-30 16:58:20 +03:00
|
|
|
$categories = [$category];
|
|
|
|
|
|
|
|
$ocsClient = new OCSClient(
|
|
|
|
\OC::$server->getHTTPClientService(),
|
|
|
|
\OC::$server->getConfig(),
|
|
|
|
\OC::$server->getLogger()
|
|
|
|
);
|
|
|
|
|
|
|
|
|
2014-08-14 17:48:38 +04:00
|
|
|
if (is_null($category)) {
|
2015-03-30 16:58:20 +03:00
|
|
|
$categoryNames = $ocsClient->getCategories();
|
2014-08-14 17:48:38 +04:00
|
|
|
if (is_array($categoryNames)) {
|
|
|
|
// Check that categories of apps were retrieved correctly
|
|
|
|
if (!$categories = array_keys($categoryNames)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
2012-09-18 19:51:55 +04:00
|
|
|
return false;
|
|
|
|
}
|
2014-08-14 17:48:38 +04:00
|
|
|
}
|
2012-10-14 23:04:08 +04:00
|
|
|
|
2014-08-14 17:48:38 +04:00
|
|
|
$page = 0;
|
2015-03-30 16:58:20 +03:00
|
|
|
$remoteApps = $ocsClient->getApplications($categories, $page, $filter);
|
|
|
|
$apps = [];
|
2014-08-14 17:48:38 +04:00
|
|
|
$i = 0;
|
|
|
|
$l = \OC::$server->getL10N('core');
|
|
|
|
foreach ($remoteApps as $app) {
|
2015-03-06 02:16:17 +03:00
|
|
|
$potentialCleanId = self::getInternalAppIdByOcs($app['id']);
|
2015-01-13 16:48:30 +03:00
|
|
|
// enhance app info (for example the description)
|
2015-03-30 16:58:20 +03:00
|
|
|
$apps[$i] = OC_App::parseAppInfo($app);
|
|
|
|
$apps[$i]['author'] = $app['personid'];
|
|
|
|
$apps[$i]['ocs_id'] = $app['id'];
|
|
|
|
$apps[$i]['internal'] = 0;
|
|
|
|
$apps[$i]['active'] = ($potentialCleanId !== false) ? self::isEnabled($potentialCleanId) : false;
|
|
|
|
$apps[$i]['update'] = false;
|
|
|
|
$apps[$i]['groups'] = false;
|
|
|
|
$apps[$i]['score'] = $app['score'];
|
|
|
|
$apps[$i]['removable'] = false;
|
2014-08-14 17:48:38 +04:00
|
|
|
if ($app['label'] == 'recommended') {
|
2015-03-30 16:58:20 +03:00
|
|
|
$apps[$i]['internallabel'] = (string)$l->t('Recommended');
|
|
|
|
$apps[$i]['internalclass'] = 'recommendedapp';
|
2012-09-18 17:35:27 +04:00
|
|
|
}
|
2014-08-14 17:48:38 +04:00
|
|
|
|
|
|
|
$i++;
|
2012-09-18 17:35:27 +04:00
|
|
|
}
|
2012-10-08 17:49:48 +04:00
|
|
|
|
2015-03-30 16:58:20 +03:00
|
|
|
|
|
|
|
|
|
|
|
if (empty($apps)) {
|
2012-09-18 19:51:55 +04:00
|
|
|
return false;
|
|
|
|
} else {
|
2015-03-30 16:58:20 +03:00
|
|
|
return $apps;
|
2012-09-18 19:51:55 +04:00
|
|
|
}
|
2012-09-18 17:35:27 +04:00
|
|
|
}
|
2012-03-16 19:00:12 +04:00
|
|
|
|
2014-06-04 18:40:53 +04:00
|
|
|
public static function shouldUpgrade($app) {
|
|
|
|
$versions = self::getAppVersions();
|
|
|
|
$currentVersion = OC_App::getAppVersion($app);
|
2014-10-30 19:24:25 +03:00
|
|
|
if ($currentVersion && isset($versions[$app])) {
|
2014-06-04 18:40:53 +04:00
|
|
|
$installedVersion = $versions[$app];
|
|
|
|
if (version_compare($currentVersion, $installedVersion, '>')) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-05-27 13:54:12 +04:00
|
|
|
/**
|
2014-07-09 12:20:17 +04:00
|
|
|
* Adjust the number of version parts of $version1 to match
|
2014-05-27 13:54:12 +04:00
|
|
|
* 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($version1, $version2) {
|
|
|
|
$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);
|
|
|
|
}
|
2013-02-25 15:38:00 +04:00
|
|
|
|
|
|
|
/**
|
2014-05-27 13:54:12 +04:00
|
|
|
* 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
|
2015-02-02 16:47:38 +03:00
|
|
|
* @param array $appInfo app info (from xml)
|
2014-05-27 13:54:12 +04:00
|
|
|
*
|
2013-02-25 15:38:00 +04:00
|
|
|
* @return boolean true if compatible, otherwise false
|
|
|
|
*/
|
2015-02-02 16:47:38 +03:00
|
|
|
public static function isAppCompatible($ocVersion, $appInfo) {
|
2014-05-27 13:54:12 +04:00
|
|
|
$requireMin = '';
|
|
|
|
$requireMax = '';
|
2015-01-14 14:48:59 +03:00
|
|
|
if (isset($appInfo['dependencies']['owncloud']['@attributes']['min-version'])) {
|
|
|
|
$requireMin = $appInfo['dependencies']['owncloud']['@attributes']['min-version'];
|
|
|
|
} else if (isset($appInfo['requiremin'])) {
|
2014-05-27 13:54:12 +04:00
|
|
|
$requireMin = $appInfo['requiremin'];
|
|
|
|
} else if (isset($appInfo['require'])) {
|
|
|
|
$requireMin = $appInfo['require'];
|
|
|
|
}
|
2013-02-25 15:38:00 +04:00
|
|
|
|
2015-01-14 14:48:59 +03:00
|
|
|
if (isset($appInfo['dependencies']['owncloud']['@attributes']['max-version'])) {
|
|
|
|
$requireMax = $appInfo['dependencies']['owncloud']['@attributes']['max-version'];
|
|
|
|
} else if (isset($appInfo['requiremax'])) {
|
2014-05-27 13:54:12 +04:00
|
|
|
$requireMax = $appInfo['requiremax'];
|
|
|
|
}
|
2013-02-25 15:38:00 +04:00
|
|
|
|
2014-05-27 13:54:12 +04:00
|
|
|
if (is_array($ocVersion)) {
|
|
|
|
$ocVersion = implode('.', $ocVersion);
|
|
|
|
}
|
2013-02-25 15:38:00 +04:00
|
|
|
|
2014-05-27 13:54:12 +04:00
|
|
|
if (!empty($requireMin)
|
|
|
|
&& version_compare(self::adjustVersionParts($ocVersion, $requireMin), $requireMin, '<')
|
|
|
|
) {
|
2013-02-25 15:38:00 +04:00
|
|
|
|
2014-05-27 13:54:12 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($requireMax)
|
|
|
|
&& version_compare(self::adjustVersionParts($ocVersion, $requireMax), $requireMax, '>')
|
|
|
|
) {
|
|
|
|
|
|
|
|
return false;
|
2013-02-25 15:38:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-03-30 15:48:44 +04:00
|
|
|
/**
|
2012-06-29 00:01:46 +04:00
|
|
|
* get the installed version of all apps
|
2012-03-30 15:48:44 +04:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function getAppVersions() {
|
2012-06-26 22:53:28 +04:00
|
|
|
static $versions;
|
2014-04-17 17:30:27 +04:00
|
|
|
if (isset($versions)) { // simple cache, needs to be fixed
|
2012-06-26 22:53:28 +04:00
|
|
|
return $versions; // when function is used besides in checkUpgrade
|
|
|
|
}
|
2014-04-17 17:30:27 +04:00
|
|
|
$versions = array();
|
2014-10-16 23:45:09 +04:00
|
|
|
try {
|
|
|
|
$query = OC_DB::prepare('SELECT `appid`, `configvalue` FROM `*PREFIX*appconfig`'
|
|
|
|
. ' WHERE `configkey` = \'installed_version\'');
|
|
|
|
$result = $query->execute();
|
|
|
|
while ($row = $result->fetchRow()) {
|
|
|
|
$versions[$row['appid']] = $row['configvalue'];
|
|
|
|
}
|
|
|
|
return $versions;
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
return array();
|
2012-03-30 15:48:44 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-21 14:14:10 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param mixed $app
|
|
|
|
* @return bool
|
2014-06-10 15:58:41 +04:00
|
|
|
* @throws Exception if app is not compatible with this version of ownCloud
|
|
|
|
* @throws Exception if no app-name was specified
|
2014-05-21 14:14:10 +04:00
|
|
|
*/
|
|
|
|
public static function installApp($app) {
|
2014-08-31 12:05:59 +04:00
|
|
|
$l = \OC::$server->getL10N('core');
|
2014-12-11 19:02:07 +03:00
|
|
|
$config = \OC::$server->getConfig();
|
2015-03-30 16:58:20 +03:00
|
|
|
$ocsClient = new OCSClient(
|
|
|
|
\OC::$server->getHTTPClientService(),
|
|
|
|
$config,
|
|
|
|
\OC::$server->getLogger()
|
|
|
|
);
|
|
|
|
$appData = $ocsClient->getApplication($app);
|
2014-05-21 14:14:10 +04:00
|
|
|
|
|
|
|
// check if app is a shipped app or not. OCS apps have an integer as id, shipped apps use a string
|
2015-02-02 16:47:38 +03:00
|
|
|
if (!is_numeric($app)) {
|
|
|
|
$shippedVersion = self::getAppVersion($app);
|
|
|
|
if ($appData && version_compare($shippedVersion, $appData['version'], '<')) {
|
2014-05-21 14:14:10 +04:00
|
|
|
$app = self::downloadApp($app);
|
|
|
|
} else {
|
|
|
|
$app = OC_Installer::installShippedApp($app);
|
|
|
|
}
|
2015-02-02 16:47:38 +03:00
|
|
|
} else {
|
2015-03-06 02:16:17 +03:00
|
|
|
// Maybe the app is already installed - compare the version in this
|
|
|
|
// case and use the local already installed one.
|
|
|
|
// FIXME: This is a horrible hack. I feel sad. The god of code cleanness may forgive me.
|
|
|
|
$internalAppId = self::getInternalAppIdByOcs($app);
|
|
|
|
if($internalAppId !== false) {
|
|
|
|
if($appData && version_compare(\OC_App::getAppVersion($internalAppId), $appData['version'], '<')) {
|
|
|
|
$app = self::downloadApp($app);
|
|
|
|
} else {
|
|
|
|
self::enable($internalAppId);
|
|
|
|
$app = $internalAppId;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$app = self::downloadApp($app);
|
|
|
|
}
|
2014-05-21 14:14:10 +04:00
|
|
|
}
|
|
|
|
|
2015-02-02 16:47:38 +03:00
|
|
|
if ($app !== false) {
|
2014-05-21 14:14:10 +04:00
|
|
|
// check if the app is compatible with this version of ownCloud
|
|
|
|
$info = self::getAppInfo($app);
|
2015-02-02 16:47:38 +03:00
|
|
|
$version = OC_Util::getVersion();
|
|
|
|
if (!self::isAppCompatible($version, $info)) {
|
2014-05-21 14:14:10 +04:00
|
|
|
throw new \Exception(
|
2015-02-18 15:29:21 +03:00
|
|
|
$l->t('App "%s" cannot be installed because it is not compatible with this version of ownCloud.',
|
2014-05-21 14:14:10 +04:00
|
|
|
array($info['name'])
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
2014-12-11 19:02:07 +03:00
|
|
|
|
|
|
|
// check for required dependencies
|
2014-12-12 14:34:53 +03:00
|
|
|
$dependencyAnalyzer = new DependencyAnalyzer(new Platform($config), $l);
|
|
|
|
$missing = $dependencyAnalyzer->analyze($app);
|
2015-02-02 16:47:38 +03:00
|
|
|
if (!empty($missing)) {
|
2014-12-11 19:02:07 +03:00
|
|
|
$missingMsg = join(PHP_EOL, $missing);
|
|
|
|
throw new \Exception(
|
2015-02-18 15:29:21 +03:00
|
|
|
$l->t('App "%s" cannot be installed because the following dependencies are not fulfilled: %s',
|
2014-12-11 19:02:07 +03:00
|
|
|
array($info['name'], $missingMsg)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
$config->setAppValue($app, 'enabled', 'yes');
|
2015-02-02 16:47:38 +03:00
|
|
|
if (isset($appData['id'])) {
|
|
|
|
$config->setAppValue($app, 'ocsid', $appData['id']);
|
2014-12-11 19:02:07 +03:00
|
|
|
}
|
|
|
|
\OC_Hook::emit('OC_App', 'post_enable', array('app' => $app));
|
2015-02-02 16:47:38 +03:00
|
|
|
} else {
|
2014-05-21 14:14:10 +04:00
|
|
|
throw new \Exception($l->t("No app name specified"));
|
|
|
|
}
|
|
|
|
|
|
|
|
return $app;
|
|
|
|
}
|
|
|
|
|
2011-12-12 01:08:01 +04:00
|
|
|
/**
|
|
|
|
* update the database for the app and call the update script
|
2014-04-17 17:30:27 +04:00
|
|
|
*
|
2014-07-09 12:20:17 +04:00
|
|
|
* @param string $appId
|
2014-05-21 14:14:10 +04:00
|
|
|
* @return bool
|
2011-12-12 01:08:01 +04:00
|
|
|
*/
|
2014-07-09 12:20:17 +04:00
|
|
|
public static function updateApp($appId) {
|
|
|
|
if (file_exists(self::getAppPath($appId) . '/appinfo/database.xml')) {
|
|
|
|
OC_DB::updateDbFromStructure(self::getAppPath($appId) . '/appinfo/database.xml');
|
2011-12-12 01:08:01 +04:00
|
|
|
}
|
2015-02-03 17:23:51 +03:00
|
|
|
unset(self::$appVersion[$appId]);
|
2014-07-09 12:20:17 +04:00
|
|
|
if (!self::isEnabled($appId)) {
|
2014-06-10 15:56:05 +04:00
|
|
|
return false;
|
2012-05-19 04:00:46 +04:00
|
|
|
}
|
2014-07-09 12:20:17 +04:00
|
|
|
if (file_exists(self::getAppPath($appId) . '/appinfo/update.php')) {
|
2014-07-24 19:51:28 +04:00
|
|
|
self::loadApp($appId, false);
|
2014-07-09 12:20:17 +04:00
|
|
|
include self::getAppPath($appId) . '/appinfo/update.php';
|
2011-12-12 01:08:01 +04:00
|
|
|
}
|
2012-05-11 22:32:37 +04:00
|
|
|
|
2012-09-23 04:39:11 +04:00
|
|
|
//set remote/public handlers
|
2014-07-09 12:20:17 +04:00
|
|
|
$appData = self::getAppInfo($appId);
|
2014-07-07 18:57:50 +04:00
|
|
|
if (array_key_exists('ocsid', $appData)) {
|
2014-07-09 12:20:17 +04:00
|
|
|
OC_Appconfig::setValue($appId, 'ocsid', $appData['ocsid']);
|
2014-07-07 18:57:50 +04:00
|
|
|
}
|
2014-04-17 17:30:27 +04:00
|
|
|
foreach ($appData['remote'] as $name => $path) {
|
2014-07-09 12:20:17 +04:00
|
|
|
OCP\CONFIG::setAppValue('core', 'remote_' . $name, $appId . '/' . $path);
|
2012-05-11 22:32:37 +04:00
|
|
|
}
|
2014-04-17 17:30:27 +04:00
|
|
|
foreach ($appData['public'] as $name => $path) {
|
2014-07-09 12:20:17 +04:00
|
|
|
OCP\CONFIG::setAppValue('core', 'public_' . $name, $appId . '/' . $path);
|
2012-05-11 22:32:37 +04:00
|
|
|
}
|
2012-05-15 00:49:20 +04:00
|
|
|
|
2014-07-09 12:20:17 +04:00
|
|
|
self::setAppTypes($appId);
|
2014-05-21 14:14:10 +04:00
|
|
|
|
2014-07-25 15:38:44 +04:00
|
|
|
$version = \OC_App::getAppVersion($appId);
|
|
|
|
\OC_Appconfig::setValue($appId, 'installed_version', $version);
|
|
|
|
|
2014-05-21 14:14:10 +04:00
|
|
|
return true;
|
2011-12-12 01:08:01 +04:00
|
|
|
}
|
2012-02-09 00:01:09 +04:00
|
|
|
|
|
|
|
/**
|
2014-07-09 12:20:17 +04:00
|
|
|
* @param string $appId
|
2015-01-16 21:31:15 +03:00
|
|
|
* @return \OC\Files\View|false
|
2012-02-09 00:01:09 +04:00
|
|
|
*/
|
2014-07-09 12:20:17 +04:00
|
|
|
public static function getStorage($appId) {
|
|
|
|
if (OC_App::isEnabled($appId)) { //sanity check
|
2014-04-17 17:30:27 +04:00
|
|
|
if (OC_User::isLoggedIn()) {
|
|
|
|
$view = new \OC\Files\View('/' . OC_User::getUser());
|
2014-07-09 12:20:17 +04:00
|
|
|
if (!$view->file_exists($appId)) {
|
|
|
|
$view->mkdir($appId);
|
2012-04-24 02:26:33 +04:00
|
|
|
}
|
2014-07-09 12:20:17 +04:00
|
|
|
return new \OC\Files\View('/' . OC_User::getUser() . '/' . $appId);
|
2014-04-17 17:30:27 +04:00
|
|
|
} else {
|
2014-07-09 12:20:17 +04:00
|
|
|
OC_Log::write('core', 'Can\'t get app storage, app ' . $appId . ', user not logged in', OC_Log::ERROR);
|
2012-02-09 00:01:09 +04:00
|
|
|
return false;
|
|
|
|
}
|
2014-04-17 17:30:27 +04:00
|
|
|
} else {
|
2014-07-09 12:20:17 +04:00
|
|
|
OC_Log::write('core', 'Can\'t get app storage, app ' . $appId . ' not enabled', OC_Log::ERROR);
|
2012-09-18 17:35:27 +04:00
|
|
|
return false;
|
2012-02-09 00:01:09 +04:00
|
|
|
}
|
|
|
|
}
|
2015-01-13 16:48:30 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* parses the app data array and enhanced the 'description' value
|
|
|
|
*
|
|
|
|
* @param array $data the app data
|
|
|
|
* @return array improved app data
|
|
|
|
*/
|
|
|
|
public static function parseAppInfo(array $data) {
|
|
|
|
|
|
|
|
// just modify the description if it is available
|
|
|
|
// otherwise this will create a $data element with an empty 'description'
|
2015-02-02 16:47:38 +03:00
|
|
|
if (isset($data['description'])) {
|
2015-01-13 16:48:30 +03:00
|
|
|
// sometimes the description contains line breaks and they are then also
|
|
|
|
// shown in this way in the app management which isn't wanted as HTML
|
|
|
|
// manages line breaks itself
|
|
|
|
|
|
|
|
// first of all we split on empty lines
|
|
|
|
$paragraphs = preg_split("!\n[[:space:]]*\n!m", $data['description']);
|
|
|
|
|
|
|
|
$result = [];
|
|
|
|
foreach ($paragraphs as $value) {
|
|
|
|
// replace multiple whitespace (tabs, space, newlines) inside a paragraph
|
|
|
|
// with a single space - also trims whitespace
|
|
|
|
$result[] = trim(preg_replace('![[:space:]]+!m', ' ', $value));
|
|
|
|
}
|
|
|
|
|
|
|
|
// join the single paragraphs with a empty line in between
|
|
|
|
$data['description'] = implode("\n\n", $result);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
}
|
2011-03-03 23:55:32 +03:00
|
|
|
}
|