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