Tims-Chat/files/lib/data/message/Message.class.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

68 lines
1.7 KiB
PHP
Raw Normal View History

2018-08-16 22:30:59 +00:00
<?php
/*
2021-02-04 22:04:35 +00:00
* Copyright (c) 2010-2021 Tim Düsterhus.
2018-08-16 22:30:59 +00:00
*
* Use of this software is governed by the Business Source License
* included in the LICENSE file.
*
2021-02-04 22:04:35 +00:00
* Change Date: 2025-02-04
2018-08-16 22:30:59 +00:00
*
* On the date above, in accordance with the Business Source
* License, use of this software will be governed by version 2
* or later of the General Public License.
*/
namespace chat\data\message;
use \chat\data\room\Room;
use \wcf\data\object\type\ObjectType;
use \wcf\data\object\type\ObjectTypeCache;
2018-08-16 22:30:59 +00:00
/**
* Represents a chat message.
*
* @property-read integer $messageID
* @property-read integer $time
* @property-read integer $roomID
* @property-read integer $userID
* @property-read string $username
* @property-read integer $objectTypeID
* @property-read mixed $payload
* @property-read integer $hasEmbeddedObjects
* @property-read integer $isDeleted
2018-08-16 22:30:59 +00:00
*/
class Message extends \wcf\data\DatabaseObject {
/**
* @inheritDoc
*/
protected function handleData($data) {
parent::handleData($data);
$this->data['payload'] = @unserialize($this->data['payload']);
if (!is_array($this->data['payload'])) {
$this->data['payload'] = [ ];
}
}
/**
* Returns whether this message already is inside the log.
*/
public function isInLog(): bool {
2018-08-16 22:30:59 +00:00
return $this->time < (TIME_NOW - CHAT_ARCHIVE_AFTER);
}
/**
* Returns the message type object of this message.
*/
public function getMessageType(): ObjectType {
return ObjectTypeCache::getInstance()->getObjectType($this->objectTypeID);
2018-08-16 22:30:59 +00:00
}
/**
* Returns the chat room that contains this message.
*/
public function getRoom(): Room {
2018-08-16 22:30:59 +00:00
return \chat\data\room\RoomCache::getInstance()->getRoom($this->roomID);
}
}