nextcloud/lib/private/group/dummy.php

213 lines
5.1 KiB
PHP
Raw Normal View History

2012-04-13 03:58:53 +04:00
<?php
/**
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>
* @author Robin McCorkell <rmccorkell@karoshi.org.uk>
* @author Scrutinizer Auto-Fixer <auto-fixer@scrutinizer-ci.com>
* @author Thomas Müller <thomas.mueller@tmit.eu>
*
* @copyright Copyright (c) 2015, ownCloud, Inc.
* @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-04-13 03:58:53 +04:00
/**
* dummy group backend, does not keep state, only for testing use
2012-04-13 03:58:53 +04:00
*/
class OC_Group_Dummy extends OC_Group_Backend {
private $groups=array();
/**
* Try to create a new group
* @param string $gid The name of the group to create
* @return bool
2012-04-13 03:58:53 +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) {
if(!isset($this->groups[$gid])) {
2012-04-13 03:58:53 +04:00
$this->groups[$gid]=array();
return true;
}else{
return false;
}
}
/**
* delete a group
* @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) {
if(isset($this->groups[$gid])) {
2012-04-13 03:58:53 +04:00
unset($this->groups[$gid]);
return true;
}else{
return false;
}
}
/**
* is user in group?
* @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) {
if(isset($this->groups[$gid])) {
2012-11-02 22:53:02 +04:00
return (array_search($uid, $this->groups[$gid])!==false);
2012-04-13 03:58:53 +04:00
}else{
return false;
}
}
/**
* Add a user to a group
* @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) {
if(isset($this->groups[$gid])) {
2012-11-02 22:53:02 +04:00
if(array_search($uid, $this->groups[$gid])===false) {
2012-04-13 03:58:53 +04:00
$this->groups[$gid][]=$uid;
return true;
}else{
return false;
}
}else{
return false;
}
}
/**
* Removes a user from a group
* @param string $uid Name of the user to remove from group
* @param string $gid Name of the group from which remove the user
* @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) {
2012-09-07 17:22:01 +04:00
if(isset($this->groups[$gid])) {
2012-11-02 22:53:02 +04:00
if(($index=array_search($uid, $this->groups[$gid]))!==false) {
2012-04-13 03:58:53 +04:00
unset($this->groups[$gid][$index]);
}else{
return false;
}
}else{
return false;
}
}
/**
* Get all groups a user belongs to
* @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) {
2012-04-13 03:58:53 +04:00
$groups=array();
2012-07-20 20:56:18 +04:00
$allGroups=array_keys($this->groups);
2012-09-07 17:22:01 +04:00
foreach($allGroups as $group) {
2012-11-02 22:53:02 +04:00
if($this->inGroup($uid, $group)) {
2012-04-13 03:58:53 +04:00
$groups[]=$group;
}
}
return $groups;
}
/**
* Get a list of all groups
* @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
*/
public function getGroups($search = '', $limit = -1, $offset = 0) {
if(empty($search)) {
return array_keys($this->groups);
}
$result = array();
foreach(array_keys($this->groups) as $group) {
if(stripos($group, $search) !== false) {
$result[] = $group;
}
}
return $result;
2012-04-13 03:58:53 +04:00
}
/**
* Get a list of all users in a group
* @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
*/
public function usersInGroup($gid, $search = '', $limit = -1, $offset = 0) {
2012-09-07 17:22:01 +04:00
if(isset($this->groups[$gid])) {
if(empty($search)) {
return $this->groups[$gid];
}
$result = array();
foreach($this->groups[$gid] as $user) {
if(stripos($user, $search) !== false) {
$result[] = $user;
}
}
return $result;
2012-04-13 03:58:53 +04:00
}else{
return array();
}
}
/**
* get the number of all users in a group
* @param string $gid
* @param string $search
* @param int $limit
* @param int $offset
* @return int
*/
public function countUsersInGroup($gid, $search = '', $limit = -1, $offset = 0) {
if(isset($this->groups[$gid])) {
if(empty($search)) {
return count($this->groups[$gid]);
}
$count = 0;
foreach($this->groups[$gid] as $user) {
if(stripos($user, $search) !== false) {
$count++;
}
}
return $count;
}
}
2012-04-13 03:58:53 +04:00
}