nextcloud/settings/ajax/togglegroups.php

93 lines
3.2 KiB
PHP
Raw Normal View History

<?php
2015-03-26 11:44:34 +01:00
/**
2016-07-21 17:07:57 +02:00
* @copyright Copyright (c) 2016, ownCloud, Inc.
*
2015-03-26 11:44:34 +01: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 19:56:05 +02:00
* @author Lukas Reschke <lukas@statuscode.ch>
2016-07-21 18:13:36 +02:00
* @author Robin Appelman <robin@icewind.nl>
2015-03-26 11:44:34 +01:00
* @author Thomas Müller <thomas.mueller@tmit.eu>
*
* @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 15:13:51 +02:00
OC_JSON::checkSubAdminUser();
2012-07-07 15:27:04 +02:00
OCP\JSON::callCheck();
$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();
}
$success = true;
$username = (string)$_POST['username'];
$group = (string)$_POST['group'];
2013-04-17 15:32:03 +02:00
if($username === OC_User::getUser() && $group === "admin" && OC_User::isAdminUser($username)) {
2014-08-31 10:05:59 +02:00
$l = \OC::$server->getL10N('core');
2012-11-28 17:57:31 +01:00
OC_JSON::error(array( 'data' => array( 'message' => $l->t('Admins can\'t remove themself from the admin group'))));
exit();
}
2015-10-27 14:09:45 +01: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-14 23:29:51 +01:00
if(!OC_User::isAdminUser(OC_User::getUser())
2015-10-27 14:09:45 +01:00
&& (!$isUserAccessible
|| !$isGroupAccessible)) {
2014-08-31 10:05:59 +02:00
$l = \OC::$server->getL10N('core');
2012-07-20 15:13:51 +02:00
OC_JSON::error(array( 'data' => array( 'message' => $l->t('Authentication error') )));
exit();
}
if(!OC_Group::groupExists($group)) {
2011-08-10 20:51:35 +02:00
OC_Group::createGroup($group);
}
2014-08-31 10:05:59 +02:00
$l = \OC::$server->getL10N('settings');
2012-09-04 20:47:15 +02: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 12:39:28 +02:00
$action = "remove";
2013-01-14 20:30:28 +01: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 21:36:03 +02: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 20:47:15 +02:00
OC_JSON::error(array("data" => array( "message" => $error )));
}