2014-10-15 23:59:16 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Joas Schilling <nickvergessen@owncloud.com>
|
|
|
|
* @author Lukas Reschke <lukas@owncloud.com>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2014-10-15 23:59:16 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2014-10-15 23:59:16 +04:00
|
|
|
namespace OC\Settings\Controller;
|
|
|
|
|
2014-12-01 23:47:22 +03:00
|
|
|
use OC\App\DependencyAnalyzer;
|
|
|
|
use OC\App\Platform;
|
2015-02-10 00:48:27 +03:00
|
|
|
use OC\OCSClient;
|
2015-03-30 16:58:20 +03:00
|
|
|
use OCP\App\IAppManager;
|
2014-10-15 23:59:16 +04:00
|
|
|
use \OCP\AppFramework\Controller;
|
2015-03-30 16:58:20 +03:00
|
|
|
use OCP\AppFramework\Http\ContentSecurityPolicy;
|
|
|
|
use OCP\AppFramework\Http\DataResponse;
|
|
|
|
use OCP\AppFramework\Http\TemplateResponse;
|
2015-01-09 20:31:39 +03:00
|
|
|
use OCP\ICacheFactory;
|
2015-03-30 16:58:20 +03:00
|
|
|
use OCP\INavigationManager;
|
2014-10-15 23:59:16 +04:00
|
|
|
use OCP\IRequest;
|
|
|
|
use OCP\IL10N;
|
|
|
|
use OCP\IConfig;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @package OC\Settings\Controller
|
|
|
|
*/
|
|
|
|
class AppSettingsController extends Controller {
|
|
|
|
|
|
|
|
/** @var \OCP\IL10N */
|
|
|
|
private $l10n;
|
|
|
|
/** @var IConfig */
|
|
|
|
private $config;
|
2015-01-09 20:31:39 +03:00
|
|
|
/** @var \OCP\ICache */
|
|
|
|
private $cache;
|
2015-03-30 16:58:20 +03:00
|
|
|
/** @var INavigationManager */
|
|
|
|
private $navigationManager;
|
|
|
|
/** @var IAppManager */
|
|
|
|
private $appManager;
|
|
|
|
/** @var OCSClient */
|
|
|
|
private $ocsClient;
|
2014-10-15 23:59:16 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $appName
|
|
|
|
* @param IRequest $request
|
|
|
|
* @param IL10N $l10n
|
|
|
|
* @param IConfig $config
|
2015-01-09 20:31:39 +03:00
|
|
|
* @param ICacheFactory $cache
|
2015-03-30 16:58:20 +03:00
|
|
|
* @param INavigationManager $navigationManager
|
|
|
|
* @param IAppManager $appManager
|
|
|
|
* @param OCSClient $ocsClient
|
2014-10-15 23:59:16 +04:00
|
|
|
*/
|
|
|
|
public function __construct($appName,
|
|
|
|
IRequest $request,
|
|
|
|
IL10N $l10n,
|
2015-01-09 20:31:39 +03:00
|
|
|
IConfig $config,
|
2015-03-30 16:58:20 +03:00
|
|
|
ICacheFactory $cache,
|
|
|
|
INavigationManager $navigationManager,
|
|
|
|
IAppManager $appManager,
|
|
|
|
OCSClient $ocsClient) {
|
2014-10-15 23:59:16 +04:00
|
|
|
parent::__construct($appName, $request);
|
|
|
|
$this->l10n = $l10n;
|
|
|
|
$this->config = $config;
|
2015-01-09 20:31:39 +03:00
|
|
|
$this->cache = $cache->create($appName);
|
2015-03-30 16:58:20 +03:00
|
|
|
$this->navigationManager = $navigationManager;
|
|
|
|
$this->appManager = $appManager;
|
|
|
|
$this->ocsClient = $ocsClient;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enables or disables the display of experimental apps
|
|
|
|
* @param bool $state
|
|
|
|
* @return DataResponse
|
|
|
|
*/
|
|
|
|
public function changeExperimentalConfigState($state) {
|
|
|
|
$this->config->setSystemValue('appstore.experimental.enabled', $state);
|
|
|
|
$this->appManager->clearAppsCache();
|
|
|
|
return new DataResponse();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @NoCSRFRequired
|
|
|
|
* @return TemplateResponse
|
|
|
|
*/
|
|
|
|
public function viewApps() {
|
|
|
|
$params = [];
|
|
|
|
$params['experimentalEnabled'] = $this->config->getSystemValue('appstore.experimental.enabled', false);
|
|
|
|
$this->navigationManager->setActiveEntry('core_apps');
|
|
|
|
|
|
|
|
$templateResponse = new TemplateResponse($this->appName, 'apps', $params, 'user');
|
|
|
|
$policy = new ContentSecurityPolicy();
|
|
|
|
$policy->addAllowedImageDomain('https://apps.owncloud.com');
|
|
|
|
$templateResponse->setContentSecurityPolicy($policy);
|
|
|
|
|
|
|
|
return $templateResponse;
|
2014-10-15 23:59:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get all available categories
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function listCategories() {
|
|
|
|
|
2015-01-09 20:31:39 +03:00
|
|
|
if(!is_null($this->cache->get('listCategories'))) {
|
|
|
|
return $this->cache->get('listCategories');
|
|
|
|
}
|
|
|
|
$categories = [
|
|
|
|
['id' => 0, 'displayName' => (string)$this->l10n->t('Enabled')],
|
|
|
|
['id' => 1, 'displayName' => (string)$this->l10n->t('Not enabled')],
|
|
|
|
];
|
2014-10-15 23:59:16 +04:00
|
|
|
|
2015-03-30 16:58:20 +03:00
|
|
|
if($this->ocsClient->isAppStoreEnabled()) {
|
2014-10-15 23:59:16 +04:00
|
|
|
// apps from external repo via OCS
|
2015-03-30 16:58:20 +03:00
|
|
|
$ocs = $this->ocsClient->getCategories();
|
2015-01-30 18:39:57 +03:00
|
|
|
if ($ocs) {
|
|
|
|
foreach($ocs as $k => $v) {
|
2015-03-30 16:58:20 +03:00
|
|
|
$categories[] = [
|
2015-01-30 18:39:57 +03:00
|
|
|
'id' => $k,
|
|
|
|
'displayName' => str_replace('ownCloud ', '', $v)
|
2015-03-30 16:58:20 +03:00
|
|
|
];
|
2015-01-30 18:39:57 +03:00
|
|
|
}
|
2014-10-15 23:59:16 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-09 20:31:39 +03:00
|
|
|
$this->cache->set('listCategories', $categories, 3600);
|
2014-10-15 23:59:16 +04:00
|
|
|
|
|
|
|
return $categories;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-03-30 16:58:20 +03:00
|
|
|
* Get all available apps in a category
|
|
|
|
*
|
2014-10-15 23:59:16 +04:00
|
|
|
* @param int $category
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function listApps($category = 0) {
|
2015-01-09 20:31:39 +03:00
|
|
|
if(!is_null($this->cache->get('listApps-'.$category))) {
|
|
|
|
$apps = $this->cache->get('listApps-'.$category);
|
|
|
|
} else {
|
|
|
|
switch ($category) {
|
|
|
|
// installed apps
|
|
|
|
case 0:
|
2015-02-10 00:48:27 +03:00
|
|
|
$apps = $this->getInstalledApps();
|
2015-01-16 14:07:08 +03:00
|
|
|
usort($apps, function ($a, $b) {
|
|
|
|
$a = (string)$a['name'];
|
|
|
|
$b = (string)$b['name'];
|
|
|
|
if ($a === $b) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return ($a < $b) ? -1 : 1;
|
|
|
|
});
|
2015-01-09 20:31:39 +03:00
|
|
|
break;
|
|
|
|
// not-installed apps
|
|
|
|
case 1:
|
|
|
|
$apps = \OC_App::listAllApps(true);
|
|
|
|
$apps = array_filter($apps, function ($app) {
|
|
|
|
return !$app['active'];
|
2014-10-15 23:59:16 +04:00
|
|
|
});
|
2015-01-16 14:07:08 +03:00
|
|
|
usort($apps, function ($a, $b) {
|
|
|
|
$a = (string)$a['name'];
|
|
|
|
$b = (string)$b['name'];
|
|
|
|
if ($a === $b) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return ($a < $b) ? -1 : 1;
|
|
|
|
});
|
2015-01-09 20:31:39 +03:00
|
|
|
break;
|
|
|
|
default:
|
2015-03-30 16:58:20 +03:00
|
|
|
$filter = $this->config->getSystemValue('appstore.experimental.enabled', false) ? 'all' : 'approved';
|
|
|
|
|
|
|
|
$apps = \OC_App::getAppstoreApps($filter, $category);
|
2015-01-09 20:31:39 +03:00
|
|
|
if (!$apps) {
|
|
|
|
$apps = array();
|
2015-02-10 00:48:27 +03:00
|
|
|
} else {
|
|
|
|
// don't list installed apps
|
|
|
|
$installedApps = $this->getInstalledApps();
|
|
|
|
$installedApps = array_map(function ($app) {
|
|
|
|
if (isset($app['ocsid'])) {
|
|
|
|
return $app['ocsid'];
|
|
|
|
}
|
|
|
|
return $app['id'];
|
|
|
|
}, $installedApps);
|
|
|
|
$apps = array_filter($apps, function ($app) use ($installedApps) {
|
|
|
|
return !in_array($app['id'], $installedApps);
|
|
|
|
});
|
2014-10-15 23:59:16 +04:00
|
|
|
}
|
2015-02-10 00:48:27 +03:00
|
|
|
|
|
|
|
// sort by score
|
2015-01-09 20:31:39 +03:00
|
|
|
usort($apps, function ($a, $b) {
|
|
|
|
$a = (int)$a['score'];
|
|
|
|
$b = (int)$b['score'];
|
|
|
|
if ($a === $b) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return ($a > $b) ? -1 : 1;
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
}
|
2014-10-15 23:59:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// fix groups to be an array
|
2014-12-12 14:34:53 +03:00
|
|
|
$dependencyAnalyzer = new DependencyAnalyzer(new Platform($this->config), $this->l10n);
|
|
|
|
$apps = array_map(function($app) use ($dependencyAnalyzer) {
|
2015-01-06 15:07:17 +03:00
|
|
|
|
|
|
|
// fix groups
|
2014-10-15 23:59:16 +04:00
|
|
|
$groups = array();
|
|
|
|
if (is_string($app['groups'])) {
|
|
|
|
$groups = json_decode($app['groups']);
|
|
|
|
}
|
|
|
|
$app['groups'] = $groups;
|
|
|
|
$app['canUnInstall'] = !$app['active'] && $app['removable'];
|
2014-12-01 23:47:22 +03:00
|
|
|
|
2015-01-06 15:07:17 +03:00
|
|
|
// fix licence vs license
|
|
|
|
if (isset($app['license']) && !isset($app['licence'])) {
|
|
|
|
$app['licence'] = $app['license'];
|
|
|
|
}
|
|
|
|
|
2014-12-01 23:47:22 +03:00
|
|
|
// analyse dependencies
|
2014-12-12 14:34:53 +03:00
|
|
|
$missing = $dependencyAnalyzer->analyze($app);
|
2014-12-01 23:47:22 +03:00
|
|
|
$app['canInstall'] = empty($missing);
|
|
|
|
$app['missingDependencies'] = $missing;
|
2015-01-06 15:07:17 +03:00
|
|
|
|
2014-10-15 23:59:16 +04:00
|
|
|
return $app;
|
|
|
|
}, $apps);
|
|
|
|
|
2015-01-09 20:31:39 +03:00
|
|
|
$this->cache->set('listApps-'.$category, $apps, 300);
|
|
|
|
|
|
|
|
return ['apps' => $apps, 'status' => 'success'];
|
2014-10-15 23:59:16 +04:00
|
|
|
}
|
2015-02-10 00:48:27 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
private function getInstalledApps() {
|
|
|
|
$apps = \OC_App::listAllApps(true);
|
|
|
|
$apps = array_filter($apps, function ($app) {
|
|
|
|
return $app['active'];
|
|
|
|
});
|
|
|
|
return $apps;
|
|
|
|
}
|
2014-10-15 23:59:16 +04:00
|
|
|
}
|