kopia lustrzana https://github.com/nextcloud/social
154 wiersze
3.7 KiB
PHP
154 wiersze
3.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Social\Command;
|
|
|
|
use Exception;
|
|
use OC\Core\Command\Base;
|
|
use OCA\Social\Exceptions\SocialAppConfigException;
|
|
use OCA\Social\Exceptions\UnauthorizedFediverseException;
|
|
use OCA\Social\Service\FediverseService;
|
|
use Symfony\Component\Console\Input\InputArgument;
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
|
|
/**
|
|
* Class Fediverse
|
|
*
|
|
* @package OCA\Social\Command
|
|
*/
|
|
class Fediverse extends Base {
|
|
private FediverseService $fediverseService;
|
|
private ?OutputInterface $output = null;
|
|
|
|
public function __construct(FediverseService $fediverseService) {
|
|
parent::__construct();
|
|
$this->fediverseService = $fediverseService;
|
|
}
|
|
|
|
protected function configure() {
|
|
parent::configure();
|
|
$this->setName('social:fediverse')
|
|
->addOption(
|
|
'type', 't', InputArgument::OPTIONAL,
|
|
'Change the type of access management', ''
|
|
)
|
|
->addArgument('action', InputArgument::OPTIONAL, 'add/remove/test address', '')
|
|
->addArgument('address', InputArgument::OPTIONAL, 'address/host', '')
|
|
->setDescription('Allow or deny access to the fediverse');
|
|
}
|
|
|
|
/**
|
|
* @throws Exception
|
|
*/
|
|
protected function execute(InputInterface $input, OutputInterface $output): int {
|
|
$this->output = $output;
|
|
|
|
if ($this->typeAccess($input->getOption('type'))) {
|
|
return 0;
|
|
}
|
|
|
|
$this->output->writeln(
|
|
'Current access type: <info>' . $this->fediverseService->getAccessType() . '</info>'
|
|
);
|
|
|
|
switch ($input->getArgument('action')) {
|
|
case '':
|
|
$this->listAddresses(false);
|
|
break;
|
|
|
|
case 'list':
|
|
$this->listAddresses(true);
|
|
break;
|
|
|
|
case 'add':
|
|
$this->addAddress($input->getArgument('address'));
|
|
break;
|
|
|
|
case 'remove':
|
|
$this->removeAddress($input->getArgument('address'));
|
|
break;
|
|
|
|
case 'test':
|
|
$this->testAddress($input->getArgument('address'));
|
|
break;
|
|
|
|
case 'reset':
|
|
$this->resetAddresses();
|
|
break;
|
|
|
|
default:
|
|
throw new Exception('specify action: add, remove, list, reset');
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
* @throws Exception
|
|
*/
|
|
private function typeAccess(string $type): bool {
|
|
if ($type === '') {
|
|
return false;
|
|
}
|
|
|
|
$this->fediverseService->setAccessType($type);
|
|
|
|
return true;
|
|
}
|
|
|
|
private function listAddresses(bool $allKnownAddress = false): void {
|
|
if ($allKnownAddress) {
|
|
$this->output->writeln('- Known address:');
|
|
foreach ($this->fediverseService->getKnownAddresses() as $address) {
|
|
$this->output->writeln(' <info>' . $address . '</info>');
|
|
}
|
|
}
|
|
|
|
$this->output->writeln('- List:');
|
|
foreach ($this->fediverseService->getListedAddresses() as $address) {
|
|
$this->output->writeln(' <info>' . $address . '</info>');
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* @throws Exception
|
|
*/
|
|
private function addAddress(string $address): void {
|
|
$this->fediverseService->addAddress($address);
|
|
$this->output->writeln('<info>' . $address . '</info> added to the list');
|
|
}
|
|
|
|
/**
|
|
* @throws Exception
|
|
*/
|
|
private function removeAddress(string $address): void {
|
|
$this->fediverseService->removeAddress($address);
|
|
$this->output->writeln('<info>' . $address . '</info> removed from the list');
|
|
}
|
|
|
|
/**
|
|
* @throws SocialAppConfigException
|
|
*/
|
|
private function testAddress(string $address) {
|
|
try {
|
|
$this->fediverseService->authorized($address);
|
|
$this->output->writeln('<info>Authorized</info>');
|
|
} catch (UnauthorizedFediverseException $e) {
|
|
$this->output->writeln('<comment>Unauthorized</comment>');
|
|
}
|
|
}
|
|
|
|
private function resetAddresses() {
|
|
$this->fediverseService->resetAddresses();
|
|
$this->output->writeln('list is now empty');
|
|
}
|
|
}
|