2011-04-17 15:15:55 +04:00
|
|
|
<?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>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @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();
|
2011-04-17 15:15:55 +04:00
|
|
|
|
2011-04-17 20:05:49 +04:00
|
|
|
$success = true;
|
2015-02-13 15:33:20 +03:00
|
|
|
$username = (string)$_POST['username'];
|
|
|
|
$group = (string)$_POST['group'];
|
2011-04-17 20:05:49 +04:00
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
2012-09-04 13:58:07 +04:00
|
|
|
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";
|
|
|
|
|
2011-04-17 20:05:49 +04:00
|
|
|
// Toggle group
|
2012-09-04 13:58:07 +04:00
|
|
|
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 );
|
2011-08-11 12:12:03 +04:00
|
|
|
$usersInGroup=OC_Group::usersInGroup($group);
|
2011-04-17 20:05:49 +04:00
|
|
|
}
|
|
|
|
else{
|
2011-07-29 23:36:03 +04:00
|
|
|
$success = OC_Group::addToGroup( $username, $group );
|
2011-04-17 20:05:49 +04:00
|
|
|
}
|
2011-04-17 15:15:55 +04:00
|
|
|
|
|
|
|
// Return Success story
|
2012-09-04 13:58:07 +04:00
|
|
|
if( $success ) {
|
2011-09-24 00:22:59 +04:00
|
|
|
OC_JSON::success(array("data" => array( "username" => $username, "action" => $action, "groupname" => $group )));
|
2011-04-17 15:15:55 +04:00
|
|
|
}
|
|
|
|
else{
|
2012-09-04 22:47:15 +04:00
|
|
|
OC_JSON::error(array("data" => array( "message" => $error )));
|
2011-04-17 15:15:55 +04:00
|
|
|
}
|