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.

76 lines
1.8 KiB
PHP
Raw Normal View History

2018-08-16 22:30:59 +00:00
<?php
2022-03-04 17:10:24 +00:00
2018-08-16 22:30:59 +00:00
/*
2022-03-04 17:10:24 +00:00
* Copyright (c) 2010-2022 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.
*
2022-03-04 17:10:24 +00:00
* Change Date: 2026-03-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;
2022-03-04 17:10:24 +00:00
use chat\data\room\Room;
use chat\data\room\RoomCache;
use wcf\data\DatabaseObject;
use wcf\data\object\type\ObjectType;
use wcf\data\object\type\ObjectTypeCache;
2018-08-16 22:30:59 +00:00
/**
* Represents a chat message.
*
2022-03-04 17:10:24 +00:00
* @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
*/
2022-03-04 17:10:24 +00:00
class Message extends DatabaseObject
{
/**
* @inheritDoc
*/
protected function handleData($data)
{
parent::handleData($data);
2018-08-16 22:30:59 +00:00
2022-03-04 17:10:24 +00:00
$this->data['payload'] = @\unserialize($this->data['payload']);
if (!\is_array($this->data['payload'])) {
$this->data['payload'] = [ ];
}
}
2018-08-16 22:30:59 +00:00
2022-03-04 17:10:24 +00:00
/**
* Returns whether this message already is inside the log.
*/
public function isInLog(): bool
{
return $this->time < (TIME_NOW - CHAT_ARCHIVE_AFTER);
}
2018-08-16 22:30:59 +00:00
2022-03-04 17:10:24 +00:00
/**
* 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
2022-03-04 17:10:24 +00:00
/**
* Returns the chat room that contains this message.
*/
public function getRoom(): Room
{
return RoomCache::getInstance()->getRoom($this->roomID);
}
2018-08-16 22:30:59 +00:00
}