server/settings/ajax/setquota.php

39 lines
1.2 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"]:'';
2013-04-17 13:32:03 +00:00
if(($username === '' && !OC_User::isAdminUser(OC_User::getUser()))
2013-02-14 22:29:51 +00:00
|| (!OC_User::isAdminUser(OC_User::getUser())
&& !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"];
2013-04-17 13:32:03 +00:00
if($quota !== 'none' and $quota !== 'default') {
2012-02-24 13:10:19 +00:00
$quota= OC_Helper::computerFileSize($quota);
$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
2013-04-17 13:32:03 +00:00
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
}
2012-11-04 10:10:46 +00:00
OC_JSON::success(array("data" => array( "username" => $username , 'quota' => $quota)));
2011-08-15 19:06:29 +00:00