01acfa3b40
Type checking / changes (push) Has been cancelled
Type checking / test (push) Has been cancelled
Type checking / typescript-summary (push) Has been cancelled
Node tests / changes (push) Has been cancelled
Node tests / test (push) Has been cancelled
Node tests / test-summary (push) Has been cancelled
Источник: https://github.com/nextcloud/spreed/archive/refs/tags/v22.0.12.tar.gz С этого коммита ветка официального Nextcloud Talk отрезана (решение владельца 2026-07-06). Все дальнейшие изменения — только наши; версии релизов: 22.0.12-f7.N.
89 lines
2.2 KiB
PHP
89 lines
2.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
/**
|
|
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Talk\Collaboration\Collaborators;
|
|
|
|
use OCA\Talk\Manager;
|
|
use OCA\Talk\Model\Attendee;
|
|
use OCA\Talk\Room;
|
|
use OCA\Talk\Service\ParticipantService;
|
|
use OCP\Collaboration\Collaborators\ISearchPlugin;
|
|
use OCP\Collaboration\Collaborators\ISearchResult;
|
|
use OCP\Collaboration\Collaborators\SearchResultType;
|
|
use OCP\IUserSession;
|
|
use OCP\Share\IShare;
|
|
|
|
class RoomPlugin implements ISearchPlugin {
|
|
|
|
public function __construct(
|
|
protected Manager $manager,
|
|
protected ParticipantService $participantService,
|
|
protected IUserSession $userSession,
|
|
) {
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
#[\Override]
|
|
public function search($search, $limit, $offset, ISearchResult $searchResult): bool {
|
|
if (!is_string($search) || $search === '') {
|
|
return false;
|
|
}
|
|
$search = mb_strtolower($search);
|
|
|
|
$userId = $this->userSession->getUser()->getUID();
|
|
|
|
$result = ['wide' => [], 'exact' => []];
|
|
|
|
$rooms = $this->manager->getRoomsForUser($userId);
|
|
foreach ($rooms as $room) {
|
|
if ($room->getReadOnly() === Room::READ_ONLY) {
|
|
// Can not add new shares to read-only rooms
|
|
continue;
|
|
}
|
|
|
|
if ($room->isFederatedConversation()) {
|
|
continue;
|
|
}
|
|
|
|
$participant = $this->participantService->getParticipant($room, $userId, false);
|
|
if (!($participant->getPermissions() & Attendee::PERMISSIONS_CHAT)) {
|
|
// No chat permissions is like read-only
|
|
continue;
|
|
}
|
|
|
|
if (mb_stripos($room->getDisplayName($userId), $search) !== false) {
|
|
$item = $this->roomToSearchResultItem($room, $userId);
|
|
|
|
if (mb_strtolower($item['label']) === mb_strtolower($search)) {
|
|
$result['exact'][] = $item;
|
|
} else {
|
|
$result['wide'][] = $item;
|
|
}
|
|
}
|
|
}
|
|
|
|
$type = new SearchResultType('rooms');
|
|
$searchResult->addResultSet($type, $result['wide'], $result['exact']);
|
|
|
|
return false;
|
|
}
|
|
|
|
private function roomToSearchResultItem(Room $room, string $userId): array {
|
|
return
|
|
[
|
|
'label' => $room->getDisplayName($userId),
|
|
'value' => [
|
|
'shareType' => IShare::TYPE_ROOM,
|
|
'shareWith' => $room->getToken()
|
|
]
|
|
];
|
|
}
|
|
}
|