nextcloud/settings/ajax/setquota.php

69 lines
2.5 KiB
PHP
Raw Normal View History

2011-08-15 23:06:29 +04:00
<?php
2012-02-26 00:19:32 +04:00
/**
* @author Arthur Schiwon <blizzz@owncloud.com>
2015-03-26 13:44:34 +03:00
* @author Bart Visscher <bartv@thisnet.nl>
* @author Björn Schießle <schiessle@owncloud.com>
* @author Christopher Schäpers <kondou@ts.unde.re>
* @author Felix Moeller <mail@felixmoeller.de>
* @author Georg Ehrke <georg@owncloud.com>
* @author Lukas Reschke <lukas@owncloud.com>
* @author Morris Jobke <hey@morrisjobke.de>
* @author Robin Appelman <icewind@owncloud.com>
* @author Thomas Müller <thomas.mueller@tmit.eu>
*
2016-01-12 17:02:16 +03:00
* @copyright Copyright (c) 2016, ownCloud, Inc.
2015-03-26 13:44:34 +03:00
* @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/>
*
2012-02-26 00:19:32 +04:00
*/
2012-07-19 18:37:41 +04:00
OC_JSON::checkSubAdminUser();
2012-07-07 17:27:04 +04:00
OCP\JSON::callCheck();
2011-08-15 23:06:29 +04:00
$username = isset($_POST["username"]) ? (string)$_POST["username"] : '';
2015-10-27 16:09:45 +03:00
$isUserAccessible = false;
$currentUserObject = \OC::$server->getUserSession()->getUser();
$targetUserObject = \OC::$server->getUserManager()->get($username);
if($targetUserObject !== null && $currentUserObject !== null) {
$isUserAccessible = \OC::$server->getGroupManager()->getSubAdmin()->isUserAccessible($currentUserObject, $targetUserObject);
}
2013-04-17 17:32:03 +04:00
if(($username === '' && !OC_User::isAdminUser(OC_User::getUser()))
2013-02-15 02:29:51 +04:00
|| (!OC_User::isAdminUser(OC_User::getUser())
2015-10-27 16:09:45 +03:00
&& !$isUserAccessible)) {
2014-08-31 12:05:59 +04:00
$l = \OC::$server->getL10N('core');
OC_JSON::error(array( 'data' => array( 'message' => $l->t('Authentication error') )));
2012-07-19 18:37:41 +04:00
exit();
}
//make sure the quota is in the expected format
$quota= (string)$_POST["quota"];
2013-04-17 17:32:03 +04:00
if($quota !== 'none' and $quota !== 'default') {
2012-02-24 17:10:19 +04:00
$quota= OC_Helper::computerFileSize($quota);
$quota=OC_Helper::humanFileSize($quota);
2012-02-24 17:10:19 +04:00
}
2011-08-15 23:06:29 +04:00
// Return Success story
if($username) {
$targetUserObject->setQuota($quota);
2012-02-25 00:19:23 +04:00
}else{//set the default quota when no username is specified
2013-04-17 17:32:03 +04:00
if($quota === 'default') {//'default' as default quota makes no sense
2012-02-25 00:19:23 +04:00
$quota='none';
}
2015-07-03 15:16:29 +03:00
\OC::$server->getAppConfig()->setValue('files', 'default_quota', $quota);
2012-02-25 00:19:23 +04:00
}
2012-11-04 14:10:46 +04:00
OC_JSON::success(array("data" => array( "username" => $username , 'quota' => $quota)));
2011-08-15 23:06:29 +04:00