Files
f7_talk/lib/Model/ThreadAttendee.php
T
glb_adm 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
UPSTREAM BASELINE: nextcloud/spreed v22.0.12 (без изменений)
Источник: https://github.com/nextcloud/spreed/archive/refs/tags/v22.0.12.tar.gz
С этого коммита ветка официального Nextcloud Talk отрезана (решение владельца 2026-07-06).
Все дальнейшие изменения — только наши; версии релизов: 22.0.12-f7.N.
2026-07-06 14:07:50 +00:00

81 lines
2.5 KiB
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Talk\Model;
use OCA\Talk\Participant;
use OCA\Talk\ResponseDefinitions;
use OCP\AppFramework\Db\Entity;
use OCP\DB\Types;
/**
* @method void setRoomId(int $roomId)
* @method int getRoomId()
* @method void setThreadId(int $threadId)
* @method int getThreadId()
* @method void setAttendeeId(int $attendeeId)
* @method int getAttendeeId()
* @method void setActorType(string $actorType)
* @method string getActorType()
* @method void setActorId(string $actorId)
* @method string getActorId()
* @method void setNotificationLevel(int $notificationLevel)
* @method int getNotificationLevel()
*
* @psalm-import-type TalkThreadAttendee from ResponseDefinitions
*/
class ThreadAttendee extends Entity implements \JsonSerializable {
protected int $roomId = 0;
protected int $threadId = 0;
protected int $attendeeId = 0;
protected string $actorType = '';
protected string $actorId = '';
protected int $notificationLevel = 0;
public function __construct() {
$this->addType('roomId', Types::BIGINT);
$this->addType('threadId', Types::BIGINT);
$this->addType('attendeeId', Types::BIGINT);
$this->addType('actorType', Types::STRING);
$this->addType('actorId', Types::STRING);
$this->addType('notificationLevel', Types::INTEGER);
}
public static function createFromRow(array $row): ThreadAttendee {
$attendee = new ThreadAttendee();
$attendee->setRoomId((int)$row['room_id']);
$attendee->setThreadId((int)$row['thread_id']);
$attendee->setAttendeeId((int)$row['attendee_id']);
$attendee->setNotificationLevel((int)$row['notification_level']);
$attendee->setActorType($row['actor_type']);
$attendee->setActorId($row['actor_id']);
return $attendee;
}
public static function createFromParticipant(int $threadId, Participant $participant): ThreadAttendee {
$attendee = new ThreadAttendee();
$attendee->setRoomId($participant->getRoom()->getId());
$attendee->setThreadId($threadId);
$attendee->setAttendeeId($participant->getAttendee()->getId());
$attendee->setNotificationLevel(Participant::NOTIFY_DEFAULT);
$attendee->setActorType($participant->getAttendee()->getActorType());
$attendee->setActorId($participant->getAttendee()->getActorId());
return $attendee;
}
/**
* @return TalkThreadAttendee
*/
#[\Override]
public function jsonSerialize(): array {
return [
'notificationLevel' => min(3, max(0, $this->getNotificationLevel())),
];
}
}