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

Источник: 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:
2026-07-06 14:07:50 +00:00
commit 01acfa3b40
1716 changed files with 613013 additions and 0 deletions
+68
View File
@@ -0,0 +1,68 @@
<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Talk\Command\User;
use OC\Core\Command\Base;
use OCA\Talk\Manager;
use OCP\IUserManager;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
class Remove extends Base {
public function __construct(
private IUserManager $userManager,
private Manager $manager,
) {
parent::__construct();
}
#[\Override]
protected function configure(): void {
$this
->setName('talk:user:remove')
->setDescription('Remove a user from all their rooms')
->addOption(
'user',
null,
InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY,
'Remove the given users from all rooms'
)
->addOption(
'private-only',
null,
InputOption::VALUE_NONE,
'Only remove the user from private rooms, retaining membership in public and open conversations as well as one-to-ones'
)
;
}
protected function execute(InputInterface $input, OutputInterface $output): int {
$userIds = $input->getOption('user');
$privateOnly = $input->getOption('private-only');
$users = [];
foreach ($userIds as $userId) {
$user = $this->userManager->get($userId);
if (!$user) {
$output->writeln('<error>' . sprintf("User '%s' not found.", $userId) . '</error>');
return 1;
}
$users[] = $user;
}
foreach ($users as $user) {
$this->manager->removeUserFromAllRooms($user, $privateOnly);
}
$output->writeln('<info>Users successfully removed from all rooms.</info>');
return 0;
}
}