2012-04-13 03:58:53 +04:00
|
|
|
<?php
|
2015-02-26 13:37:37 +03:00
|
|
|
/**
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@owncloud.com>
|
|
|
|
* @author Felix Moeller <mail@felixmoeller.de>
|
|
|
|
* @author Lukas Reschke <lukas@owncloud.com>
|
|
|
|
* @author Michael Gapczynski <GapczynskiM@gmail.com>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
2016-03-01 19:25:15 +03:00
|
|
|
* @author Roeland Jago Douma <rullzer@owncloud.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @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/>
|
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2016-04-19 16:13:31 +03:00
|
|
|
namespace Test\Util\Group;
|
|
|
|
|
2016-05-17 17:06:44 +03:00
|
|
|
use OC\Group\Backend;
|
2016-04-19 16:13:31 +03:00
|
|
|
|
2012-04-13 03:58:53 +04:00
|
|
|
/**
|
2015-02-26 13:37:37 +03:00
|
|
|
* dummy group backend, does not keep state, only for testing use
|
2012-04-13 03:58:53 +04:00
|
|
|
*/
|
2016-05-17 17:06:44 +03:00
|
|
|
class Dummy extends Backend {
|
2020-10-05 16:12:57 +03:00
|
|
|
private $groups = [];
|
2012-04-13 03:58:53 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Try to create a new group
|
2014-02-19 12:31:54 +04:00
|
|
|
* @param string $gid The name of the group to create
|
2014-05-12 00:51:30 +04:00
|
|
|
* @return bool
|
2012-04-13 03:58:53 +04:00
|
|
|
*
|
2014-05-11 00:32:13 +04:00
|
|
|
* Tries to create a new group. If the group name already exists, false will
|
2012-04-13 03:58:53 +04:00
|
|
|
* be returned.
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public function createGroup($gid) {
|
2020-04-10 15:19:56 +03:00
|
|
|
if (!isset($this->groups[$gid])) {
|
2020-10-05 16:12:57 +03:00
|
|
|
$this->groups[$gid] = [];
|
2012-04-13 03:58:53 +04:00
|
|
|
return true;
|
2020-04-10 15:19:56 +03:00
|
|
|
} else {
|
2012-04-13 03:58:53 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* delete a group
|
2014-05-12 00:51:30 +04:00
|
|
|
* @param string $gid gid of the group to delete
|
|
|
|
* @return bool
|
2012-04-13 03:58:53 +04:00
|
|
|
*
|
|
|
|
* Deletes a group and removes it from the group_user-table
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public function deleteGroup($gid) {
|
2020-04-10 15:19:56 +03:00
|
|
|
if (isset($this->groups[$gid])) {
|
2012-04-13 03:58:53 +04:00
|
|
|
unset($this->groups[$gid]);
|
|
|
|
return true;
|
2020-04-10 15:19:56 +03:00
|
|
|
} else {
|
2012-04-13 03:58:53 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* is user in group?
|
2014-05-12 00:51:30 +04:00
|
|
|
* @param string $uid uid of the user
|
|
|
|
* @param string $gid gid of the group
|
|
|
|
* @return bool
|
2012-04-13 03:58:53 +04:00
|
|
|
*
|
|
|
|
* Checks whether the user is member of a group or not.
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public function inGroup($uid, $gid) {
|
2020-04-10 15:19:56 +03:00
|
|
|
if (isset($this->groups[$gid])) {
|
2020-10-05 16:12:57 +03:00
|
|
|
return (array_search($uid, $this->groups[$gid]) !== false);
|
2020-04-10 15:19:56 +03:00
|
|
|
} else {
|
2012-04-13 03:58:53 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Add a user to a group
|
2014-05-12 00:51:30 +04:00
|
|
|
* @param string $uid Name of the user to add to group
|
|
|
|
* @param string $gid Name of the group in which add the user
|
|
|
|
* @return bool
|
2012-04-13 03:58:53 +04:00
|
|
|
*
|
|
|
|
* Adds a user to a group.
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public function addToGroup($uid, $gid) {
|
2020-04-10 15:19:56 +03:00
|
|
|
if (isset($this->groups[$gid])) {
|
2020-10-05 16:12:57 +03:00
|
|
|
if (array_search($uid, $this->groups[$gid]) === false) {
|
|
|
|
$this->groups[$gid][] = $uid;
|
2012-04-13 03:58:53 +04:00
|
|
|
return true;
|
2020-04-10 15:19:56 +03:00
|
|
|
} else {
|
2012-04-13 03:58:53 +04:00
|
|
|
return false;
|
|
|
|
}
|
2020-04-10 15:19:56 +03:00
|
|
|
} else {
|
2012-04-13 03:58:53 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Removes a user from a group
|
2014-05-12 00:51:30 +04:00
|
|
|
* @param string $uid Name of the user to remove from group
|
|
|
|
* @param string $gid Name of the group from which remove the user
|
2016-02-19 11:43:20 +03:00
|
|
|
* @return bool
|
2012-04-13 03:58:53 +04:00
|
|
|
*
|
|
|
|
* removes the user from a group.
|
|
|
|
*/
|
2012-11-02 22:53:02 +04:00
|
|
|
public function removeFromGroup($uid, $gid) {
|
2020-04-10 15:19:56 +03:00
|
|
|
if (isset($this->groups[$gid])) {
|
2020-10-05 16:12:57 +03:00
|
|
|
if (($index = array_search($uid, $this->groups[$gid])) !== false) {
|
2012-04-13 03:58:53 +04:00
|
|
|
unset($this->groups[$gid][$index]);
|
2016-02-19 11:43:20 +03:00
|
|
|
return true;
|
2020-04-10 15:19:56 +03:00
|
|
|
} else {
|
2012-04-13 03:58:53 +04:00
|
|
|
return false;
|
|
|
|
}
|
2020-04-10 15:19:56 +03:00
|
|
|
} else {
|
2012-04-13 03:58:53 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Get all groups a user belongs to
|
2014-05-12 00:51:30 +04:00
|
|
|
* @param string $uid Name of the user
|
2014-05-11 21:13:51 +04:00
|
|
|
* @return array an array of group names
|
2012-04-13 03:58:53 +04:00
|
|
|
*
|
|
|
|
* This function fetches all groups a user belongs to. It does not check
|
|
|
|
* if the user exists at all.
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public function getUserGroups($uid) {
|
2020-10-05 16:12:57 +03:00
|
|
|
$groups = [];
|
|
|
|
$allGroups = array_keys($this->groups);
|
2020-04-10 15:19:56 +03:00
|
|
|
foreach ($allGroups as $group) {
|
|
|
|
if ($this->inGroup($uid, $group)) {
|
2020-10-05 16:12:57 +03:00
|
|
|
$groups[] = $group;
|
2012-04-13 03:58:53 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return $groups;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Get a list of all groups
|
2014-05-11 00:32:13 +04:00
|
|
|
* @param string $search
|
|
|
|
* @param int $limit
|
|
|
|
* @param int $offset
|
2014-05-11 21:13:51 +04:00
|
|
|
* @return array an array of group names
|
2012-04-13 03:58:53 +04:00
|
|
|
*/
|
2012-08-12 00:06:31 +04:00
|
|
|
public function getGroups($search = '', $limit = -1, $offset = 0) {
|
2020-04-10 15:19:56 +03:00
|
|
|
if (empty($search)) {
|
2014-06-25 15:13:53 +04:00
|
|
|
return array_keys($this->groups);
|
|
|
|
}
|
2020-03-26 11:30:18 +03:00
|
|
|
$result = [];
|
2020-04-10 15:19:56 +03:00
|
|
|
foreach (array_keys($this->groups) as $group) {
|
|
|
|
if (stripos($group, $search) !== false) {
|
2014-06-25 15:13:53 +04:00
|
|
|
$result[] = $group;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $result;
|
2012-04-13 03:58:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Get a list of all users in a group
|
2014-05-11 00:32:13 +04:00
|
|
|
* @param string $gid
|
|
|
|
* @param string $search
|
|
|
|
* @param int $limit
|
|
|
|
* @param int $offset
|
|
|
|
* @return array an array of user IDs
|
2012-04-13 03:58:53 +04:00
|
|
|
*/
|
2012-08-12 00:21:09 +04:00
|
|
|
public function usersInGroup($gid, $search = '', $limit = -1, $offset = 0) {
|
2020-04-10 15:19:56 +03:00
|
|
|
if (isset($this->groups[$gid])) {
|
|
|
|
if (empty($search)) {
|
2019-11-19 18:09:11 +03:00
|
|
|
$length = $limit < 0 ? null : $limit;
|
|
|
|
return array_slice($this->groups[$gid], $offset, $length);
|
2014-06-25 15:13:53 +04:00
|
|
|
}
|
2020-03-26 11:30:18 +03:00
|
|
|
$result = [];
|
2020-04-10 15:19:56 +03:00
|
|
|
foreach ($this->groups[$gid] as $user) {
|
|
|
|
if (stripos($user, $search) !== false) {
|
2014-06-25 15:13:53 +04:00
|
|
|
$result[] = $user;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $result;
|
2020-04-10 15:19:56 +03:00
|
|
|
} else {
|
2020-03-26 11:30:18 +03:00
|
|
|
return [];
|
2012-04-13 03:58:53 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-04 20:56:14 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* get the number of all users in a group
|
2014-05-11 00:32:13 +04:00
|
|
|
* @param string $gid
|
|
|
|
* @param string $search
|
|
|
|
* @param int $limit
|
|
|
|
* @param int $offset
|
|
|
|
* @return int
|
2014-04-04 20:56:14 +04:00
|
|
|
*/
|
|
|
|
public function countUsersInGroup($gid, $search = '', $limit = -1, $offset = 0) {
|
2020-04-10 15:19:56 +03:00
|
|
|
if (isset($this->groups[$gid])) {
|
|
|
|
if (empty($search)) {
|
2014-06-25 15:13:53 +04:00
|
|
|
return count($this->groups[$gid]);
|
|
|
|
}
|
|
|
|
$count = 0;
|
2020-04-10 15:19:56 +03:00
|
|
|
foreach ($this->groups[$gid] as $user) {
|
|
|
|
if (stripos($user, $search) !== false) {
|
2014-06-25 15:13:53 +04:00
|
|
|
$count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $count;
|
2014-04-04 20:56:14 +04:00
|
|
|
}
|
|
|
|
}
|
2012-04-13 03:58:53 +04:00
|
|
|
}
|