2014-12-22 16:54:50 +03:00
|
|
|
<?php
|
2019-12-03 21:57:53 +03:00
|
|
|
|
2018-02-27 17:47:59 +03:00
|
|
|
declare(strict_types=1);
|
2019-12-03 21:57:53 +03:00
|
|
|
|
2014-12-22 16:54:50 +03:00
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Tom Needham <tom@owncloud.com>
|
2014-12-22 16:54:50 +03:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2014-12-22 16:54:50 +03: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-12-22 16:54:50 +03:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2014-12-22 16:54:50 +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.
|
2014-12-22 16:54:50 +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,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2014-12-22 16:54:50 +03:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2016-08-12 11:27:08 +03:00
|
|
|
namespace OCA\Provisioning_API\Controller;
|
2014-12-22 16:54:50 +03:00
|
|
|
|
2019-11-22 22:52:10 +03:00
|
|
|
use OC_App;
|
2017-03-20 12:30:46 +03:00
|
|
|
use OCP\App\AppPathNotFoundException;
|
2016-08-12 11:27:08 +03:00
|
|
|
use OCP\App\IAppManager;
|
|
|
|
use OCP\AppFramework\Http\DataResponse;
|
|
|
|
use OCP\AppFramework\OCS\OCSException;
|
|
|
|
use OCP\AppFramework\OCSController;
|
|
|
|
use OCP\IRequest;
|
2014-12-22 16:54:50 +03:00
|
|
|
|
2016-08-12 11:27:08 +03:00
|
|
|
class AppsController extends OCSController {
|
2015-07-25 22:14:43 +03:00
|
|
|
/** @var \OCP\App\IAppManager */
|
|
|
|
private $appManager;
|
|
|
|
|
2015-09-08 15:02:30 +03:00
|
|
|
/**
|
2016-08-12 11:27:08 +03:00
|
|
|
* @param string $appName
|
|
|
|
* @param IRequest $request
|
|
|
|
* @param IAppManager $appManager
|
2015-09-08 15:02:30 +03:00
|
|
|
*/
|
2016-08-12 11:27:08 +03:00
|
|
|
public function __construct(
|
2018-02-27 17:47:59 +03:00
|
|
|
string $appName,
|
2016-08-12 11:27:08 +03:00
|
|
|
IRequest $request,
|
2016-10-27 18:41:15 +03:00
|
|
|
IAppManager $appManager
|
2016-08-12 11:27:08 +03:00
|
|
|
) {
|
|
|
|
parent::__construct($appName, $request);
|
|
|
|
|
2015-07-25 22:14:43 +03:00
|
|
|
$this->appManager = $appManager;
|
|
|
|
}
|
|
|
|
|
2015-09-08 15:02:30 +03:00
|
|
|
/**
|
2016-08-12 11:27:08 +03:00
|
|
|
* @param string $filter
|
|
|
|
* @return DataResponse
|
|
|
|
* @throws OCSException
|
2015-09-08 15:02:30 +03:00
|
|
|
*/
|
2018-02-27 17:47:59 +03:00
|
|
|
public function getApps(string $filter = null): DataResponse {
|
2016-10-27 18:41:15 +03:00
|
|
|
$apps = (new OC_App())->listAllApps();
|
2015-09-08 15:02:30 +03:00
|
|
|
$list = [];
|
2020-04-10 15:19:56 +03:00
|
|
|
foreach ($apps as $app) {
|
2014-12-22 16:54:50 +03:00
|
|
|
$list[] = $app['id'];
|
|
|
|
}
|
2020-04-10 15:19:56 +03:00
|
|
|
if ($filter) {
|
|
|
|
switch ($filter) {
|
2014-12-22 16:54:50 +03:00
|
|
|
case 'enabled':
|
2016-08-12 11:27:08 +03:00
|
|
|
return new DataResponse(['apps' => \OC_App::getEnabledApps()]);
|
2014-12-22 16:54:50 +03:00
|
|
|
break;
|
|
|
|
case 'disabled':
|
|
|
|
$enabled = OC_App::getEnabledApps();
|
2016-08-12 11:27:08 +03:00
|
|
|
return new DataResponse(['apps' => array_diff($list, $enabled)]);
|
2014-12-22 16:54:50 +03:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// Invalid filter variable
|
2016-08-12 11:27:08 +03:00
|
|
|
throw new OCSException('', 101);
|
2014-12-22 16:54:50 +03:00
|
|
|
}
|
|
|
|
} else {
|
2016-08-12 11:27:08 +03:00
|
|
|
return new DataResponse(['apps' => $list]);
|
2014-12-22 16:54:50 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-08 15:02:30 +03:00
|
|
|
/**
|
2016-08-12 11:27:08 +03:00
|
|
|
* @param string $app
|
|
|
|
* @return DataResponse
|
2016-12-05 13:55:21 +03:00
|
|
|
* @throws OCSException
|
2015-09-08 15:02:30 +03:00
|
|
|
*/
|
2018-02-27 17:47:59 +03:00
|
|
|
public function getAppInfo(string $app): DataResponse {
|
2015-07-25 22:14:43 +03:00
|
|
|
$info = \OCP\App::getAppInfo($app);
|
2020-04-10 15:19:56 +03:00
|
|
|
if (!is_null($info)) {
|
2016-08-12 11:27:08 +03:00
|
|
|
return new DataResponse(OC_App::getAppInfo($app));
|
2014-12-22 16:54:50 +03:00
|
|
|
}
|
2017-07-24 08:44:09 +03:00
|
|
|
|
|
|
|
throw new OCSException('The request app was not found', \OCP\API::RESPOND_NOT_FOUND);
|
2014-12-22 16:54:50 +03:00
|
|
|
}
|
|
|
|
|
2015-09-08 15:02:30 +03:00
|
|
|
/**
|
2016-12-05 13:55:21 +03:00
|
|
|
* @PasswordConfirmationRequired
|
2016-08-12 11:27:08 +03:00
|
|
|
* @param string $app
|
|
|
|
* @return DataResponse
|
2017-03-20 12:30:46 +03:00
|
|
|
* @throws OCSException
|
2015-09-08 15:02:30 +03:00
|
|
|
*/
|
2018-02-27 17:47:59 +03:00
|
|
|
public function enable(string $app): DataResponse {
|
2017-03-20 12:30:46 +03:00
|
|
|
try {
|
|
|
|
$this->appManager->enableApp($app);
|
|
|
|
} catch (AppPathNotFoundException $e) {
|
|
|
|
throw new OCSException('The request app was not found', \OCP\API::RESPOND_NOT_FOUND);
|
|
|
|
}
|
2016-08-12 11:27:08 +03:00
|
|
|
return new DataResponse();
|
2014-12-22 16:54:50 +03:00
|
|
|
}
|
|
|
|
|
2015-09-08 15:02:30 +03:00
|
|
|
/**
|
2016-12-05 13:55:21 +03:00
|
|
|
* @PasswordConfirmationRequired
|
2016-08-12 11:27:08 +03:00
|
|
|
* @param string $app
|
|
|
|
* @return DataResponse
|
2015-09-08 15:02:30 +03:00
|
|
|
*/
|
2018-02-27 17:47:59 +03:00
|
|
|
public function disable(string $app): DataResponse {
|
2015-07-25 22:14:43 +03:00
|
|
|
$this->appManager->disableApp($app);
|
2016-08-12 11:27:08 +03:00
|
|
|
return new DataResponse();
|
2014-12-22 16:54:50 +03:00
|
|
|
}
|
|
|
|
}
|