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: ' . $this->fediverseService->getAccessType() . '' ); 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(' ' . $address . ''); } } $this->output->writeln('- List:'); foreach ($this->fediverseService->getListedAddresses() as $address) { $this->output->writeln(' ' . $address . ''); } } /** * @throws Exception */ private function addAddress(string $address): void { $this->fediverseService->addAddress($address); $this->output->writeln('' . $address . ' added to the list'); } /** * @throws Exception */ private function removeAddress(string $address): void { $this->fediverseService->removeAddress($address); $this->output->writeln('' . $address . ' removed from the list'); } /** * @throws SocialAppConfigException */ private function testAddress(string $address) { try { $this->fediverseService->authorized($address); $this->output->writeln('Authorized'); } catch (UnauthorizedFediverseException $e) { $this->output->writeln('Unauthorized'); } } private function resetAddresses() { $this->fediverseService->resetAddresses(); $this->output->writeln('list is now empty'); } }