spreed/lib/Command/Room/Delete.php
Joas Schilling 1ccbf67da2
chore: Run SPDX convertor
Signed-off-by: Joas Schilling <coding@schilljs.com>
2024-04-26 13:02:15 +02:00

67 lines
1.7 KiB
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Talk\Command\Room;
use OC\Core\Command\Base;
use OCA\Talk\Exceptions\RoomNotFoundException;
use OCA\Talk\Room;
use Stecman\Component\Symfony\Console\BashCompletion\CompletionContext;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class Delete extends Base {
use TRoomCommand;
protected function configure(): void {
$this
->setName('talk:room:delete')
->setDescription('Deletes a room')
->addArgument(
'token',
InputArgument::REQUIRED,
'Token of the room to delete'
);
}
protected function execute(InputInterface $input, OutputInterface $output): int {
$token = $input->getArgument('token');
try {
$room = $this->manager->getRoomByToken($token);
} catch (RoomNotFoundException $e) {
$output->writeln('<error>Room not found.</error>');
return 1;
}
if ($room->isFederatedConversation()) {
$output->writeln('<error>Room is a federated conversation.</error>');
return 1;
}
if (!in_array($room->getType(), [Room::TYPE_GROUP, Room::TYPE_PUBLIC], true)) {
$output->writeln('<error>Room is no group call.</error>');
return 1;
}
$this->roomService->deleteRoom($room);
$output->writeln('<info>Room successfully deleted.</info>');
return 0;
}
public function completeArgumentValues($argumentName, CompletionContext $context) {
switch ($argumentName) {
case 'token':
return $this->completeTokenValues($context);
}
return parent::completeArgumentValues($argumentName, $context);
}
}