2011-08-15 19:06:29 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// Init owncloud
|
|
|
|
require_once('../../lib/base.php');
|
|
|
|
|
2011-09-23 20:22:59 +00:00
|
|
|
OC_JSON::checkAdminUser();
|
2011-08-15 19:06:29 +00:00
|
|
|
|
2012-02-24 20:19:23 +00:00
|
|
|
$username = isset($_POST["username"])?$_POST["username"]:'';
|
2011-12-14 00:16:14 +00:00
|
|
|
|
|
|
|
//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'){
|
|
|
|
$quota= OC_Helper::computerFileSize($quota);
|
2012-02-24 13:38:40 +00:00
|
|
|
if($quota==0){
|
|
|
|
$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
|
2012-02-24 20:19:23 +00: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);
|
|
|
|
}
|
2011-12-14 00:16:14 +00:00
|
|
|
OC_JSON::success(array("data" => array( "username" => $username ,'quota'=>$quota)));
|
2011-08-15 19:06:29 +00:00
|
|
|
|
|
|
|
?>
|