1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
declare(strict_types=1); |
4
|
|
|
|
5
|
|
|
/** |
6
|
|
|
* @author Rainer Dohmen <[email protected]> |
7
|
|
|
* |
8
|
|
|
* Nextcloud - Two-factor Gateway for XMPP |
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\XMPP; |
25
|
|
|
|
26
|
|
|
use OCA\TwoFactorGateway\Exception\SmsTransmissionException; |
27
|
|
|
use OCA\TwoFactorGateway\Service\Gateway\IGateway; |
28
|
|
|
use OCA\TwoFactorGateway\Service\Gateway\IGatewayConfig; |
29
|
|
|
use OCP\Http\Client\IClient; |
30
|
|
|
use OCP\Http\Client\IClientService; |
31
|
|
|
use OCP\IConfig; |
32
|
|
|
use OCP\ILogger; |
33
|
|
|
use OCP\IUser; |
34
|
|
|
|
35
|
|
|
class Gateway implements IGateway { |
36
|
|
|
|
37
|
|
|
/** @var IClient */ |
38
|
|
|
private $client; |
39
|
|
|
|
40
|
|
|
/** @var GatewayConfig */ |
41
|
|
|
private $gatewayConfig; |
42
|
|
|
|
43
|
|
|
/** @var IConfig */ |
44
|
|
|
private $config; |
45
|
|
|
|
46
|
|
|
/** @var ILogger */ |
47
|
|
|
private $logger; |
48
|
|
|
|
49
|
|
|
public function __construct(IClientService $clientService, |
50
|
|
|
GatewayConfig $gatewayConfig, |
51
|
|
|
IConfig $config, |
52
|
|
|
ILogger $logger) { |
53
|
|
|
$this->client = $clientService->newClient(); |
54
|
|
|
$this->gatewayConfig = $gatewayConfig; |
55
|
|
|
$this->config = $config; |
56
|
|
|
$this->logger = $logger; |
57
|
|
|
} |
58
|
|
|
|
59
|
|
|
/** |
60
|
|
|
* @param IUser $user |
61
|
|
|
* @param string $identifier |
62
|
|
|
* @param string $message |
63
|
|
|
* |
64
|
|
|
* @throws SmsTransmissionException |
65
|
|
|
*/ |
66
|
|
|
public function send(IUser $user, string $identifier, string $message) { |
67
|
|
|
$this->logger->debug("sending xmpp message to $identifier, message: $message"); |
|
|
|
|
68
|
|
|
|
69
|
|
|
$sender = $this->gatewayConfig->getSender(); |
70
|
|
|
$password = $this->gatewayConfig->getPassword(); |
71
|
|
|
$server = $this->gatewayConfig->getServer(); |
72
|
|
|
$method = $this->gatewayConfig->getMethod(); |
73
|
|
|
$user = $this->gatewayConfig->getUsername(); |
74
|
|
|
$url = $server.$identifier; |
75
|
|
|
|
76
|
|
|
if ($method === "1") { |
77
|
|
|
$from = $user; |
78
|
|
|
} |
79
|
|
|
if ($method === "2") { |
80
|
|
|
$from = $sender; |
81
|
|
|
} |
82
|
|
|
$this->logger->debug("URL: $url, sender: $sender, method: $method"); |
|
|
|
|
83
|
|
|
|
84
|
|
|
try { |
85
|
|
|
$ch = curl_init(); |
86
|
|
|
curl_setopt($ch, CURLOPT_URL, $url); |
87
|
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); |
88
|
|
|
curl_setopt($ch, CURLOPT_POST, 1); |
89
|
|
|
curl_setopt($ch, CURLOPT_POSTFIELDS, $message); |
90
|
|
|
curl_setopt($ch, CURLOPT_USERPWD, $from.":".$password); |
|
|
|
|
91
|
|
|
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: text/plain')); |
92
|
|
|
$result = curl_exec($ch); |
|
|
|
|
93
|
|
|
curl_close($ch); |
94
|
|
|
$this->logger->debug("XMPP message to $identifier sent"); |
|
|
|
|
95
|
|
|
} catch (Exception $ex) { |
|
|
|
|
96
|
|
|
throw new SmsTransmissionException(); |
97
|
|
|
} |
98
|
|
|
} |
99
|
|
|
|
100
|
|
|
/** |
101
|
|
|
* Get the gateway-specific configuration |
102
|
|
|
* |
103
|
|
|
* @return IGatewayConfig |
104
|
|
|
*/ |
105
|
|
|
public function getConfig(): IGatewayConfig { |
106
|
|
|
return $this->gatewayConfig; |
107
|
|
|
} |
108
|
|
|
} |
109
|
|
|
|
This function has been deprecated. The supplier of the function has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.