UPSTREAM BASELINE: nextcloud/spreed v22.0.12 (без изменений)
Type checking / changes (push) Has been cancelled
Type checking / test (push) Has been cancelled
Type checking / typescript-summary (push) Has been cancelled
Node tests / changes (push) Has been cancelled
Node tests / test (push) Has been cancelled
Node tests / test-summary (push) Has been cancelled
Type checking / changes (push) Has been cancelled
Type checking / test (push) Has been cancelled
Type checking / typescript-summary (push) Has been cancelled
Node tests / changes (push) Has been cancelled
Node tests / test (push) Has been cancelled
Node tests / test-summary (push) Has been cancelled
Источник: https://github.com/nextcloud/spreed/archive/refs/tags/v22.0.12.tar.gz С этого коммита ветка официального Nextcloud Talk отрезана (решение владельца 2026-07-06). Все дальнейшие изменения — только наши; версии релизов: 22.0.12-f7.N.
This commit is contained in:
@@ -0,0 +1,83 @@
|
||||
<?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 InvalidArgumentException;
|
||||
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 Promote extends Base {
|
||||
use TRoomCommand;
|
||||
|
||||
#[\Override]
|
||||
protected function configure(): void {
|
||||
$this
|
||||
->setName('talk:room:promote')
|
||||
->setDescription('Promotes participants of a room to moderators')
|
||||
->addArgument(
|
||||
'token',
|
||||
InputArgument::REQUIRED,
|
||||
'Token of the room in which users should be promoted'
|
||||
)->addArgument(
|
||||
'participant',
|
||||
InputArgument::REQUIRED | InputArgument::IS_ARRAY,
|
||||
'Promotes the given participants of the room to moderators'
|
||||
);
|
||||
}
|
||||
|
||||
protected function execute(InputInterface $input, OutputInterface $output): int {
|
||||
$token = $input->getArgument('token');
|
||||
$users = $input->getArgument('participant');
|
||||
|
||||
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_ONE_TO_ONE, Room::TYPE_ONE_TO_ONE_FORMER], true)) {
|
||||
$output->writeln('<error>Room is a private (1 to 1) conversation.</error>');
|
||||
return 1;
|
||||
}
|
||||
|
||||
try {
|
||||
$this->addRoomModerators($room, $users);
|
||||
} catch (InvalidArgumentException $e) {
|
||||
$output->writeln(sprintf('<error>%s</error>', $e->getMessage()));
|
||||
return 1;
|
||||
}
|
||||
|
||||
$output->writeln('<info>Participants successfully promoted to moderators.</info>');
|
||||
return 0;
|
||||
}
|
||||
|
||||
#[\Override]
|
||||
public function completeArgumentValues($argumentName, CompletionContext $context) {
|
||||
switch ($argumentName) {
|
||||
case 'token':
|
||||
return $this->completeTokenValues($context);
|
||||
|
||||
case 'participant':
|
||||
return $this->completeParticipantValues($context);
|
||||
}
|
||||
|
||||
return parent::completeArgumentValues($argumentName, $context);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user