Passed
Pull Request — master (#245)
by
unknown
03:21
created

Test   A

Complexity

Total Complexity 7

Size/Duplication

Total Lines 77
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 7
eloc 49
dl 0
loc 77
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 26 1
B execute() 0 31 6
1
<?php
2
3
declare(strict_types=1);
4
5
/**
6
 * @author Christoph Wurst <[email protected]>
7
 *
8
 * Nextcloud - Two-factor Gateway
9
 *
10
 * This code is free software: you can redistribute it and/or modify
11
 * it under the terms of the GNU Affero General Public License, version 3,
12
 * as published by the Free Software Foundation.
13
 *
14
 * This program is distributed in the hope that it will be useful,
15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
 * GNU Affero General Public License for more details.
18
 *
19
 * You should have received a copy of the GNU Affero General Public License, version 3,
20
 * along with this program.  If not, see <http://www.gnu.org/licenses/>
21
 *
22
 */
23
24
namespace OCA\TwoFactorGateway\Command;
25
26
use InvalidArgumentException;
27
use OCA\TwoFactorGateway\Service\Gateway\IGateway;
28
use OCA\TwoFactorGateway\Service\Gateway\Signal\Gateway as SignalGateway;
29
use OCA\TwoFactorGateway\Service\Gateway\SMS\Gateway as SMSGateway;
30
use OCA\TwoFactorGateway\Service\Gateway\Telegram\Gateway as TelegramGateway;
31
use OCA\TwoFactorGateway\Service\Gateway\Email\Gateway as EmailGateway;
32
use OCP\IUserManager;
33
use Symfony\Component\Console\Command\Command;
0 ignored issues
show
Bug introduced by
The type Symfony\Component\Console\Command\Command was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
34
use Symfony\Component\Console\Input\InputArgument;
0 ignored issues
show
Bug introduced by
The type Symfony\Component\Console\Input\InputArgument was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
35
use Symfony\Component\Console\Input\InputInterface;
0 ignored issues
show
Bug introduced by
The type Symfony\Component\Console\Input\InputInterface was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
36
use Symfony\Component\Console\Output\OutputInterface;
0 ignored issues
show
Bug introduced by
The type Symfony\Component\Console\Output\OutputInterface was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
37
38
class Test extends Command {
39
40
	/** @var SignalGateway */
41
	private $signalGateway;
42
43
	/** @var SMSGateway */
44
	private $smsGateway;
45
46
	/** @var TelegramGateway */
47
	private $telegramGateway;
48
49
	/** @var EmailGateway */
50
	private $emailGateway;
51
52
	/** @var IUserManager */
53
	private $userManager;
54
55
	public function __construct(SignalGateway $signalGateway,
56
								SMSGateway $smsGateway,
57
								TelegramGateway $telegramGateway,
58
                                EmailGateway $emailGateway,
59
								IUserManager $userManager) {
60
		parent::__construct('twofactorauth:gateway:test');
61
		$this->signalGateway = $signalGateway;
62
		$this->smsGateway = $smsGateway;
63
		$this->telegramGateway = $telegramGateway;
64
        $this->emailGateway = $emailGateway;
65
		$this->userManager = $userManager;
66
67
		$this->addArgument(
68
			'uid',
69
			InputArgument::REQUIRED,
70
			'The user id'
71
		);
72
		$this->addArgument(
73
			'gateway',
74
			InputArgument::REQUIRED,
75
			'The name of the gateway, e.g. sms, signal, telegram, etc.'
76
		);
77
		$this->addArgument(
78
			'identifier',
79
			InputArgument::REQUIRED,
80
			'The identifier of the recipient , e.g. phone number, user id, email, etc.'
81
		);
82
	}
83
84
	protected function execute(InputInterface $input, OutputInterface $output) {
85
		$uid = $input->getArgument('uid');
86
		$user = $this->userManager->get($uid);
87
		if (is_null($user)) {
88
			$output->writeln("<error>Invalid UID</error>");
89
			return;
90
		}
91
		$gatewayName = $input->getArgument('gateway');
92
		$identifier = $input->getArgument('identifier');
93
94
		/** @var IGateway $gateway */
95
		$gateway = null;
96
		switch ($gatewayName) {
97
			case 'signal':
98
				$gateway = $this->signalGateway;
99
				break;
100
			case 'sms':
101
				$gateway = $this->smsGateway;
102
				break;
103
			case 'telegram':
104
				$gateway = $this->telegramGateway;
105
				break;
106
			case 'email':
107
				$gateway = $this->emailGateway;
108
				break;
109
			default:
110
				$output->writeln("<error>Invalid gateway $gatewayName</error>");
111
				return;
112
		}
113
114
		$gateway->send($user, $identifier, 'Test');
115
	}
116
117
}
118