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-10 17:56:18 +00:00
|
|
|
* Change Date: 2026-03-10
|
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;
|
|
|
|
|
2022-03-04 17:10:24 +00:00
|
|
|
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;
|
|
|
|
use wcf\system\message\embedded\object\MessageEmbeddedObjectManager;
|
|
|
|
use wcf\system\WCF;
|
2018-08-16 22:30:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* BroadcastCommand sends a broadcast into all channels.
|
|
|
|
*/
|
2022-03-04 18:16:30 +00:00
|
|
|
final class BroadcastCommand extends AbstractInputProcessedCommand implements ICommand
|
2022-03-04 17:10:24 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public function getJavaScriptModuleName()
|
|
|
|
{
|
|
|
|
return 'Bastelstu.be/Chat/Command/Broadcast';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public function isAvailable(Room $room, ?UserProfile $user = null)
|
|
|
|
{
|
|
|
|
if ($user === null) {
|
|
|
|
$user = new UserProfile(WCF::getUser());
|
|
|
|
}
|
2018-08-16 22:30:59 +00:00
|
|
|
|
2022-03-04 17:10:24 +00:00
|
|
|
return $user->getPermission('mod.chat.canBroadcast');
|
|
|
|
}
|
2018-08-16 22:30:59 +00:00
|
|
|
|
2022-03-04 17:10:24 +00:00
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public function validate($parameters, Room $room, ?UserProfile $user = null)
|
|
|
|
{
|
|
|
|
if ($user === null) {
|
|
|
|
$user = new UserProfile(WCF::getUser());
|
|
|
|
}
|
2018-08-16 22:30:59 +00:00
|
|
|
|
2022-03-04 17:10:24 +00:00
|
|
|
if (!$user->getPermission('mod.chat.canBroadcast')) {
|
|
|
|
throw new PermissionDeniedException();
|
|
|
|
}
|
2018-08-16 22:30:59 +00:00
|
|
|
|
2022-03-04 17:10:24 +00:00
|
|
|
$this->setText($this->assertParameter($parameters, 'text'));
|
|
|
|
$this->validateText();
|
|
|
|
}
|
2018-08-16 22:30:59 +00:00
|
|
|
|
2022-03-04 17:10:24 +00:00
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public function execute($parameters, Room $room, ?UserProfile $user = null)
|
|
|
|
{
|
|
|
|
if ($user === null) {
|
|
|
|
$user = new UserProfile(WCF::getUser());
|
|
|
|
}
|
2018-08-16 22:30:59 +00:00
|
|
|
|
2022-03-04 17:10:24 +00:00
|
|
|
$objectTypeID = $this->getMessageObjectTypeID('be.bastelstu.chat.messageType.broadcast');
|
|
|
|
$this->setText($this->assertParameter($parameters, 'text'));
|
2018-08-16 22:30:59 +00:00
|
|
|
|
2022-03-04 17:10:24 +00:00
|
|
|
WCF::getDB()->beginTransaction();
|
|
|
|
$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,
|
|
|
|
]
|
|
|
|
)
|
|
|
|
)->executeAction()['returnValues'];
|
2018-08-16 22:30:59 +00:00
|
|
|
|
2022-03-04 17:10:24 +00:00
|
|
|
$this->processor->setObjectID($message->messageID);
|
|
|
|
if (MessageEmbeddedObjectManager::getInstance()->registerObjects($this->processor)) {
|
|
|
|
(new MessageEditor($message))->update([
|
|
|
|
'hasEmbeddedObjects' => 1,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
WCF::getDB()->commitTransaction();
|
|
|
|
}
|
2018-08-16 22:30:59 +00:00
|
|
|
}
|