diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-01-18 10:02:08 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2018-06-06 11:40:06 +0200 |
commit | 8594fdc493a0bb16bfe37a7cde6c5b8f37a9f4e2 (patch) | |
tree | 51191297cea2f9b0434618a8d8b28be32c0e623c /settings/ajax/uninstallapp.php | |
parent | 88f657b71c9267f90c14665cabd790efb0da9949 (diff) | |
download | nextcloud-server-8594fdc493a0bb16bfe37a7cde6c5b8f37a9f4e2.tar.gz nextcloud-server-8594fdc493a0bb16bfe37a7cde6c5b8f37a9f4e2.zip |
Move to AppFramework Controller
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Move app management ajax code to AppSettingsController
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'settings/ajax/uninstallapp.php')
-rw-r--r-- | settings/ajax/uninstallapp.php | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/settings/ajax/uninstallapp.php b/settings/ajax/uninstallapp.php deleted file mode 100644 index 26100d3b066..00000000000 --- a/settings/ajax/uninstallapp.php +++ /dev/null @@ -1,55 +0,0 @@ -<?php -/** - * @copyright Copyright (c) 2016, ownCloud, Inc. - * - * @author Georg Ehrke <oc.list@georgehrke.com> - * @author Lukas Reschke <lukas@statuscode.ch> - * @author Robin Appelman <robin@icewind.nl> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @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/> - * - */ -\OC_JSON::checkAdminUser(); -\OC_JSON::callCheck(); - -$lastConfirm = (int) \OC::$server->getSession()->get('last-password-confirm'); -if ($lastConfirm < (time() - 30 * 60 + 15)) { // allow 15 seconds delay - $l = \OC::$server->getL10N('core'); - OC_JSON::error(array( 'data' => array( 'message' => $l->t('Password confirmation is required')))); - exit(); -} - -if (!array_key_exists('appid', $_POST)) { - OC_JSON::error(); - exit; -} - -$appId = (string)$_POST['appid']; -$appId = OC_App::cleanAppId($appId); - -// FIXME: move to controller -/** @var \OC\Installer $installer */ -$installer = \OC::$server->query(\OC\Installer::class); -$result = $installer->removeApp($app); -if($result !== false) { - // FIXME: Clear the cache - move that into some sane helper method - \OC::$server->getMemCacheFactory()->createDistributed('settings')->remove('listApps-0'); - \OC::$server->getMemCacheFactory()->createDistributed('settings')->remove('listApps-1'); - OC_JSON::success(array('data' => array('appid' => $appId))); -} else { - $l = \OC::$server->getL10N('settings'); - OC_JSON::error(array('data' => array( 'message' => $l->t("Couldn't remove app.") ))); -} |