Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/twofactor_gateway.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaweł Kuffel <pawel@kuffel.io>2021-09-18 22:17:07 +0300
committerPaweł Kuffel <pawel@kuffel.io>2021-09-18 22:17:07 +0300
commitc125c389a9af06defc6a6d70b607fe701a8e4c4c (patch)
treef602c2d705523adeb3862a9ec10af203f4e91499 /lib/Service/Gateway/SMS/Provider/SerwerSMSConfig.php
parent4c5eba3e1169d7b35ef0ad6e068db69e74447627 (diff)
add SerwerSMS.pl provider
Signed-off-by: Paweł Kuffel <pawel@kuffel.io>
Diffstat (limited to 'lib/Service/Gateway/SMS/Provider/SerwerSMSConfig.php')
-rw-r--r--lib/Service/Gateway/SMS/Provider/SerwerSMSConfig.php87
1 files changed, 87 insertions, 0 deletions
diff --git a/lib/Service/Gateway/SMS/Provider/SerwerSMSConfig.php b/lib/Service/Gateway/SMS/Provider/SerwerSMSConfig.php
new file mode 100644
index 0000000..7db562f
--- /dev/null
+++ b/lib/Service/Gateway/SMS/Provider/SerwerSMSConfig.php
@@ -0,0 +1,87 @@
+<?php
+
+declare(strict_types=1);
+
+/**
+ * @author Paweł Kuffel <pawel@kuffel.io>
+ *
+ * Nextcloud - Two-factor Gateway for SerwerSMS.pl
+ *
+ * This code is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License, version 3,
+ * as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License, version 3,
+ * along with this program. If not, see <http://www.gnu.org/licenses/>
+ *
+ */
+
+namespace OCA\TwoFactorGateway\Service\Gateway\SMS\Provider;
+
+use function array_intersect;
+use OCA\TwoFactorGateway\AppInfo\Application;
+use OCA\TwoFactorGateway\Exception\ConfigurationException;
+use OCP\IConfig;
+
+class SerwerSMSConfig implements IProviderConfig {
+ private const expected = [
+ 'serwersms_login',
+ 'serwersms_password',
+ 'serwersms_sender',
+ ];
+
+ /** @var IConfig */
+ private $config;
+
+ public function __construct(IConfig $config) {
+ $this->config = $config;
+ }
+
+ private function getOrFail(string $key): string {
+ $val = $this->config->getAppValue(Application::APP_NAME, $key, null);
+ if (is_null($val)) {
+ throw new ConfigurationException();
+ }
+ return $val;
+ }
+
+ public function getLogin(): string {
+ return $this->getOrFail('serwersms_login');
+ }
+
+ public function getPassword(): string {
+ return $this->getOrFail('serwersms_password');
+ }
+
+ public function getSender(): string {
+ return $this->getOrFail('serwersms_sender');
+ }
+
+ public function setLogin(string $login) {
+ $this->config->setAppValue(Application::APP_NAME, 'serwersms_login', $login);
+ }
+
+ public function setPassword(string $password) {
+ $this->config->setAppValue(Application::APP_NAME, 'serwersms_password', $password);
+ }
+
+ public function setSender(string $sender) {
+ $this->config->setAppValue(Application::APP_NAME, 'serwersms_sender', $sender);
+ }
+
+ public function isComplete(): bool {
+ $set = $this->config->getAppKeys(Application::APP_NAME);
+ return count(array_intersect($set, self::expected)) === count(self::expected);
+ }
+
+ public function remove() {
+ foreach (self::expected as $key) {
+ $this->config->deleteAppValue(Application::APP_NAME, $key);
+ }
+ }
+}