2012-04-13 03:58:53 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Frank Karlitschek
|
2012-05-26 21:14:24 +04:00
|
|
|
* @copyright 2012 Frank Karlitschek frank@owncloud.org
|
2012-04-13 03:58:53 +04:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This library 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 along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* abstract reference class for group management
|
|
|
|
* this class should only be used as a reference for method signatures and their descriptions
|
|
|
|
*/
|
|
|
|
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
|
|
|
}
|