spreed/lib/Chat/Parser/Command.php
Joas Schilling cc4e29258c
fix(chat): Remove commands
Signed-off-by: Joas Schilling <coding@schilljs.com>
2024-04-12 14:49:09 +02:00

79 lines
2.1 KiB
PHP

<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2018 Joas Schilling <coding@schilljs.com>
*
* @author Joas Schilling <coding@schilljs.com>
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
namespace OCA\Talk\Chat\Parser;
use OCA\Talk\Chat\ChatManager;
use OCA\Talk\Events\MessageParseEvent;
use OCA\Talk\Model\Attendee;
use OCP\EventDispatcher\Event;
use OCP\EventDispatcher\IEventListener;
/**
* @template-implements IEventListener<Event>
*/
class Command implements IEventListener {
public const RESPONSE_NONE = 0;
public const RESPONSE_USER = 1;
public const RESPONSE_ALL = 2;
public function handle(Event $event): void {
if (!$event instanceof MessageParseEvent) {
return;
}
$message = $event->getMessage();
if ($message->getMessageType() !== ChatManager::VERB_COMMAND) {
return;
}
$message->setVisibility(false);
$comment = $message->getComment();
$data = json_decode($comment->getMessage(), true);
if (!\is_array($data)) {
return;
}
$event->stopPropagation();
if ($data['visibility'] === self::RESPONSE_NONE) {
$message->setVisibility(false);
return;
}
$participant = $message->getParticipant();
if ($data['visibility'] !== self::RESPONSE_ALL &&
$participant !== null &&
($participant->getAttendee()->getActorType() !== Attendee::ACTOR_USERS
|| $data['user'] !== $participant->getAttendee()->getActorId())) {
$message->setVisibility(false);
return;
}
$message->setMessage($data['output'], []);
}
}