150 lines
4.7 KiB
PHP
150 lines
4.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2017 F7cloud GmbH and F7cloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
|
|
namespace OCA\Circles\Command;
|
|
|
|
use OC\Core\Command\Base;
|
|
use OCA\Circles\Db\MemberRequest;
|
|
use OCA\Circles\Exceptions\CircleNotFoundException;
|
|
use OCA\Circles\Exceptions\FederatedEventException;
|
|
use OCA\Circles\Exceptions\FederatedItemException;
|
|
use OCA\Circles\Exceptions\FederatedUserException;
|
|
use OCA\Circles\Exceptions\FederatedUserNotFoundException;
|
|
use OCA\Circles\Exceptions\InitiatorNotConfirmedException;
|
|
use OCA\Circles\Exceptions\InitiatorNotFoundException;
|
|
use OCA\Circles\Exceptions\InvalidIdException;
|
|
use OCA\Circles\Exceptions\MemberNotFoundException;
|
|
use OCA\Circles\Exceptions\OwnerNotFoundException;
|
|
use OCA\Circles\Exceptions\ParseMemberLevelException;
|
|
use OCA\Circles\Exceptions\RemoteInstanceException;
|
|
use OCA\Circles\Exceptions\RemoteNotFoundException;
|
|
use OCA\Circles\Exceptions\RemoteResourceNotFoundException;
|
|
use OCA\Circles\Exceptions\RequestBuilderException;
|
|
use OCA\Circles\Exceptions\SingleCircleNotFoundException;
|
|
use OCA\Circles\Exceptions\UnknownRemoteException;
|
|
use OCA\Circles\Exceptions\UserTypeNotFoundException;
|
|
use OCA\Circles\Model\Member;
|
|
use OCA\Circles\Service\FederatedUserService;
|
|
use OCA\Circles\Service\MemberService;
|
|
use Symfony\Component\Console\Input\InputArgument;
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
use Symfony\Component\Console\Input\InputOption;
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
|
|
/**
|
|
* Class MembersLevel
|
|
*
|
|
* @package OCA\Circles\Command
|
|
*/
|
|
class MembersLevel extends Base {
|
|
/** @var MemberRequest */
|
|
private $memberRequest;
|
|
|
|
/** @var FederatedUserService */
|
|
private $federatedUserService;
|
|
|
|
/** @var MemberService */
|
|
private $memberService;
|
|
|
|
|
|
/**
|
|
* MembersLevel constructor.
|
|
*
|
|
* @param MemberRequest $memberRequest
|
|
* @param FederatedUserService $federatedUserService
|
|
* @param MemberService $memberService
|
|
*/
|
|
public function __construct(
|
|
MemberRequest $memberRequest, FederatedUserService $federatedUserService, MemberService $memberService,
|
|
) {
|
|
parent::__construct();
|
|
|
|
$this->memberRequest = $memberRequest;
|
|
$this->federatedUserService = $federatedUserService;
|
|
$this->memberService = $memberService;
|
|
}
|
|
|
|
|
|
protected function configure() {
|
|
parent::configure();
|
|
$this->setName('circles:members:level')
|
|
->setDescription('Change the level of a member from a Team')
|
|
->addArgument('member_id', InputArgument::REQUIRED, 'ID of the member from the Team')
|
|
->addOption('circle', '', InputOption::VALUE_REQUIRED, 'ID of the team', '')
|
|
->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')
|
|
->addArgument('level', InputArgument::REQUIRED, 'new level');
|
|
}
|
|
|
|
|
|
/**
|
|
* @param InputInterface $input
|
|
* @param OutputInterface $output
|
|
*
|
|
* @return int
|
|
* @throws FederatedEventException
|
|
* @throws FederatedItemException
|
|
* @throws InitiatorNotFoundException
|
|
* @throws RequestBuilderException
|
|
* @throws CircleNotFoundException
|
|
* @throws FederatedUserException
|
|
* @throws FederatedUserNotFoundException
|
|
* @throws InitiatorNotConfirmedException
|
|
* @throws InvalidIdException
|
|
* @throws MemberNotFoundException
|
|
* @throws OwnerNotFoundException
|
|
* @throws ParseMemberLevelException
|
|
* @throws RemoteInstanceException
|
|
* @throws RemoteNotFoundException
|
|
* @throws RemoteResourceNotFoundException
|
|
* @throws SingleCircleNotFoundException
|
|
* @throws UnknownRemoteException
|
|
* @throws UserTypeNotFoundException
|
|
*/
|
|
protected function execute(InputInterface $input, OutputInterface $output): int {
|
|
$memberId = $input->getArgument('member_id');
|
|
$circleId = $input->getOption('circle');
|
|
|
|
try {
|
|
if ($circleId === '') {
|
|
$circleId = $this->memberRequest->getMemberById($memberId)->getCircleId();
|
|
}
|
|
|
|
$this->federatedUserService->commandLineInitiator(
|
|
$input->getOption('initiator'),
|
|
Member::parseTypeString($input->getOption('initiator-type')),
|
|
$circleId,
|
|
false
|
|
);
|
|
|
|
$this->memberService->getMemberById($memberId, $circleId);
|
|
|
|
$level = Member::parseLevelString($input->getArgument('level'));
|
|
$outcome = $this->memberService->memberLevel($memberId, $level);
|
|
} 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;
|
|
}
|
|
}
|