2018-08-16 22:30:59 +00:00
|
|
|
<?php
|
|
|
|
/*
|
2020-11-01 12:24:18 +00:00
|
|
|
* Copyright (c) 2010-2020 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.
|
|
|
|
*
|
2020-11-19 23:08:57 +00:00
|
|
|
* Change Date: 2024-11-20
|
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\system\command;
|
|
|
|
|
|
|
|
use \chat\data\message\MessageAction;
|
|
|
|
use \chat\data\message\MessageEditor;
|
|
|
|
use \chat\data\room\Room;
|
|
|
|
use \wcf\data\user\UserProfile;
|
|
|
|
use \wcf\system\exception\PermissionDeniedException;
|
2020-11-01 12:24:18 +00:00
|
|
|
use \wcf\system\WCF;
|
2018-08-16 22:30:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The plain command creates a normal chat message
|
|
|
|
*/
|
|
|
|
class PlainCommand extends AbstractInputProcessedCommand implements ICommand {
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public function allowWithoutTrigger() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public function getJavaScriptModuleName() {
|
|
|
|
return 'Bastelstu.be/Chat/Command/Plain';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public function validate($parameters, Room $room, UserProfile $user = null) {
|
|
|
|
if ($user === null) $user = new UserProfile(\wcf\system\WCF::getUser());
|
|
|
|
|
|
|
|
if (!$room->canWritePublicly($user)) throw new PermissionDeniedException();
|
|
|
|
|
|
|
|
$this->setText($this->assertParameter($parameters, 'text'));
|
|
|
|
$this->validateText();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public function execute($parameters, Room $room, UserProfile $user = null) {
|
|
|
|
if ($user === null) $user = new UserProfile(\wcf\system\WCF::getUser());
|
|
|
|
|
|
|
|
$objectTypeID = $this->getMessageObjectTypeID('be.bastelstu.chat.messageType.plain');
|
|
|
|
$this->setText($this->assertParameter($parameters, 'text'));
|
2020-11-01 12:24:18 +00:00
|
|
|
|
|
|
|
WCF::getDB()->beginTransaction();
|
2018-08-16 22:30:59 +00:00
|
|
|
$message = (new MessageAction([ ], 'create', [ 'data' => [ 'roomID' => $room->roomID
|
|
|
|
, 'userID' => $user->userID
|
|
|
|
, 'username' => $user->username
|
|
|
|
, 'time' => TIME_NOW
|
|
|
|
, 'objectTypeID' => $objectTypeID
|
|
|
|
, 'payload' => serialize([ 'message' => $this->processor->getHtml() ])
|
|
|
|
]
|
|
|
|
, 'updateTimestamp' => true
|
|
|
|
, 'grantPoints' => true
|
|
|
|
]
|
|
|
|
)
|
|
|
|
)->executeAction()['returnValues'];
|
|
|
|
|
|
|
|
$this->processor->setObjectID($message->messageID);
|
|
|
|
if (\wcf\system\message\embedded\object\MessageEmbeddedObjectManager::getInstance()->registerObjects($this->processor)) {
|
|
|
|
(new MessageEditor($message))->update([
|
|
|
|
'hasEmbeddedObjects' => 1
|
|
|
|
]);
|
|
|
|
}
|
2020-11-01 12:24:18 +00:00
|
|
|
WCF::getDB()->commitTransaction();
|
2018-08-16 22:30:59 +00:00
|
|
|
}
|
|
|
|
}
|