nextcloud/settings/ajax/setquota.php

38 lines
986 B
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
// Init owncloud
require_once('../../lib/base.php');
OC_JSON::checkAdminUser();
2011-08-15 23:06:29 +04:00
2012-02-25 00:19:23 +04:00
$username = isset($_POST["username"])?$_POST["username"]:'';
//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'){
$quota= OC_Helper::computerFileSize($quota);
2012-02-24 17:38:40 +04:00
if($quota==0){
$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
2012-02-25 00:19:23 +04:00
if($username){
OC_Preferences::setValue($username,'files','quota',$quota);
}else{//set the default quota when no username is specified
if($quota=='default'){//'default' as default quota makes no sense
$quota='none';
}
OC_Appconfig::setValue('files','default_quota',$quota);
}
OC_JSON::success(array("data" => array( "username" => $username ,'quota'=>$quota)));
2011-08-15 23:06:29 +04:00
?>