2011-04-15 19:14:02 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Frank Karlitschek
|
2012-05-26 21:14:24 +04:00
|
|
|
* @copyright 2012 Frank Karlitschek frank@owncloud.org
|
2011-04-15 19:14:02 +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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This class provides all methods needed for managing groups.
|
2011-04-18 13:39:29 +04:00
|
|
|
*
|
|
|
|
* Hooks provided:
|
|
|
|
* pre_createGroup(&run, gid)
|
|
|
|
* post_createGroup(gid)
|
|
|
|
* pre_deleteGroup(&run, gid)
|
|
|
|
* post_deleteGroup(gid)
|
|
|
|
* pre_addToGroup(&run, uid, gid)
|
|
|
|
* post_addToGroup(uid, gid)
|
|
|
|
* pre_removeFromGroup(&run, uid, gid)
|
|
|
|
* post_removeFromGroup(uid, gid)
|
2011-04-15 19:14:02 +04:00
|
|
|
*/
|
2011-07-29 23:36:03 +04:00
|
|
|
class OC_Group {
|
2012-04-13 03:58:53 +04:00
|
|
|
// The backend used for group management
|
|
|
|
private static $_usedBackends = array();
|
2011-04-15 19:14:02 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief set the group backend
|
|
|
|
* @param string $backend The backend to use for user managment
|
|
|
|
* @returns true/false
|
|
|
|
*/
|
2012-04-13 03:58:53 +04:00
|
|
|
public static function useBackend( $backend ){
|
|
|
|
if($backend instanceof OC_Group_Backend){
|
|
|
|
self::$_usedBackends[]=$backend;
|
2011-04-15 19:14:02 +04:00
|
|
|
}
|
2012-04-13 03:58:53 +04:00
|
|
|
}
|
2011-04-15 19:14:02 +04:00
|
|
|
|
2012-04-13 03:58:53 +04:00
|
|
|
/**
|
|
|
|
* remove all used backends
|
|
|
|
*/
|
|
|
|
public static function clearBackends(){
|
|
|
|
self::$_usedBackends=array();
|
2011-04-15 19:14:02 +04:00
|
|
|
}
|
|
|
|
|
2011-04-17 03:04:23 +04:00
|
|
|
/**
|
2011-04-18 12:00:45 +04:00
|
|
|
* @brief Try to create a new group
|
|
|
|
* @param $gid The name of the group to create
|
|
|
|
* @returns true/false
|
2011-04-17 03:04:23 +04:00
|
|
|
*
|
2011-04-18 12:00:45 +04:00
|
|
|
* Trys to create a new group. If the group name already exists, false will
|
2011-04-18 13:39:29 +04:00
|
|
|
* be returned. Basic checking of Group name
|
|
|
|
*
|
|
|
|
* Allowed characters in the username are: "a-z", "A-Z", "0-9" and "_.@-"
|
2011-04-17 03:04:23 +04:00
|
|
|
*/
|
2011-04-18 12:00:45 +04:00
|
|
|
public static function createGroup( $gid ){
|
2011-04-18 13:39:29 +04:00
|
|
|
// Check the name for bad characters
|
|
|
|
// Allowed are: "a-z", "A-Z", "0-9" and "_.@-"
|
|
|
|
if( preg_match( '/[^a-zA-Z0-9 _\.@\-]/', $gid )){
|
|
|
|
return false;
|
|
|
|
}
|
2011-04-18 13:48:52 +04:00
|
|
|
// No empty group names!
|
|
|
|
if( !$gid ){
|
|
|
|
return false;
|
|
|
|
}
|
2011-04-18 14:39:28 +04:00
|
|
|
// No duplicate group names
|
|
|
|
if( in_array( $gid, self::getGroups())){
|
|
|
|
return false;
|
|
|
|
}
|
2011-04-18 13:48:52 +04:00
|
|
|
|
2011-04-18 13:39:29 +04:00
|
|
|
$run = true;
|
2011-07-29 23:36:03 +04:00
|
|
|
OC_Hook::emit( "OC_Group", "pre_createGroup", array( "run" => &$run, "gid" => $gid ));
|
2011-04-18 13:39:29 +04:00
|
|
|
|
2012-04-13 03:58:53 +04:00
|
|
|
if($run){
|
2012-05-08 19:46:35 +04:00
|
|
|
//create the group in the first backend that supports creating groups
|
2012-04-13 03:58:53 +04:00
|
|
|
foreach(self::$_usedBackends as $backend){
|
|
|
|
if(!$backend->implementsActions(OC_GROUP_BACKEND_CREATE_GROUP))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
$backend->createGroup($gid);
|
|
|
|
OC_Hook::emit( "OC_User", "post_createGroup", array( "gid" => $gid ));
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}else{
|
2011-04-18 13:39:29 +04:00
|
|
|
return false;
|
|
|
|
}
|
2011-04-17 03:04:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-04-18 12:00:45 +04:00
|
|
|
* @brief delete a group
|
|
|
|
* @param $gid gid of the group to delete
|
|
|
|
* @returns true/false
|
2011-04-17 03:04:23 +04:00
|
|
|
*
|
2011-04-18 12:00:45 +04:00
|
|
|
* Deletes a group and removes it from the group_user-table
|
2011-04-17 03:04:23 +04:00
|
|
|
*/
|
2011-04-18 12:00:45 +04:00
|
|
|
public static function deleteGroup( $gid ){
|
2011-04-18 13:53:38 +04:00
|
|
|
// Prevent users from deleting group admin
|
|
|
|
if( $gid == "admin" ){
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-04-18 13:39:29 +04:00
|
|
|
$run = true;
|
2011-07-29 23:36:03 +04:00
|
|
|
OC_Hook::emit( "OC_Group", "pre_deleteGroup", array( "run" => &$run, "gid" => $gid ));
|
2011-04-18 13:39:29 +04:00
|
|
|
|
2012-04-13 03:58:53 +04:00
|
|
|
if($run){
|
|
|
|
//delete the group from all backends
|
|
|
|
foreach(self::$_usedBackends as $backend){
|
|
|
|
if(!$backend->implementsActions(OC_GROUP_BACKEND_DELETE_GROUP))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
$backend->deleteGroup($gid);
|
|
|
|
OC_Hook::emit( "OC_User", "post_deleteGroup", array( "gid" => $gid ));
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}else{
|
2011-04-18 13:39:29 +04:00
|
|
|
return false;
|
|
|
|
}
|
2011-04-17 03:04:23 +04:00
|
|
|
}
|
|
|
|
|
2011-04-15 19:14:02 +04:00
|
|
|
/**
|
2011-04-18 12:00:45 +04:00
|
|
|
* @brief is user in group?
|
|
|
|
* @param $uid uid of the user
|
|
|
|
* @param $gid gid of the group
|
|
|
|
* @returns true/false
|
2011-04-15 19:14:02 +04:00
|
|
|
*
|
2011-04-18 12:00:45 +04:00
|
|
|
* Checks whether the user is member of a group or not.
|
2011-04-15 19:14:02 +04:00
|
|
|
*/
|
2011-04-18 12:00:45 +04:00
|
|
|
public static function inGroup( $uid, $gid ){
|
2012-04-13 03:58:53 +04:00
|
|
|
foreach(self::$_usedBackends as $backend){
|
|
|
|
if($backend->inGroup($uid,$gid)){
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2011-04-15 19:14:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-04-18 12:00:45 +04:00
|
|
|
* @brief Add a user to a group
|
|
|
|
* @param $uid Name of the user to add to group
|
|
|
|
* @param $gid Name of the group in which add the user
|
|
|
|
* @returns true/false
|
2011-04-15 19:14:02 +04:00
|
|
|
*
|
2011-04-18 12:00:45 +04:00
|
|
|
* Adds a user to a group.
|
2011-04-15 19:14:02 +04:00
|
|
|
*/
|
2011-04-18 12:00:45 +04:00
|
|
|
public static function addToGroup( $uid, $gid ){
|
2011-04-18 14:39:28 +04:00
|
|
|
// Does the group exist?
|
2011-08-10 22:51:35 +04:00
|
|
|
if( !OC_Group::groupExists($gid)){
|
2011-04-18 14:39:28 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Go go go
|
2011-04-18 13:39:29 +04:00
|
|
|
$run = true;
|
2011-07-29 23:36:03 +04:00
|
|
|
OC_Hook::emit( "OC_Group", "pre_addToGroup", array( "run" => &$run, "uid" => $uid, "gid" => $gid ));
|
2011-04-18 13:39:29 +04:00
|
|
|
|
2012-04-13 03:58:53 +04:00
|
|
|
if($run){
|
|
|
|
$succes=false;
|
|
|
|
|
|
|
|
//add the user to the all backends that have the group
|
|
|
|
foreach(self::$_usedBackends as $backend){
|
|
|
|
if(!$backend->implementsActions(OC_GROUP_BACKEND_ADD_TO_GROUP))
|
|
|
|
continue;
|
|
|
|
|
2012-05-17 02:47:43 +04:00
|
|
|
if($backend->groupExists($gid)){
|
|
|
|
$succes|=$backend->addToGroup($uid, $gid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if($succes){
|
2012-04-13 03:58:53 +04:00
|
|
|
OC_Hook::emit( "OC_User", "post_addToGroup", array( "uid" => $uid, "gid" => $gid ));
|
|
|
|
}
|
|
|
|
return $succes;
|
|
|
|
}else{
|
2011-04-18 13:39:29 +04:00
|
|
|
return false;
|
|
|
|
}
|
2011-04-15 19:14:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-04-18 12:00:45 +04:00
|
|
|
* @brief Removes a user from a group
|
|
|
|
* @param $uid Name of the user to remove from group
|
|
|
|
* @param $gid Name of the group from which remove the user
|
|
|
|
* @returns true/false
|
2011-04-15 19:14:02 +04:00
|
|
|
*
|
2011-04-18 12:00:45 +04:00
|
|
|
* removes the user from a group.
|
2011-04-15 19:14:02 +04:00
|
|
|
*/
|
2011-04-18 12:00:45 +04:00
|
|
|
public static function removeFromGroup( $uid, $gid ){
|
2011-04-18 13:39:29 +04:00
|
|
|
$run = true;
|
2011-07-29 23:36:03 +04:00
|
|
|
OC_Hook::emit( "OC_Group", "pre_removeFromGroup", array( "run" => &$run, "uid" => $uid, "gid" => $gid ));
|
2011-04-18 13:39:29 +04:00
|
|
|
|
2012-04-13 03:58:53 +04:00
|
|
|
if($run){
|
|
|
|
//remove the user from the all backends that have the group
|
|
|
|
foreach(self::$_usedBackends as $backend){
|
|
|
|
if(!$backend->implementsActions(OC_GROUP_BACKEND_REMOVE_FROM_GOUP))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
$backend->removeFromGroup($uid, $gid);
|
|
|
|
OC_Hook::emit( "OC_User", "post_removeFromGroup", array( "uid" => $uid, "gid" => $gid ));
|
|
|
|
}
|
2011-04-18 13:39:29 +04:00
|
|
|
return true;
|
2012-04-13 03:58:53 +04:00
|
|
|
}else{
|
2011-04-18 13:39:29 +04:00
|
|
|
return false;
|
|
|
|
}
|
2011-04-15 19:14:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-04-18 12:00:45 +04:00
|
|
|
* @brief Get all groups a user belongs to
|
|
|
|
* @param $uid Name of the user
|
|
|
|
* @returns array with group names
|
2011-04-15 19:14:02 +04:00
|
|
|
*
|
2011-04-18 12:00:45 +04:00
|
|
|
* This function fetches all groups a user belongs to. It does not check
|
|
|
|
* if the user exists at all.
|
2011-04-15 19:14:02 +04:00
|
|
|
*/
|
2011-04-18 12:00:45 +04:00
|
|
|
public static function getUserGroups( $uid ){
|
2012-04-13 03:58:53 +04:00
|
|
|
$groups=array();
|
|
|
|
foreach(self::$_usedBackends as $backend){
|
|
|
|
$groups=array_merge($backend->getUserGroups($uid),$groups);
|
|
|
|
}
|
2012-06-01 16:18:14 +04:00
|
|
|
asort($groups);
|
2012-04-13 03:58:53 +04:00
|
|
|
return $groups;
|
2011-04-15 19:14:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-04-18 12:00:45 +04:00
|
|
|
* @brief get a list of all groups
|
|
|
|
* @returns array with group names
|
2011-04-15 19:14:02 +04:00
|
|
|
*
|
2011-04-18 12:00:45 +04:00
|
|
|
* Returns a list with all groups
|
2011-04-15 19:14:02 +04:00
|
|
|
*/
|
2011-04-18 12:00:45 +04:00
|
|
|
public static function getGroups(){
|
2012-04-13 03:58:53 +04:00
|
|
|
$groups=array();
|
|
|
|
foreach(self::$_usedBackends as $backend){
|
|
|
|
$groups=array_merge($backend->getGroups(),$groups);
|
|
|
|
}
|
2012-06-01 16:18:14 +04:00
|
|
|
asort($groups);
|
2012-04-13 03:58:53 +04:00
|
|
|
return $groups;
|
2011-04-15 19:14:02 +04:00
|
|
|
}
|
2011-08-10 22:51:35 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* check if a group exists
|
|
|
|
* @param string $gid
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public static function groupExists($gid){
|
2012-04-15 18:28:31 +04:00
|
|
|
foreach(self::$_usedBackends as $backend){
|
|
|
|
if ($backend->groupExists($gid)){
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2011-08-10 22:51:35 +04:00
|
|
|
}
|
2011-08-11 12:11:44 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief get a list of all users in a group
|
|
|
|
* @returns array with user ids
|
|
|
|
*/
|
|
|
|
public static function usersInGroup($gid){
|
2012-04-13 03:58:53 +04:00
|
|
|
$users=array();
|
|
|
|
foreach(self::$_usedBackends as $backend){
|
|
|
|
$users=array_merge($backend->usersInGroup($gid),$users);
|
|
|
|
}
|
|
|
|
return $users;
|
2011-08-11 12:11:44 +04:00
|
|
|
}
|
2011-04-15 19:14:02 +04:00
|
|
|
}
|