2012-07-09 23:51:19 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Georg Ehrke
|
2012-08-29 10:38:33 +04:00
|
|
|
* @copyright 2012 Georg Ehrke
|
2012-07-09 23:51:19 +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/>.
|
|
|
|
*
|
|
|
|
*/
|
2012-07-21 18:43:39 +04:00
|
|
|
OC_Hook::connect('OC_User', 'post_deleteUser', 'OC_SubAdmin', 'post_deleteUser');
|
|
|
|
OC_Hook::connect('OC_User', 'post_deleteGroup', 'OC_SubAdmin', 'post_deleteGroup');
|
2012-07-09 23:51:19 +04:00
|
|
|
/**
|
|
|
|
* This class provides all methods needed for managing groups.
|
|
|
|
*
|
|
|
|
* Hooks provided:
|
|
|
|
* post_createSubAdmin($gid)
|
|
|
|
* post_deleteSubAdmin($gid)
|
|
|
|
*/
|
|
|
|
class OC_SubAdmin{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief add a SubAdmin
|
|
|
|
* @param $uid uid of the SubAdmin
|
|
|
|
* @param $gid gid of the group
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function createSubAdmin($uid, $gid) {
|
2012-08-25 03:52:27 +04:00
|
|
|
$stmt = OC_DB::prepare('INSERT INTO `*PREFIX*group_admin` (`gid`,`uid`) VALUES(?,?)');
|
2012-07-09 23:51:19 +04:00
|
|
|
$result = $stmt->execute(array($gid, $uid));
|
|
|
|
OC_Hook::emit( "OC_SubAdmin", "post_createSubAdmin", array( "gid" => $gid ));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief delete a SubAdmin
|
|
|
|
* @param $uid uid of the SubAdmin
|
|
|
|
* @param $gid gid of the group
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function deleteSubAdmin($uid, $gid) {
|
2012-08-25 03:52:27 +04:00
|
|
|
$stmt = OC_DB::prepare('DELETE FROM `*PREFIX*group_admin` WHERE `gid` = ? AND `uid` = ?');
|
2012-07-09 23:51:19 +04:00
|
|
|
$result = $stmt->execute(array($gid, $uid));
|
|
|
|
OC_Hook::emit( "OC_SubAdmin", "post_deleteSubAdmin", array( "gid" => $gid ));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief get groups of a SubAdmin
|
|
|
|
* @param $uid uid of the SubAdmin
|
|
|
|
* @return array
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function getSubAdminsGroups($uid) {
|
2012-08-25 03:52:27 +04:00
|
|
|
$stmt = OC_DB::prepare('SELECT `gid` FROM `*PREFIX*group_admin` WHERE `uid` = ?');
|
2012-07-15 18:31:28 +04:00
|
|
|
$result = $stmt->execute(array($uid));
|
2012-07-09 23:51:19 +04:00
|
|
|
$gids = array();
|
2012-09-07 17:22:01 +04:00
|
|
|
while($row = $result->fetchRow()) {
|
2012-07-09 23:51:19 +04:00
|
|
|
$gids[] = $row['gid'];
|
|
|
|
}
|
|
|
|
return $gids;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief get SubAdmins of a group
|
|
|
|
* @param $gid gid of the group
|
|
|
|
* @return array
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function getGroupsSubAdmins($gid) {
|
2012-08-25 03:52:27 +04:00
|
|
|
$stmt = OC_DB::prepare('SELECT `uid` FROM `*PREFIX*group_admin` WHERE `gid` = ?');
|
2012-07-15 18:31:28 +04:00
|
|
|
$result = $stmt->execute(array($gid));
|
2012-07-09 23:51:19 +04:00
|
|
|
$uids = array();
|
2012-09-07 17:22:01 +04:00
|
|
|
while($row = $result->fetchRow()) {
|
2012-07-09 23:51:19 +04:00
|
|
|
$uids[] = $row['uid'];
|
|
|
|
}
|
|
|
|
return $uids;
|
|
|
|
}
|
2012-08-29 10:38:33 +04:00
|
|
|
|
2012-07-09 23:51:19 +04:00
|
|
|
/**
|
|
|
|
* @brief get all SubAdmins
|
|
|
|
* @return array
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function getAllSubAdmins() {
|
2012-08-25 03:52:27 +04:00
|
|
|
$stmt = OC_DB::prepare('SELECT * FROM `*PREFIX*group_admin`');
|
2012-07-15 18:31:28 +04:00
|
|
|
$result = $stmt->execute();
|
2012-07-09 23:51:19 +04:00
|
|
|
$subadmins = array();
|
2012-09-07 17:22:01 +04:00
|
|
|
while($row = $result->fetchRow()) {
|
2012-07-09 23:51:19 +04:00
|
|
|
$subadmins[] = $row;
|
|
|
|
}
|
|
|
|
return $subadmins;
|
|
|
|
}
|
2012-08-29 10:38:33 +04:00
|
|
|
|
2012-07-15 18:31:28 +04:00
|
|
|
/**
|
|
|
|
* @brief checks if a user is a SubAdmin of a group
|
2012-07-19 18:43:46 +04:00
|
|
|
* @param $uid uid of the subadmin
|
|
|
|
* @param $gid gid of the group
|
|
|
|
* @return bool
|
2012-07-15 18:31:28 +04:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function isSubAdminofGroup($uid, $gid) {
|
2012-08-25 03:52:27 +04:00
|
|
|
$stmt = OC_DB::prepare('SELECT COUNT(*) AS `count` FROM `*PREFIX*group_admin` WHERE `uid` = ? AND `gid` = ?');
|
2012-07-15 18:31:28 +04:00
|
|
|
$result = $stmt->execute(array($uid, $gid));
|
|
|
|
$result = $result->fetchRow();
|
2012-09-07 17:22:01 +04:00
|
|
|
if($result['count'] >= 1) {
|
2012-07-15 18:31:28 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2012-08-29 10:38:33 +04:00
|
|
|
|
2012-07-19 18:43:46 +04:00
|
|
|
/**
|
|
|
|
* @brief checks if a user is a SubAdmin
|
|
|
|
* @param $uid uid of the subadmin
|
|
|
|
* @return bool
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function isSubAdmin($uid) {
|
2013-01-14 22:45:17 +04:00
|
|
|
// Check if the user is already an admin
|
|
|
|
if(OC_Group::inGroup($uid, 'admin' )) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-08-25 03:52:27 +04:00
|
|
|
$stmt = OC_DB::prepare('SELECT COUNT(*) AS `count` FROM `*PREFIX*group_admin` WHERE `uid` = ?');
|
2012-07-15 18:31:28 +04:00
|
|
|
$result = $stmt->execute(array($uid));
|
|
|
|
$result = $result->fetchRow();
|
2012-09-07 17:22:01 +04:00
|
|
|
if($result['count'] > 0) {
|
2012-07-15 18:31:28 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2012-08-29 10:38:33 +04:00
|
|
|
|
2012-07-19 18:43:46 +04:00
|
|
|
/**
|
|
|
|
* @brief checks if a user is a accessible by a subadmin
|
|
|
|
* @param $subadmin uid of the subadmin
|
|
|
|
* @param $user uid of the user
|
|
|
|
* @return bool
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function isUserAccessible($subadmin, $user) {
|
|
|
|
if(!self::isSubAdmin($subadmin)) {
|
2012-07-19 18:30:58 +04:00
|
|
|
return false;
|
|
|
|
}
|
2013-01-14 22:45:17 +04:00
|
|
|
if(OC_User::isAdminUser($user)) {
|
2012-08-26 18:29:10 +04:00
|
|
|
return false;
|
|
|
|
}
|
2012-07-19 18:30:58 +04:00
|
|
|
$accessiblegroups = self::getSubAdminsGroups($subadmin);
|
2012-09-07 17:22:01 +04:00
|
|
|
foreach($accessiblegroups as $accessiblegroup) {
|
|
|
|
if(OC_Group::inGroup($user, $accessiblegroup)) {
|
2012-07-19 18:30:58 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2012-08-29 10:38:33 +04:00
|
|
|
|
2012-07-19 21:17:01 +04:00
|
|
|
/*
|
|
|
|
* @brief alias for self::isSubAdminofGroup()
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function isGroupAccessible($subadmin, $group) {
|
2012-07-19 21:17:01 +04:00
|
|
|
return self::isSubAdminofGroup($subadmin, $group);
|
|
|
|
}
|
2012-07-21 18:43:39 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief delete all SubAdmins by uid
|
2012-08-29 10:38:33 +04:00
|
|
|
* @param $parameters
|
2012-07-21 18:43:39 +04:00
|
|
|
* @return boolean
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function post_deleteUser($parameters) {
|
2012-08-25 03:52:27 +04:00
|
|
|
$stmt = OC_DB::prepare('DELETE FROM `*PREFIX*group_admin` WHERE `uid` = ?');
|
2012-07-21 18:43:39 +04:00
|
|
|
$result = $stmt->execute(array($parameters['uid']));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-09-30 01:08:20 +04:00
|
|
|
* @brief delete all SubAdmins by gid
|
2012-07-21 18:43:39 +04:00
|
|
|
* @param $parameters
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function post_deleteGroup($parameters) {
|
2012-08-25 03:52:27 +04:00
|
|
|
$stmt = OC_DB::prepare('DELETE FROM `*PREFIX*group_admin` WHERE `gid` = ?');
|
2012-07-21 18:43:39 +04:00
|
|
|
$result = $stmt->execute(array($parameters['gid']));
|
|
|
|
return true;
|
|
|
|
}
|
2012-07-09 23:51:19 +04:00
|
|
|
}
|