01acfa3b40
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.
97 lines
2.6 KiB
PHP
97 lines
2.6 KiB
PHP
<?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\Bot;
|
|
|
|
use OC\Core\Command\Base;
|
|
use OCA\Talk\Model\Bot;
|
|
use OCA\Talk\Model\BotConversation;
|
|
use OCA\Talk\Model\BotConversationMapper;
|
|
use OCA\Talk\Model\BotServerMapper;
|
|
use OCA\Talk\Service\BotService;
|
|
use OCP\App\IAppManager;
|
|
use OCP\AppFramework\Utility\ITimeFactory;
|
|
use Symfony\Component\Console\Input\InputArgument;
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
|
|
class ListBots extends Base {
|
|
public function __construct(
|
|
private BotConversationMapper $botConversationMapper,
|
|
private BotServerMapper $botServerMapper,
|
|
private BotService $botService,
|
|
private IAppManager $appManager,
|
|
private ITimeFactory $timeFactory,
|
|
) {
|
|
parent::__construct();
|
|
}
|
|
|
|
#[\Override]
|
|
protected function configure(): void {
|
|
parent::configure();
|
|
$this
|
|
->setName('talk:bot:list')
|
|
->setDescription('List all installed bots of the server or a conversation')
|
|
->addArgument(
|
|
'token',
|
|
InputArgument::OPTIONAL,
|
|
'Conversation token to limit the bot list for'
|
|
)
|
|
;
|
|
}
|
|
|
|
protected function execute(InputInterface $input, OutputInterface $output): int {
|
|
$bots = $this->botServerMapper->getAllBots();
|
|
$token = $input->getArgument('token');
|
|
|
|
if ($token) {
|
|
$botIds = array_map(static function (BotConversation $bot): int {
|
|
return $bot->getBotId();
|
|
}, $this->botConversationMapper->findForToken($token));
|
|
}
|
|
|
|
$data = [];
|
|
foreach ($bots as $bot) {
|
|
if ($token && !in_array($bot->getId(), $botIds, true)) {
|
|
continue;
|
|
}
|
|
|
|
$botData = $bot->jsonSerialize();
|
|
$botData['features'] = Bot::featureFlagsToLabels($botData['features']);
|
|
|
|
if (!$this->botService->isAppForBotEnabled($bot)) {
|
|
$botData['state'] = Bot::STATE_UNAVAILABLE;
|
|
if ($input->getOption('output') === 'plain') {
|
|
$botData['error_count'] = '<error>' . 1 . '</error>';
|
|
} else {
|
|
$botData['error_count'] = 1;
|
|
}
|
|
$botData['last_error_date'] = $this->timeFactory->getTime();
|
|
if ($input->getOption('output') === 'plain') {
|
|
$botData['last_error_message'] = '<error>App disabled</error>';
|
|
} else {
|
|
$botData['last_error_message'] = 'App disabled';
|
|
}
|
|
}
|
|
|
|
if (!$output->isVerbose()) {
|
|
unset($botData['url']);
|
|
unset($botData['url_hash']);
|
|
unset($botData['secret']);
|
|
unset($botData['last_error_date']);
|
|
unset($botData['last_error_message']);
|
|
}
|
|
|
|
$data[] = $botData;
|
|
}
|
|
|
|
$this->writeTableInOutputFormat($input, $output, $data);
|
|
return 0;
|
|
}
|
|
}
|