federatedUserService = $federatedUserService; $this->circleService = $circleService; } /** * */ protected function configure() { parent::configure(); $this->setName('circles:manage:destroy') ->setDescription('destroy a circle by its ID') ->addArgument('circle_id', InputArgument::REQUIRED, 'ID of the circle to be destroyed') ->addOption('initiator', '', InputOption::VALUE_REQUIRED, 'set an initiator to the request', '') ->addOption('initiator-type', '', InputOption::VALUE_REQUIRED, 'set initiator type', '0') ->addOption('status-code', '', InputOption::VALUE_NONE, 'display status code on exception'); } /** * @param InputInterface $input * @param OutputInterface $output * * @return int * @throws CircleNotFoundException * @throws FederatedItemException * @throws FederatedUserException * @throws FederatedUserNotFoundException * @throws InvalidIdException * @throws MemberNotFoundException * @throws OwnerNotFoundException * @throws RemoteInstanceException * @throws RemoteNotFoundException * @throws RemoteResourceNotFoundException * @throws SingleCircleNotFoundException * @throws UnknownRemoteException * @throws UserTypeNotFoundException * @throws RequestBuilderException */ protected function execute(InputInterface $input, OutputInterface $output): int { $circleId = $input->getArgument('circle_id'); try { $this->federatedUserService->commandLineInitiator( $input->getOption('initiator'), Member::parseTypeString($input->getOption('initiator-type')), $circleId, false ); $outcome = $this->circleService->destroy($circleId); } catch (FederatedItemException $e) { if ($input->getOption('status-code')) { throw new FederatedItemException( ' [' . get_class($e) . ', ' . ((string)$e->getStatus()) . ']' . "\n" . $e->getMessage() ); } throw $e; } if (strtolower($input->getOption('output')) === 'json') { $output->writeln(json_encode($outcome, JSON_PRETTY_PRINT)); } return 0; } }