You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
2.5 KiB
80 lines
2.5 KiB
<?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())),
|
|
];
|
|
}
|
|
}
|