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
+98
View File
@@ -0,0 +1,98 @@
<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Talk\Command\Recording;
use OC\Core\Command\Base;
use OCA\Talk\Exceptions\RoomNotFoundException;
use OCA\Talk\Manager;
use OCA\Talk\Room;
use OCA\Talk\Service\ConsentService;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
class Consent extends Base {
public function __construct(
protected Manager $roomManager,
protected ConsentService $consentService,
) {
parent::__construct();
}
#[\Override]
protected function configure(): void {
parent::configure();
$this
->setName('talk:recording:consent')
->setDescription('List all matching consent that were given to be audio and video recorded during a call (requires administrator or moderator configuration)')
->addOption(
'token',
null,
InputOption::VALUE_REQUIRED,
'Limit to the given conversation'
)
->addOption(
'actor-type',
null,
InputOption::VALUE_REQUIRED,
'Limit to the given actor (only valid when --actor-id is also provided)'
)
->addOption(
'actor-id',
null,
InputOption::VALUE_REQUIRED,
'Limit to the given actor (only valid when --actor-type is also provided)'
)
;
}
protected function execute(InputInterface $input, OutputInterface $output): int {
$token = $input->getOption('token');
$actorType = $input->getOption('actor-type');
$actorId = $input->getOption('actor-id');
if (($actorType !== null) !== ($actorId !== null)) {
$output->writeln('<error>actor-type and actor-id must either both be specified or both left out</error>');
return 1;
}
$room = null;
if ($token !== null) {
try {
$room = $this->roomManager->getRoomByToken($token);
} catch (RoomNotFoundException) {
$output->writeln('<error>Conversation could not be found by token</error>');
return 2;
}
}
if ($actorType) {
if ($room instanceof Room) {
$consentData = $this->consentService->getConsentForRoomByActor($room, $actorType, $actorId);
} else {
$consentData = $this->consentService->getConsentForActor($actorType, $actorId);
}
} elseif ($room instanceof Room) {
$consentData = $this->consentService->getConsentForRoom($room);
} else {
$output->writeln('<error>No conversation or actor provided</error>');
return 3;
}
$this->writeTableInOutputFormat(
$input,
$output,
array_map(static fn (\OCA\Talk\Model\Consent $consent) => $consent->jsonSerialize(), $consentData)
);
return 0;
}
}