UPSTREAM BASELINE: nextcloud/spreed v22.0.12 (без изменений)
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
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.
This commit is contained in:
@@ -0,0 +1,111 @@
|
||||
<?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\Resources;
|
||||
|
||||
use OCA\Talk\Exceptions\ParticipantNotFoundException;
|
||||
use OCA\Talk\Exceptions\RoomNotFoundException;
|
||||
use OCA\Talk\Manager;
|
||||
use OCA\Talk\Participant;
|
||||
use OCA\Talk\Room;
|
||||
use OCA\Talk\Service\AvatarService;
|
||||
use OCA\Talk\Service\ParticipantService;
|
||||
use OCP\Collaboration\Resources\IProvider;
|
||||
use OCP\Collaboration\Resources\IResource;
|
||||
use OCP\Collaboration\Resources\ResourceException;
|
||||
use OCP\IURLGenerator;
|
||||
use OCP\IUser;
|
||||
use OCP\IUserSession;
|
||||
|
||||
class ConversationProvider implements IProvider {
|
||||
|
||||
public function __construct(
|
||||
protected Manager $manager,
|
||||
protected AvatarService $avatarService,
|
||||
protected ParticipantService $participantService,
|
||||
protected IUserSession $userSession,
|
||||
protected IURLGenerator $urlGenerator,
|
||||
) {
|
||||
}
|
||||
|
||||
#[\Override]
|
||||
public function getResourceRichObject(IResource $resource): array {
|
||||
try {
|
||||
$user = $this->userSession->getUser();
|
||||
$userId = $user instanceof IUser ? $user->getUID() : '';
|
||||
$room = $this->manager->getRoomByToken($resource->getId(), $userId);
|
||||
|
||||
$iconURL = $this->avatarService->getAvatarUrl($room);
|
||||
/**
|
||||
* Disabled for now, because it would show a square avatar
|
||||
* if ($room->getType() === Room::TYPE_ONE_TO_ONE) {
|
||||
* $iconURL = $this->urlGenerator->linkToRouteAbsolute('core.avatar.getAvatar', ['userId' => 'admin', 'size' => 32]);
|
||||
* }
|
||||
*/
|
||||
|
||||
return [
|
||||
'type' => 'room',
|
||||
'id' => $resource->getId(),
|
||||
'name' => $room->getDisplayName($userId),
|
||||
'call-type' => $this->getRoomType($room),
|
||||
'iconUrl' => $iconURL,
|
||||
'link' => $this->urlGenerator->linkToRouteAbsolute('spreed.Page.showCall', ['token' => $room->getToken()])
|
||||
];
|
||||
} catch (RoomNotFoundException $e) {
|
||||
throw new ResourceException('Conversation not found');
|
||||
}
|
||||
}
|
||||
|
||||
#[\Override]
|
||||
public function canAccessResource(IResource $resource, ?IUser $user = null): bool {
|
||||
$userId = $user instanceof IUser ? $user->getUID() : null;
|
||||
if ($userId === null) {
|
||||
throw new ResourceException('Guests are not supported at the moment');
|
||||
}
|
||||
|
||||
try {
|
||||
$room = $this->manager->getRoomForUserByToken(
|
||||
$resource->getId(),
|
||||
$userId
|
||||
);
|
||||
|
||||
// Logged in users need to have a regular participant,
|
||||
// before they can do anything with the room.
|
||||
$participant = $this->participantService->getParticipant($room, $userId, false);
|
||||
return $participant->getAttendee()->getParticipantType() !== Participant::USER_SELF_JOINED;
|
||||
} catch (RoomNotFoundException $e) {
|
||||
throw new ResourceException('Conversation not found');
|
||||
} catch (ParticipantNotFoundException $e) {
|
||||
throw new ResourceException('Participant not found');
|
||||
}
|
||||
}
|
||||
|
||||
#[\Override]
|
||||
public function getType(): string {
|
||||
return 'room';
|
||||
}
|
||||
|
||||
/**
|
||||
* @param Room $room
|
||||
* @return string
|
||||
* @throws \InvalidArgumentException
|
||||
*/
|
||||
protected function getRoomType(Room $room): string {
|
||||
switch ($room->getType()) {
|
||||
case Room::TYPE_ONE_TO_ONE:
|
||||
case Room::TYPE_ONE_TO_ONE_FORMER:
|
||||
return 'one2one';
|
||||
case Room::TYPE_GROUP:
|
||||
return 'group';
|
||||
case Room::TYPE_PUBLIC:
|
||||
return 'public';
|
||||
default:
|
||||
throw new \InvalidArgumentException('Unknown room type');
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
/**
|
||||
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/
|
||||
|
||||
namespace OCA\Talk\Collaboration\Resources;
|
||||
|
||||
use OCA\Talk\Events\ARoomModifiedEvent;
|
||||
use OCA\Talk\Events\AttendeesAddedEvent;
|
||||
use OCA\Talk\Events\AttendeesRemovedEvent;
|
||||
use OCA\Talk\Events\EmailInvitationSentEvent;
|
||||
use OCA\Talk\Events\RoomDeletedEvent;
|
||||
use OCA\Talk\Events\RoomModifiedEvent;
|
||||
use OCP\Collaboration\Resources\IManager;
|
||||
use OCP\Collaboration\Resources\ResourceException;
|
||||
use OCP\EventDispatcher\Event;
|
||||
use OCP\EventDispatcher\IEventListener;
|
||||
|
||||
/**
|
||||
* @template-implements IEventListener<Event>
|
||||
*/
|
||||
class Listener implements IEventListener {
|
||||
public function __construct(
|
||||
protected IManager $resourceManager,
|
||||
) {
|
||||
}
|
||||
|
||||
#[\Override]
|
||||
public function handle(Event $event): void {
|
||||
if ($event instanceof AttendeesAddedEvent
|
||||
|| $event instanceof AttendeesRemovedEvent
|
||||
|| $event instanceof RoomDeletedEvent
|
||||
|| $event instanceof EmailInvitationSentEvent
|
||||
|| ($event instanceof RoomModifiedEvent
|
||||
&& $event->getProperty() === ARoomModifiedEvent::PROPERTY_TYPE)) {
|
||||
try {
|
||||
$resource = $this->resourceManager->getResourceForUser('room', $event->getRoom()->getToken(), null);
|
||||
} catch (ResourceException) {
|
||||
return;
|
||||
}
|
||||
$this->resourceManager->invalidateAccessCacheForResource($resource);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user