123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249 |
- <?php
- /**
- * Copyright (c) 2013 Robin Appelman <icewind@owncloud.com>
- * This file is licensed under the Affero General Public License version 3 or
- * later.
- * See the COPYING-README file.
- */
- namespace OC\Group;
- class Group {
- /**
- * @var string $id
- */
- private $gid;
- /**
- * @var \OC\User\User[] $users
- */
- private $users;
- /**
- * @var \OC_Group_Backend[] | \OC_Group_Database[] $backend
- */
- private $backends;
- /**
- * @var \OC\Hooks\PublicEmitter $emitter;
- */
- private $emitter;
- /**
- * @var \OC\User\Manager $userManager
- */
- private $userManager;
- /**
- * @param string $gid
- * @param \OC_Group_Backend[] $backends
- * @param \OC\User\Manager $userManager
- * @param \OC\Hooks\PublicEmitter $emitter
- */
- public function __construct($gid, $backends, $userManager, $emitter = null) {
- $this->gid = $gid;
- $this->backends = $backends;
- $this->userManager = $userManager;
- $this->emitter = $emitter;
- }
- public function getGID() {
- return $this->gid;
- }
- /**
- * get all users in the group
- *
- * @return \OC\User\User[]
- */
- public function getUsers() {
- if ($this->users) {
- return $this->users;
- }
- $userIds = array();
- foreach ($this->backends as $backend) {
- $diff = array_diff(
- $backend->usersInGroup($this->gid),
- $userIds
- );
- if ($diff) {
- $userIds = array_merge($userIds, $diff);
- }
- }
- $this->users = $this->getVerifiedUsers($userIds);
- return $this->users;
- }
- /**
- * check if a user is in the group
- *
- * @param \OC\User\User $user
- * @return bool
- */
- public function inGroup($user) {
- foreach ($this->backends as $backend) {
- if ($backend->inGroup($user->getUID(), $this->gid)) {
- return true;
- }
- }
- return false;
- }
- /**
- * add a user to the group
- *
- * @param \OC\User\User $user
- */
- public function addUser($user) {
- if ($this->inGroup($user)) {
- return;
- }
- if ($this->emitter) {
- $this->emitter->emit('\OC\Group', 'preAddUser', array($this, $user));
- }
- foreach ($this->backends as $backend) {
- if ($backend->implementsActions(OC_GROUP_BACKEND_ADD_TO_GROUP)) {
- $backend->addToGroup($user->getUID(), $this->gid);
- if ($this->users) {
- $this->users[$user->getUID()] = $user;
- }
- if ($this->emitter) {
- $this->emitter->emit('\OC\Group', 'postAddUser', array($this, $user));
- }
- return;
- }
- }
- }
- /**
- * remove a user from the group
- *
- * @param \OC\User\User $user
- */
- public function removeUser($user) {
- $result = false;
- if ($this->emitter) {
- $this->emitter->emit('\OC\Group', 'preRemoveUser', array($this, $user));
- }
- foreach ($this->backends as $backend) {
- if ($backend->implementsActions(OC_GROUP_BACKEND_REMOVE_FROM_GOUP) and $backend->inGroup($user->getUID(), $this->gid)) {
- $backend->removeFromGroup($user->getUID(), $this->gid);
- $result = true;
- }
- }
- if ($result) {
- if ($this->emitter) {
- $this->emitter->emit('\OC\Group', 'postRemoveUser', array($this, $user));
- }
- if ($this->users) {
- foreach ($this->users as $index => $groupUser) {
- if ($groupUser->getUID() === $user->getUID()) {
- unset($this->users[$index]);
- return;
- }
- }
- }
- }
- }
- /**
- * search for users in the group by userid
- *
- * @param string $search
- * @param int $limit
- * @param int $offset
- * @return \OC\User\User[]
- */
- public function searchUsers($search, $limit = null, $offset = null) {
- $users = array();
- foreach ($this->backends as $backend) {
- $userIds = $backend->usersInGroup($this->gid, $search, $limit, $offset);
- if (!is_null($limit)) {
- $limit -= count($userIds);
- }
- if (!is_null($offset)) {
- $offset -= count($userIds);
- }
- $users += $this->getVerifiedUsers($userIds);
- if (!is_null($limit) and $limit <= 0) {
- return array_values($users);
- }
- }
- return array_values($users);
- }
- /**
- * search for users in the group by displayname
- *
- * @param string $search
- * @param int $limit
- * @param int $offset
- * @return \OC\User\User[]
- */
- public function searchDisplayName($search, $limit = null, $offset = null) {
- foreach ($this->backends as $backend) {
- if ($backend->implementsActions(OC_GROUP_BACKEND_GET_DISPLAYNAME)) {
- $userIds = array_keys($backend->displayNamesInGroup($this->gid, $search, $limit, $offset));
- } else {
- $userIds = $backend->usersInGroup($this->gid, $search, $limit, $offset);
- }
- if (!is_null($limit)) {
- $limit -= count($userIds);
- }
- if (!is_null($offset)) {
- $offset -= count($userIds);
- }
- $users = $this->getVerifiedUsers($userIds);
- if (!is_null($limit) and $limit <= 0) {
- return array_values($users);
- }
- }
- return array_values($users);
- }
- /**
- * delete the group
- *
- * @return bool
- */
- public function delete() {
- $result = false;
- if ($this->emitter) {
- $this->emitter->emit('\OC\Group', 'preDelete', array($this));
- }
- foreach ($this->backends as $backend) {
- if ($backend->implementsActions(OC_GROUP_BACKEND_DELETE_GROUP)) {
- $result = true;
- $backend->deleteGroup($this->gid);
- }
- }
- if ($result and $this->emitter) {
- $this->emitter->emit('\OC\Group', 'postDelete', array($this));
- }
- return $result;
- }
- /**
- * @brief returns all the Users from an array that really exists
- * @param $userIds an array containing user IDs
- * @return an Array with the userId as Key and \OC\User\User as value
- */
- private function getVerifiedUsers($userIds) {
- if(!is_array($userIds)) {
- return array();
- }
- $users = array();
- foreach ($userIds as $userId) {
- $user = $this->userManager->get($userId);
- if(!is_null($user)) {
- $users[$userId] = $user;
- }
- }
- return $users;
- }
- }
|