server/settings/ajax/setquota.php

41 lines
1.3 KiB
PHP
Raw Normal View History

2011-08-15 19:06:29 +00:00
<?php
2012-02-25 20:19:32 +00: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 19:06:29 +00:00
2012-07-19 14:37:41 +00:00
OC_JSON::checkSubAdminUser();
2012-07-07 13:27:04 +00:00
OCP\JSON::callCheck();
2011-08-15 19:06:29 +00:00
2012-02-24 20:19:23 +00:00
$username = isset($_POST["username"])?$_POST["username"]:'';
if(($username == '' && !OC_Group::inGroup(OC_User::getUser(), 'admin')) || (!OC_Group::inGroup(OC_User::getUser(), 'admin') && !OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username))) {
2012-07-19 14:37:41 +00:00
$l = OC_L10N::get('core');
OC_JSON::error(array( 'data' => array( 'message' => $l->t('Authentication error') )));
2012-07-19 14:37:41 +00:00
exit();
}
//make sure the quota is in the expected format
2012-02-24 13:10:19 +00:00
$quota=$_POST["quota"];
if($quota!='none' and $quota!='default') {
2012-02-24 13:10:19 +00:00
$quota= OC_Helper::computerFileSize($quota);
if($quota==0) {
2012-02-24 13:38:40 +00:00
$quota='default';
}else{
$quota=OC_Helper::humanFileSize($quota);
}
2012-02-24 13:10:19 +00:00
}
2011-08-15 19:06:29 +00:00
// Return Success story
if($username) {
OC_Preferences::setValue($username, 'files', 'quota', $quota);
2012-02-24 20:19:23 +00:00
}else{//set the default quota when no username is specified
if($quota=='default') {//'default' as default quota makes no sense
2012-02-24 20:19:23 +00:00
$quota='none';
}
OC_Appconfig::setValue('files', 'default_quota', $quota);
2012-02-24 20:19:23 +00:00
}
OC_JSON::success(array("data" => array( "username" => $username ,'quota' => $quota)));
2011-08-15 19:06:29 +00:00