2012-07-15 18:32:57 +04:00
|
|
|
<?php
|
2015-03-26 13:44:34 +03:00
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* @author Georg Ehrke <georg@owncloud.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
2012-07-15 18:32:57 +04:00
|
|
|
OC_JSON::checkAdminUser();
|
|
|
|
OCP\JSON::callCheck();
|
|
|
|
|
2016-10-25 14:05:13 +03:00
|
|
|
$lastConfirm = (int) \OC::$server->getSession()->get('last-password-confirm');
|
|
|
|
if ($lastConfirm < (time() - 30 * 60 + 15)) { // allow 15 seconds delay
|
|
|
|
$l = \OC::$server->getL10N('core');
|
|
|
|
OC_JSON::error(array( 'data' => array( 'message' => $l->t('Password confirmation is required'))));
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2015-02-13 15:33:20 +03:00
|
|
|
$username = (string)$_POST['username'];
|
|
|
|
$group = (string)$_POST['group'];
|
2012-07-15 18:32:57 +04:00
|
|
|
|
2015-10-27 16:09:45 +03:00
|
|
|
$subAdminManager = \OC::$server->getGroupManager()->getSubAdmin();
|
|
|
|
$targetUserObject = \OC::$server->getUserManager()->get($username);
|
|
|
|
$targetGroupObject = \OC::$server->getGroupManager()->get($group);
|
|
|
|
|
|
|
|
$isSubAdminOfGroup = false;
|
|
|
|
if($targetUserObject !== null && $targetUserObject !== null) {
|
|
|
|
$isSubAdminOfGroup = $subAdminManager->isSubAdminofGroup($targetUserObject, $targetGroupObject);
|
|
|
|
}
|
|
|
|
|
2012-07-15 18:32:57 +04:00
|
|
|
// Toggle group
|
2015-10-27 16:09:45 +03:00
|
|
|
if($isSubAdminOfGroup) {
|
|
|
|
$subAdminManager->deleteSubAdmin($targetUserObject, $targetGroupObject);
|
|
|
|
} else {
|
|
|
|
$subAdminManager->createSubAdmin($targetUserObject, $targetGroupObject);
|
2012-07-15 18:32:57 +04:00
|
|
|
}
|
|
|
|
|
2012-09-29 20:08:54 +04:00
|
|
|
OC_JSON::success();
|