126 lines
3.2 KiB
PHP
126 lines
3.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
/**
|
|
* Nextcloud - Related Resources
|
|
*
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
* later. See the COPYING file.
|
|
*
|
|
* @author Maxence Lange <maxence@artificial-owl.com>
|
|
* @copyright 2022
|
|
* @license GNU AGPL version 3 or any later version
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* 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
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
|
|
namespace OCA\RelatedResources\Db;
|
|
|
|
use OCA\RelatedResources\Exceptions\TalkDataNotFoundException;
|
|
use OCA\RelatedResources\Model\TalkActor;
|
|
use OCA\RelatedResources\Model\TalkRoom;
|
|
|
|
class TalkRoomRequest extends TalkRoomRequestBuilder {
|
|
/**
|
|
* @param string $token
|
|
*
|
|
* @return TalkRoom
|
|
* @throws TalkDataNotFoundException
|
|
*/
|
|
public function getRoomByToken(string $token): TalkRoom {
|
|
$qb = $this->getTalkRoomSelectSql();
|
|
$qb->limit('token', $token);
|
|
|
|
return $this->getRoomFromRequest($qb);
|
|
}
|
|
|
|
|
|
/**
|
|
* @param string $token
|
|
*
|
|
* @return TalkActor[]
|
|
*/
|
|
public function getActorsByToken(string $token): array {
|
|
$qb = $this->getActorSelectSql();
|
|
$qb->innerJoin(
|
|
$qb->getDefaultSelectAlias(), self::TABLE_TALK_ROOM, 'tr',
|
|
$qb->expr()->eq($qb->getDefaultSelectAlias() . '.room_id', 'tr.id')
|
|
);
|
|
|
|
$qb->limit('token', $token, 'tr');
|
|
|
|
return $this->getActorsFromRequest($qb);
|
|
}
|
|
|
|
|
|
/**
|
|
* @param string $singleId
|
|
*
|
|
* @return TalkRoom[]
|
|
*/
|
|
public function getRoomsAvailableToCircle(string $singleId): array {
|
|
$qb = $this->getTalkRoomSelectSql();
|
|
$qb->innerJoin(
|
|
$qb->getDefaultSelectAlias(), self::TABLE_TALK_ATTENDEE, 'ta',
|
|
$qb->expr()->eq($qb->getDefaultSelectAlias() . '.id', 'ta.room_id')
|
|
);
|
|
|
|
$qb->limit('actor_type', 'circles', 'ta');
|
|
$qb->limit('actor_id', $singleId, 'ta');
|
|
|
|
return $this->getRoomsFromRequest($qb);
|
|
}
|
|
|
|
|
|
/**
|
|
* @param string $groupName
|
|
*
|
|
* @return TalkRoom[]
|
|
*/
|
|
public function getRoomsAvailableToGroup(string $groupName): array {
|
|
$qb = $this->getTalkRoomSelectSql();
|
|
$qb->innerJoin(
|
|
$qb->getDefaultSelectAlias(), self::TABLE_TALK_ATTENDEE, 'ta',
|
|
$qb->expr()->eq($qb->getDefaultSelectAlias() . '.id', 'ta.room_id')
|
|
);
|
|
|
|
$qb->limit('actor_type', 'groups', 'ta');
|
|
$qb->limit('actor_id', $groupName, 'ta');
|
|
|
|
return $this->getRoomsFromRequest($qb);
|
|
}
|
|
|
|
/**
|
|
* @param string $userName
|
|
*
|
|
* @return TalkRoom[]
|
|
*/
|
|
public function getRoomsAvailableToUser(string $userName): array {
|
|
$qb = $this->getTalkRoomSelectSql();
|
|
$qb->innerJoin(
|
|
$qb->getDefaultSelectAlias(), self::TABLE_TALK_ATTENDEE, 'ta',
|
|
$qb->expr()->eq($qb->getDefaultSelectAlias() . '.id', 'ta.room_id')
|
|
);
|
|
|
|
$qb->limit('actor_type', 'users', 'ta');
|
|
$qb->limit('actor_id', $userName, 'ta');
|
|
|
|
return $this->getRoomsFromRequest($qb);
|
|
}
|
|
}
|