nextcloud/settings/ajax/togglegroups.php

85 lines
3.0 KiB
PHP
Raw Normal View History

<?php
2015-03-26 13:44:34 +03:00
/**
* @author Bart Visscher <bartv@thisnet.nl>
* @author Christopher Schäpers <kondou@ts.unde.re>
* @author Georg Ehrke <georg@owncloud.com>
* @author Jakob Sack <mail@jakobsack.de>
* @author Lukas Reschke <lukas@owncloud.com>
* @author Robin Appelman <icewind@owncloud.com>
* @author Thomas Müller <thomas.mueller@tmit.eu>
*
2016-01-12 17:02:16 +03:00
* @copyright Copyright (c) 2016, ownCloud, Inc.
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-20 17:13:51 +04:00
OC_JSON::checkSubAdminUser();
2012-07-07 17:27:04 +04:00
OCP\JSON::callCheck();
$success = true;
$username = (string)$_POST['username'];
$group = (string)$_POST['group'];
2013-04-17 17:32:03 +04:00
if($username === OC_User::getUser() && $group === "admin" && OC_User::isAdminUser($username)) {
2014-08-31 12:05:59 +04:00
$l = \OC::$server->getL10N('core');
2012-11-28 20:57:31 +04:00
OC_JSON::error(array( 'data' => array( 'message' => $l->t('Admins can\'t remove themself from the admin group'))));
exit();
}
2015-10-27 16:09:45 +03:00
$isUserAccessible = false;
$isGroupAccessible = false;
$currentUserObject = \OC::$server->getUserSession()->getUser();
$targetUserObject = \OC::$server->getUserManager()->get($username);
$targetGroupObject = \OC::$server->getGroupManager()->get($group);
if($targetUserObject !== null && $currentUserObject !== null && $targetGroupObject !== null) {
$isUserAccessible = \OC::$server->getGroupManager()->getSubAdmin()->isUserAccessible($currentUserObject, $targetUserObject);
$isGroupAccessible = \OC::$server->getGroupManager()->getSubAdmin()->isSubAdminofGroup($currentUserObject, $targetGroupObject);
}
2013-02-15 02:29:51 +04:00
if(!OC_User::isAdminUser(OC_User::getUser())
2015-10-27 16:09:45 +03:00
&& (!$isUserAccessible
|| !$isGroupAccessible)) {
2014-08-31 12:05:59 +04:00
$l = \OC::$server->getL10N('core');
2012-07-20 17:13:51 +04:00
OC_JSON::error(array( 'data' => array( 'message' => $l->t('Authentication error') )));
exit();
}
if(!OC_Group::groupExists($group)) {
2011-08-10 22:51:35 +04:00
OC_Group::createGroup($group);
}
2014-08-31 12:05:59 +04:00
$l = \OC::$server->getL10N('settings');
2012-09-04 22:47:15 +04:00
$error = $l->t("Unable to add user to group %s", $group);
$action = "add";
// Toggle group
if( OC_Group::inGroup( $username, $group )) {
2011-04-18 14:39:28 +04:00
$action = "remove";
2013-01-14 23:30:28 +04:00
$error = $l->t("Unable to remove user from group %s", $group);
$success = OC_Group::removeFromGroup( $username, $group );
$usersInGroup=OC_Group::usersInGroup($group);
}
else{
2011-07-29 23:36:03 +04:00
$success = OC_Group::addToGroup( $username, $group );
}
// Return Success story
if( $success ) {
OC_JSON::success(array("data" => array( "username" => $username, "action" => $action, "groupname" => $group )));
}
else{
2012-09-04 22:47:15 +04:00
OC_JSON::error(array("data" => array( "message" => $error )));
}