|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/* |
|
4
|
|
|
* This file is part of Jitamin. |
|
5
|
|
|
* |
|
6
|
|
|
* Copyright (C) Jitamin Team |
|
7
|
|
|
* |
|
8
|
|
|
* For the full copyright and license information, please view the LICENSE |
|
9
|
|
|
* file that was distributed with this source code. |
|
10
|
|
|
*/ |
|
11
|
|
|
|
|
12
|
|
|
namespace Jitamin\Auth; |
|
13
|
|
|
|
|
14
|
|
|
use Jitamin\Foundation\Base; |
|
15
|
|
|
use Jitamin\Foundation\Ldap\Client as LdapClient; |
|
16
|
|
|
use Jitamin\Foundation\Ldap\ClientException as LdapException; |
|
17
|
|
|
use Jitamin\Foundation\Ldap\User as LdapUser; |
|
18
|
|
|
use Jitamin\Foundation\Security\PasswordAuthenticationProviderInterface; |
|
19
|
|
|
use LogicException; |
|
20
|
|
|
|
|
21
|
|
|
/** |
|
22
|
|
|
* LDAP Authentication Provider. |
|
23
|
|
|
*/ |
|
24
|
|
|
class LdapAuth extends Base implements PasswordAuthenticationProviderInterface |
|
25
|
|
|
{ |
|
26
|
|
|
/** |
|
27
|
|
|
* User properties. |
|
28
|
|
|
* |
|
29
|
|
|
* @var \Jitamin\Services\User\LdapUserProvider |
|
30
|
|
|
*/ |
|
31
|
|
|
protected $userInfo = null; |
|
32
|
|
|
|
|
33
|
|
|
/** |
|
34
|
|
|
* Username. |
|
35
|
|
|
* |
|
36
|
|
|
* @var string |
|
37
|
|
|
*/ |
|
38
|
|
|
protected $username = ''; |
|
39
|
|
|
|
|
40
|
|
|
/** |
|
41
|
|
|
* Password. |
|
42
|
|
|
* |
|
43
|
|
|
* @var string |
|
44
|
|
|
*/ |
|
45
|
|
|
protected $password = ''; |
|
46
|
|
|
|
|
47
|
|
|
/** |
|
48
|
|
|
* Get authentication provider name. |
|
49
|
|
|
* |
|
50
|
|
|
* @return string |
|
51
|
|
|
*/ |
|
52
|
|
|
public function getName() |
|
53
|
|
|
{ |
|
54
|
|
|
return 'LDAP'; |
|
55
|
|
|
} |
|
56
|
|
|
|
|
57
|
|
|
/** |
|
58
|
|
|
* Authenticate the user. |
|
59
|
|
|
* |
|
60
|
|
|
* @return bool |
|
61
|
|
|
*/ |
|
62
|
|
|
public function authenticate() |
|
63
|
|
|
{ |
|
64
|
|
|
try { |
|
65
|
|
|
$client = LdapClient::connect($this->getLdapUsername(), $this->getLdapPassword()); |
|
66
|
|
|
$client->setLogger($this->logger); |
|
|
|
|
|
|
67
|
|
|
|
|
68
|
|
|
$user = LdapUser::getUser($client, $this->username); |
|
69
|
|
|
|
|
70
|
|
|
if ($user === null) { |
|
71
|
|
|
$this->logger->info('User ('.$this->username.') not found in LDAP server'); |
|
|
|
|
|
|
72
|
|
|
|
|
73
|
|
|
return false; |
|
74
|
|
|
} |
|
75
|
|
|
|
|
76
|
|
|
if ($user->getUsername() === '') { |
|
77
|
|
|
throw new LogicException('Username not found in LDAP profile, check the parameter LDAP_USER_ATTRIBUTE_USERNAME'); |
|
78
|
|
|
} |
|
79
|
|
|
|
|
80
|
|
|
$this->logger->info('Authenticate this user: '.$user->getDn()); |
|
|
|
|
|
|
81
|
|
|
|
|
82
|
|
|
if ($client->authenticate($user->getDn(), $this->password)) { |
|
83
|
|
|
$this->userInfo = $user; |
|
|
|
|
|
|
84
|
|
|
|
|
85
|
|
|
return true; |
|
86
|
|
|
} |
|
87
|
|
|
} catch (LdapException $e) { |
|
88
|
|
|
$this->logger->error($e->getMessage()); |
|
|
|
|
|
|
89
|
|
|
} |
|
90
|
|
|
|
|
91
|
|
|
return false; |
|
92
|
|
|
} |
|
93
|
|
|
|
|
94
|
|
|
/** |
|
95
|
|
|
* Get user object. |
|
96
|
|
|
* |
|
97
|
|
|
* @return \Jitamin\Services\User\LdapUserProvider |
|
98
|
|
|
*/ |
|
99
|
|
|
public function getUser() |
|
100
|
|
|
{ |
|
101
|
|
|
return $this->userInfo; |
|
|
|
|
|
|
102
|
|
|
} |
|
103
|
|
|
|
|
104
|
|
|
/** |
|
105
|
|
|
* Set username. |
|
106
|
|
|
* |
|
107
|
|
|
* @param string $username |
|
108
|
|
|
*/ |
|
109
|
|
|
public function setUsername($username) |
|
110
|
|
|
{ |
|
111
|
|
|
$this->username = $username; |
|
112
|
|
|
} |
|
113
|
|
|
|
|
114
|
|
|
/** |
|
115
|
|
|
* Set password. |
|
116
|
|
|
* |
|
117
|
|
|
* @param string $password |
|
118
|
|
|
*/ |
|
119
|
|
|
public function setPassword($password) |
|
120
|
|
|
{ |
|
121
|
|
|
$this->password = $password; |
|
122
|
|
|
} |
|
123
|
|
|
|
|
124
|
|
|
/** |
|
125
|
|
|
* Get LDAP username (proxy auth). |
|
126
|
|
|
* |
|
127
|
|
|
* @return string |
|
128
|
|
|
*/ |
|
129
|
|
|
public function getLdapUsername() |
|
130
|
|
|
{ |
|
131
|
|
|
switch ($this->getLdapBindType()) { |
|
132
|
|
|
case 'proxy': |
|
133
|
|
|
return LDAP_USERNAME; |
|
134
|
|
|
case 'user': |
|
135
|
|
|
return sprintf(LDAP_USERNAME, $this->username); |
|
136
|
|
|
default: |
|
137
|
|
|
return; |
|
138
|
|
|
} |
|
139
|
|
|
} |
|
140
|
|
|
|
|
141
|
|
|
/** |
|
142
|
|
|
* Get LDAP password (proxy auth). |
|
143
|
|
|
* |
|
144
|
|
|
* @return string |
|
145
|
|
|
*/ |
|
146
|
|
|
public function getLdapPassword() |
|
147
|
|
|
{ |
|
148
|
|
|
switch ($this->getLdapBindType()) { |
|
149
|
|
|
case 'proxy': |
|
150
|
|
|
return LDAP_PASSWORD; |
|
151
|
|
|
case 'user': |
|
152
|
|
|
return $this->password; |
|
153
|
|
|
default: |
|
154
|
|
|
return; |
|
155
|
|
|
} |
|
156
|
|
|
} |
|
157
|
|
|
|
|
158
|
|
|
/** |
|
159
|
|
|
* Get LDAP bind type. |
|
160
|
|
|
* |
|
161
|
|
|
* @return int |
|
162
|
|
|
*/ |
|
163
|
|
|
public function getLdapBindType() |
|
164
|
|
|
{ |
|
165
|
|
|
if (LDAP_BIND_TYPE !== 'user' && LDAP_BIND_TYPE !== 'proxy' && LDAP_BIND_TYPE !== 'anonymous') { |
|
166
|
|
|
throw new LogicException('Wrong value for the parameter LDAP_BIND_TYPE'); |
|
167
|
|
|
} |
|
168
|
|
|
|
|
169
|
|
|
return LDAP_BIND_TYPE; |
|
170
|
|
|
} |
|
171
|
|
|
} |
|
172
|
|
|
|
Since your code implements the magic getter
_get, this function will be called for any read access on an undefined variable. You can add the@propertyannotation to your class or interface to document the existence of this variable.If the property has read access only, you can use the @property-read annotation instead.
Of course, you may also just have mistyped another name, in which case you should fix the error.
See also the PhpDoc documentation for @property.