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:
authormichael <mhoechstetter@zoho.comwq>2021-07-09 17:14:52 +0300
committermichael <mhoechstetter@zoho.comwq>2021-07-09 17:14:52 +0300
commitffc5e550ea36d2c43aa34dad26e7004642b933ac (patch)
tree261f1ed8679dd3e1346c673fa75c73d18b48c27b /lib/Service
parent95a576ed60640677686a4b51535a27403e5cdae1 (diff)
smsglobal added
Diffstat (limited to 'lib/Service')
-rw-r--r--lib/Service/Gateway/SMS/Provider/ProviderFactory.php2
-rw-r--r--lib/Service/Gateway/SMS/Provider/SMSGlobal.php84
-rw-r--r--lib/Service/Gateway/SMS/Provider/SMSGlobalConfig.php87
3 files changed, 173 insertions, 0 deletions
diff --git a/lib/Service/Gateway/SMS/Provider/ProviderFactory.php b/lib/Service/Gateway/SMS/Provider/ProviderFactory.php
index 7977bde..cabef78 100644
--- a/lib/Service/Gateway/SMS/Provider/ProviderFactory.php
+++ b/lib/Service/Gateway/SMS/Provider/ProviderFactory.php
@@ -41,6 +41,8 @@ class ProviderFactory {
return $this->container->query(PuzzelSMS::class);
case PlaySMS::PROVIDER_ID:
return $this->container->query(PlaySMS::class);
+ case SMSGlobal::PROVIDER_ID:
+ return $this->container->query(SMSGlobal::class);
case WebSms::PROVIDER_ID:
return $this->container->query(WebSms::class);
case ClockworkSMS::PROVIDER_ID:
diff --git a/lib/Service/Gateway/SMS/Provider/SMSGlobal.php b/lib/Service/Gateway/SMS/Provider/SMSGlobal.php
new file mode 100644
index 0000000..a6c19ef
--- /dev/null
+++ b/lib/Service/Gateway/SMS/Provider/SMSGlobal.php
@@ -0,0 +1,84 @@
+<?php
+
+declare(strict_types=1);
+
+/**
+ * @author Pascal Clémot <pascal.clemot@free.fr>
+ *
+ * Nextcloud - Two-factor Gateway
+ *
+ * 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 Exception;
+use OCA\TwoFactorGateway\Exception\SmsTransmissionException;
+use OCP\Http\Client\IClient;
+use OCP\Http\Client\IClientService;
+
+class SMSGlobal implements IProvider {
+ public const PROVIDER_ID = 'smsglobal';
+
+ /** @var IClient */
+ private $client;
+
+ /** @var SMSGlobalConfig */
+ private $config;
+
+ public function __construct(IClientService $clientService,
+ SMSGlobalConfig $config) {
+ $this->client = $clientService->newClient();
+ $this->config = $config;
+ }
+
+ /**
+ * @param string $identifier
+ * @param string $message
+ *
+ * @throws SmsTransmissionException
+ */
+ public function send(string $identifier, string $message) {
+ $config = $this->getConfig();
+ $to=str_replace("+", "", $identifier);
+
+ try {
+ $this->client->get(
+ $config->getUrl(),
+ [
+ 'query' => [
+ 'action' => 'sendsms',
+ 'user' => $config->getUser(),
+ 'password' => $config->getPassword(),
+ 'origin' => 'nextcloud',
+ 'from' => 'nextcloud',
+ 'to' => $to,
+ 'text' => $message,
+ 'clientcharset' => 'UTF-8',
+ 'detectcharset' => 1
+ ],
+ ]
+ );
+ } catch (Exception $ex) {
+ throw new SmsTransmissionException();
+ }
+ }
+
+ /**
+ * @return SMSGlobalConfig
+ */
+ public function getConfig(): IProviderConfig {
+ return $this->config;
+ }
+}
diff --git a/lib/Service/Gateway/SMS/Provider/SMSGlobalConfig.php b/lib/Service/Gateway/SMS/Provider/SMSGlobalConfig.php
new file mode 100644
index 0000000..612a1d9
--- /dev/null
+++ b/lib/Service/Gateway/SMS/Provider/SMSGlobalConfig.php
@@ -0,0 +1,87 @@
+<?php
+
+declare(strict_types=1);
+
+/**
+ * @author Christoph Wurst <christoph@winzerhof-wurst.at>
+ *
+ * Nextcloud - Two-factor Gateway
+ *
+ * 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 SMSGlobalConfig implements IProviderConfig {
+ private const expected = [
+ 'smsglobal_url',
+ 'smsglobal_user',
+ 'smsglobal_password',
+ ];
+
+ /** @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 getUrl(): string {
+ return $this->getOrFail('smsglobal_url');
+ }
+
+ public function setUrl(string $url) {
+ $this->config->setAppValue(Application::APP_NAME, 'smsglobal_url', $url);
+ }
+
+ public function getUser(): string {
+ return $this->getOrFail('smsglobal_user');
+ }
+
+ public function setUser(string $user) {
+ $this->config->setAppValue(Application::APP_NAME, 'smsglobal_user', $user);
+ }
+
+ public function getPassword(): string {
+ return $this->getOrFail('smsglobal_password');
+ }
+
+ public function setPassword(string $password) {
+ $this->config->setAppValue(Application::APP_NAME, 'smsglobal_password', $password);
+ }
+
+ 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);
+ }
+ }
+}