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

Gateway::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 8
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 8
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 4
1
<?php
2
3
declare(strict_types=1);
4
5
/**
6
 * @author Christoph Wurst <[email protected]>
7
 * @author André Fondse <[email protected]>
8
 *
9
 * Nextcloud - Two-factor Gateway for Telegram
10
 *
11
 * This code is free software: you can redistribute it and/or modify
12
 * it under the terms of the GNU Affero General Public License, version 3,
13
 * as published by the Free Software Foundation.
14
 *
15
 * This program is distributed in the hope that it will be useful,
16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18
 * GNU Affero General Public License for more details.
19
 *
20
 * You should have received a copy of the GNU Affero General Public License, version 3,
21
 * along with this program.  If not, see <http://www.gnu.org/licenses/>
22
 *
23
 */
24
25
namespace OCA\TwoFactorGateway\Service\Gateway\Email;
26
27
use OCA\TwoFactorGateway\Exception\SmsTransmissionException;
28
use OCA\TwoFactorGateway\Service\Gateway\IGateway;
29
use OCA\TwoFactorGateway\Service\Gateway\IGatewayConfig;
30
use OCP\Http\Client\IClient;
31
use OCP\Http\Client\IClientService;
32
use OCP\IConfig;
33
use OCP\ILogger;
34
use OCP\IUser;
35
use OCP\Mail\IMailer;
36
use OCP\Util;
37
38
class Gateway implements IGateway {
39
40
	/** @var IClient */
41
	private $client;
42
43
	/** @var GatewayConfig */
44
	private $gatewayConfig;
45
46
	/** @var IConfig */
47
	private $config;
48
49
	/** @var ILogger */
50
	private $logger;
51
52
	public function __construct(IClientService $clientService,
53
								GatewayConfig $gatewayConfig,
54
								IConfig $config,
55
								ILogger $logger) {
56
		$this->client = $clientService->newClient();
57
		$this->gatewayConfig = $gatewayConfig;
58
		$this->config = $config;
59
		$this->logger = $logger;
60
	}
61
62
	/**
63
	 * @param IUser $user
64
	 * @param string $identifier
65
	 * @param string $message
66
	 *
67
	 * @throws SmsTransmissionException
68
	 */
69
	public function send(IUser $user, string $identifier, string $message) {
70
		$this->logger->debug("sending email message to $identifier, message: $message");
71
        
72
        $mailer = \OC::$server->getMailer();
73
        $email = $mailer->createMessage();
74
        $email->setSubject("Nextcloud Account Verification");
75
        $email->setFrom([Util::getDefaultEmailAddress('no-reply') => "Nextcloud"]);
76
        $email->setTo([ $identifier => $user->getDisplayName() ]);
77
        $email->setPlainBody($message);
78
        $mailer->send($email);
79
	}
80
81
	/**
82
	 * Get the gateway-specific configuration
83
	 *
84
	 * @return IGatewayConfig
85
	 */
86
	public function getConfig(): IGatewayConfig {
87
		return $this->gatewayConfig;
88
	}
89
90
}
91