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