2012-04-13 03:58:53 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* @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>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
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
|
|
|
|
|
|
|
/**
|
|
|
|
* abstract reference class for group management
|
|
|
|
* this class should only be used as a reference for method signatures and their descriptions
|
2012-04-13 03:58:53 +04:00
|
|
|
*/
|
|
|
|
abstract class OC_Group_Example {
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Try to create a new group
|
2014-05-12 00:51:30 +04:00
|
|
|
* @param string $gid The name of the group to create
|
|
|
|
* @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-07-20 20:56:18 +04:00
|
|
|
abstract public static function createGroup($gid);
|
2012-04-13 03:58:53 +04:00
|
|
|
|
|
|
|
/**
|
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-07-20 20:56:18 +04:00
|
|
|
abstract public static function deleteGroup($gid);
|
2012-04-13 03:58:53 +04:00
|
|
|
|
|
|
|
/**
|
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-07-20 20:56:18 +04:00
|
|
|
abstract public static function inGroup($uid, $gid);
|
2012-04-13 03:58:53 +04:00
|
|
|
|
|
|
|
/**
|
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-07-20 20:56:18 +04:00
|
|
|
abstract public static function addToGroup($uid, $gid);
|
2012-04-13 03:58:53 +04:00
|
|
|
|
|
|
|
/**
|
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
|
|
|
|
* @return bool
|
2012-04-13 03:58:53 +04:00
|
|
|
*
|
|
|
|
* removes the user from a group.
|
|
|
|
*/
|
2012-11-02 22:53:02 +04:00
|
|
|
abstract public static function removeFromGroup($uid, $gid);
|
2012-04-13 03:58:53 +04:00
|
|
|
|
|
|
|
/**
|
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-07-20 20:56:18 +04:00
|
|
|
abstract public static function getUserGroups($uid);
|
2012-04-13 03:58:53 +04:00
|
|
|
|
|
|
|
/**
|
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
|
|
|
abstract public static function getGroups($search = '', $limit = -1, $offset = 0);
|
2012-04-13 03:58:53 +04:00
|
|
|
|
2012-05-08 19:46:35 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Check if a group exists
|
2012-05-08 19:46:35 +04:00
|
|
|
* @param string $gid
|
|
|
|
* @return bool
|
|
|
|
*/
|
2012-07-20 21:03:33 +04:00
|
|
|
abstract public function groupExists($gid);
|
2012-05-08 19:46:35 +04:00
|
|
|
|
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
|
2014-05-11 21:13:51 +04:00
|
|
|
* @return array an array of user ids
|
2012-04-13 03:58:53 +04:00
|
|
|
*/
|
2012-08-12 00:21:09 +04:00
|
|
|
abstract public static function usersInGroup($gid, $search = '', $limit = -1, $offset = 0);
|
2012-04-13 03:58:53 +04:00
|
|
|
}
|