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.
115 lines
4.1 KiB
115 lines
4.1 KiB
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Talk\Model;
|
|
|
|
use OCA\Talk\ResponseDefinitions;
|
|
use OCP\AppFramework\Db\Entity;
|
|
use OCP\DB\Types;
|
|
|
|
/**
|
|
* @method void setLocalToken(string $localToken)
|
|
* @method string getLocalToken()
|
|
* @method void setRemoteServerUrl(string $remoteServerUrl)
|
|
* @method string getRemoteServerUrl()
|
|
* @method void setRemoteToken(string $remoteToken)
|
|
* @method string getRemoteToken()
|
|
* @method void setRemoteMessageId(int $remoteMessageId)
|
|
* @method int getRemoteMessageId()
|
|
* @method void setActorType(string $actorType)
|
|
* @method string getActorType()
|
|
* @method void setActorId(string $actorId)
|
|
* @method string getActorId()
|
|
* @method void setActorDisplayName(?string $actorDisplayName)
|
|
* @method string|null getActorDisplayName()
|
|
* @method void setMessageType(string $messageType)
|
|
* @method string getMessageType()
|
|
* @method void setSystemMessage(?string $systemMessage)
|
|
* @method string|null getSystemMessage()
|
|
* @method void setExpirationDatetime(?\DateTime $expirationDatetime)
|
|
* @method \DateTime|null getExpirationDatetime()
|
|
* @method void setMessage(?string $message)
|
|
* @method string|null getMessage()
|
|
* @method void setMessageParameters(?string $messageParameters)
|
|
* @method string|null getMessageParameters()
|
|
* @method void setCreationDatetime(?\DateTime $creationDatetime)
|
|
* @method \DateTime|null getCreationDatetime()
|
|
* @method void setMetaData(?string $metaData)
|
|
* @method string|null getMetaData()
|
|
*
|
|
* @psalm-import-type TalkChatProxyMessage from ResponseDefinitions
|
|
*/
|
|
class ProxyCacheMessage extends Entity implements \JsonSerializable {
|
|
public const METADATA_REPLY_TO_ACTOR_TYPE = 'replyToActorType';
|
|
public const METADATA_REPLY_TO_ACTOR_ID = 'replyToActorId';
|
|
public const METADATA_REPLY_TO_MESSAGE_ID = 'replyToMessageId';
|
|
|
|
|
|
protected string $localToken = '';
|
|
protected string $remoteServerUrl = '';
|
|
protected string $remoteToken = '';
|
|
protected int $remoteMessageId = 0;
|
|
protected string $actorType = '';
|
|
protected string $actorId = '';
|
|
protected ?string $actorDisplayName = null;
|
|
protected ?string $messageType = null;
|
|
protected ?string $systemMessage = null;
|
|
protected ?\DateTime $expirationDatetime = null;
|
|
protected ?string $message = null;
|
|
protected ?string $messageParameters = null;
|
|
protected ?\DateTime $creationDatetime = null;
|
|
protected ?string $metaData = null;
|
|
|
|
public function __construct() {
|
|
$this->addType('localToken', Types::STRING);
|
|
$this->addType('remoteServerUrl', Types::STRING);
|
|
$this->addType('remoteToken', Types::STRING);
|
|
$this->addType('remoteMessageId', Types::BIGINT);
|
|
$this->addType('actorType', Types::STRING);
|
|
$this->addType('actorId', Types::STRING);
|
|
$this->addType('actorDisplayName', Types::STRING);
|
|
$this->addType('messageType', Types::STRING);
|
|
$this->addType('systemMessage', Types::STRING);
|
|
$this->addType('expirationDatetime', Types::DATETIME);
|
|
$this->addType('message', Types::TEXT);
|
|
$this->addType('messageParameters', Types::TEXT);
|
|
$this->addType('creationDatetime', Types::DATETIME);
|
|
$this->addType('metaData', Types::TEXT);
|
|
}
|
|
|
|
public function getParsedMessageParameters(): array {
|
|
return json_decode($this->getMessageParameters() ?? '[]', true);
|
|
}
|
|
|
|
public function getParsedMetaData(): array {
|
|
return json_decode($this->getMetaData() ?? '[]', true);
|
|
}
|
|
|
|
/**
|
|
* @return TalkChatProxyMessage
|
|
*/
|
|
public function jsonSerialize(): array {
|
|
$expirationTimestamp = 0;
|
|
if ($this->getExpirationDatetime()) {
|
|
$expirationTimestamp = $this->getExpirationDatetime()->getTimestamp();
|
|
}
|
|
|
|
return [
|
|
'actorType' => $this->getActorType(),
|
|
'actorId' => $this->getActorId(),
|
|
'actorDisplayName' => $this->getActorDisplayName() ?? '',
|
|
'timestamp' => $this->getCreationDatetime()->getTimestamp(),
|
|
'expirationTimestamp' => $expirationTimestamp,
|
|
'messageType' => $this->getMessageType(),
|
|
'systemMessage' => $this->getSystemMessage() ?? '',
|
|
'message' => $this->getMessage() ?? '',
|
|
'messageParameters' => $this->getParsedMessageParameters(),
|
|
];
|
|
}
|
|
}
|