nextcloud/settings/ajax/setquota.php

43 lines
1.2 KiB
PHP
Raw Normal View History

2011-08-15 23:06:29 +04:00
<?php
2012-02-26 00:19:32 +04:00
/**
* Copyright (c) 2012, Robin Appelman <icewind1991@gmail.com>
* This file is licensed under the Affero General Public License version 3 or later.
* See the COPYING-README file.
*/
2011-08-15 23:06:29 +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
2012-02-25 00:19:23 +04:00
$username = isset($_POST["username"])?$_POST["username"]:'';
2013-02-15 02:29:51 +04:00
if(($username == '' && !OC_User::isAdminUser(OC_User::getUser()))
|| (!OC_User::isAdminUser(OC_User::getUser())
&& !OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username))) {
2012-07-19 18:37:41 +04:00
$l = OC_L10N::get('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
2012-02-24 17:10:19 +04:00
$quota=$_POST["quota"];
if($quota!='none' and $quota!='default') {
2012-02-24 17:10:19 +04:00
$quota= OC_Helper::computerFileSize($quota);
if($quota==0) {
2012-02-24 17:38:40 +04:00
$quota='default';
}else{
$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) {
OC_Preferences::setValue($username, 'files', 'quota', $quota);
2012-02-25 00:19:23 +04:00
}else{//set the default quota when no username is specified
if($quota=='default') {//'default' as default quota makes no sense
2012-02-25 00:19:23 +04:00
$quota='none';
}
OC_Appconfig::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