Completed
Push — master ( 3d671c...42e805 )
by Blizzz
48:26 queued 33:21
created

Notifier::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * @copyright Copyright (c) 2017 Roger Szabo <[email protected]>
4
 *
5
 * @author Roger Szabo <[email protected]>
6
 *
7
 * @license GNU AGPL version 3 or any later version
8
 *
9
 * This program is free software: you can redistribute it and/or modify
10
 * it under the terms of the GNU Affero General Public License as
11
 * published by the Free Software Foundation, either version 3 of the
12
 * License, or (at your option) any later version.
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
20
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21
 *
22
 */
23
24
namespace OCA\User_LDAP\Notification;
25
26
27
use OCP\IUser;
28
use OCP\IUserManager;
29
use OCP\L10N\IFactory;
30
use OCP\Notification\INotification;
31
use OCP\Notification\INotifier;
32
33
class Notifier implements INotifier {
34
35
	/** @var IFactory */
36
	protected $l10nFactory;
37
38
	/**
39
	 * @param IFactory $l10nFactory
40
	 */
41
	 public function __construct(\OCP\L10N\IFactory $l10nFactory) {
42
		$this->l10nFactory = $l10nFactory;
43
	}
44
45
	/**
46
	 * @param INotification $notification
47
	 * @param string $languageCode The code of the language that should be used to prepare the notification
48
	 * @return INotification
49
	 * @throws \InvalidArgumentException When the notification was not prepared by a notifier
50
	 */
51
	public function prepare(INotification $notification, $languageCode) {
52
		if ($notification->getApp() !== 'user_ldap') {
53
			// Not my app => throw
54
			throw new \InvalidArgumentException();
55
		}
56
57
		// Read the language from the notification
58
		$l = $this->l10nFactory->get('user_ldap', $languageCode);
59
60
		switch ($notification->getSubject()) {
61
			// Deal with known subjects
62
			case 'pwd_exp_warn_days':
63
				$notification->setParsedSubject($l->t('Your password will expire within %s day(s).', $notification->getSubjectParameters()));
64
				return $notification;
65
66
			default:
67
				// Unknown subject => Unknown notification => throw
68
				throw new \InvalidArgumentException();
69
		}
70
	}
71
}
72