Completed
Push — master ( 6bfb4d...93218d )
by Christoph
19s queued 14s
created

PuzzelSMSConfig::remove()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 2
c 0
b 0
f 0
dl 0
loc 3
rs 10
cc 2
nc 2
nop 0
1
<?php
2
3
declare(strict_types=1);
4
5
/**
6
 * @author Kim Syversen <[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\Service\Gateway\SMS\Provider;
25
26
use function array_intersect;
27
use OCA\TwoFactorGateway\AppInfo\Application;
28
use OCA\TwoFactorGateway\Exception\ConfigurationException;
29
use OCP\IConfig;
30
31
class PuzzelSMSConfig implements IProviderConfig {
32
33
	const expected = [
34
		'puzzel_url',
35
		'puzzel_user',
36
		'puzzel_password',
37
		'puzzel_serviceid',
38
	];
39
40
	/** @var IConfig */
41
	private $config;
42
43
	public function __construct(IConfig $config) {
44
		$this->config = $config;
45
	}
46
47
	private function getOrFail(string $key): string {
48
		$val = $this->config->getAppValue(Application::APP_NAME, $key, null);
49
		if (is_null($val)) {
0 ignored issues
show
introduced by
The condition is_null($val) is always false.
Loading history...
50
			throw new ConfigurationException();
51
		}
52
		return $val;
53
	}
54
55
	public function getUrl(): string {
56
		return $this->getOrFail('puzzel_url');
57
	}
58
59
	public function setUrl(string $url) {
60
		$this->config->setAppValue(Application::APP_NAME, 'puzzel_url', $url);
61
	}
62
63
	public function getUser(): string {
64
		return $this->getOrFail('puzzel_user');
65
	}
66
67
	public function setUser(string $user) {
68
		$this->config->setAppValue(Application::APP_NAME, 'puzzel_user', $user);
69
	}
70
71
	public function getPassword(): string {
72
		return $this->getOrFail('puzzel_password');
73
	}
74
75
	public function setPassword(string $password) {
76
		$this->config->setAppValue(Application::APP_NAME, 'puzzel_password', $password);
77
	}
78
79
	public function getServiceId() {
80
		return $this->getOrFail('puzzel_serviceid');
81
	}
82
83
	public function setServiceId(string $serviceid) {
84
		$this->config->setAppValue(Application::APP_NAME, 'puzzel_serviceid', $serviceid);
85
	}
86
87
	public function isComplete(): bool {
88
		$set = $this->config->getAppKeys(Application::APP_NAME);
89
		return count(array_intersect($set, self::expected)) === count(self::expected);
90
	}
91
	
92
	public function remove() {
93
		foreach(self::expected as $key) {
94
			$this->config->deleteAppValue(Application::APP_NAME, $key);
95
		}
96
	}
97
}
98