LdapConnectionsTable.php
31.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
<?php
namespace App\Model\Table;
/* TODO LIST
*
- 1) remplacer ldapAuthentication() par ldapAuthenticationNEW()
- 2) virer getUserAttributes() à virer, remplacé par getLdap1UserOrAllUsersAttributes()
- 3) getAllLdapUsersNEW() pour remplacer getAllLdapUsers()
- TableRegistry::get() à remplacer par TableRegistry::getTableLocator()->get()
*
*/
use Cake\ORM\Table;
use Cake\ORM\TableRegistry;
use Cake\Auth\DefaultPasswordHasher;
use Cake\Core\Exception\Exception;
class LdapConnectionsTable extends AppTable
{
public $useTable = false;
private $host;
private $port;
private $baseDn;
private $authenticationType;
private $filter;
/*MCM*/
// EP
//private $anonymous;
private $ldap_authentified;
private $bindDn;
private $bindPass;
/* fin MCM*/
private $LDAP_USED = TRUE;
private $fakeLDAPUsers = [];
public function __construct()
{
parent::__construct();
}
// EP
public function useFakeLdap()
{
return ! $this->useLdap();
}
public function useLdap()
{
$this->checkConfiguration();
return $this->LDAP_USED;
}
private function buildFakeLdapUsers()
{
return $this->buildFakeLdapUsersFromDB();
}
private function buildFakeLdapUsersFromDB()
{
$users = TableRegistry::getTableLocator()->get('Users')->find();
$ldapUsers = [];
foreach ($users as $user) {
$names = explode(" ", $user['nom']);
if (isset($names[1])) {
$ldapUsers[] = [
'sn' => [
$names[0]
],
'mail' => [
$user['email']
],
'givenname' => [
$names[1]
],
$this->authenticationType => [
$user['username']
],
'userpassword' => [
$user['password']
]
];
} else {
$ldapUsers[] = [
'sn' => [
$names[0]
],
'mail' => [
$user['email']
],
'givenname' => " ",
$this->authenticationType => [
$user['username']
],
'userpassword' => [
$user['password']
]
];
}
}
/* EP (aout 2017)
* ATTENTION : Utilisateur IMPORTANT.
* Avec cet utilisateur, on simule un utilisateur qui n'est PAS dans la table utilisateurs
* Il devrait donc se voir attribuer un role "Utilisateur" sans pour autant que ça soit écrit dans la table !!!
* login = '_NouvelUtilisateur_username'
* pass = '_NouvelUtilisateur_password'
* $prefix = "_NouvelUtilisateur_";
*/
$ldapUsers[] = [
'sn' => [
'UTILISATEUR'
],
'givenname' => [
'FAKE_LDAP'
],
// 'mail' => [$login.'email'],
'mail' => [
'fakeldapuser@domain.fr'
],
// $this->authenticationType => [$prefix.'username'],
$this->authenticationType => [
$this->getTheFakeLdapUser()['login']
],
// $this->authenticationType => ['usere'],
'userpassword' => [
$this->getTheFakeLdapUser()['pass']
]
// 'userpassword' => ['toto'],
];
return $ldapUsers;
}
private function checkConfiguration()
{
$config = TableRegistry::getTableLocator()->get('Configurations')
->find()
->where(['id =' => 1])
->first();
$this->LDAP_USED = $config->ldap_used;
if (! $this->LDAP_USED) {
//$this->authenticationType = $config->authentificationType_ldap;
$this->authenticationType = $config->ldap_authenticationType;
if (empty($this->fakeLDAPUsers))
$this->fakeLDAPUsers = $this->buildFakeLdapUsers();
return true;
}
// debug($this->fakeLDAPUsers);
$ldapConfig = $config->toArray();
if (! empty($config->ldap_host) && ! empty($config->ldap_port) && ! empty($config->ldap_baseDn) && ! empty($config->ldap_authenticationType) && ! empty($config->ldap_filter)) {
$this->host = $config->ldap_host;
$this->port = $config->ldap_port;
$this->baseDn = $config->ldap_baseDn;
$this->filter = $config->ldap_filter;
$this->authenticationType = $config->ldap_authenticationType;
$this->ldap_authentified = $config->ldap_authentified;
$this->bindDn = $config->ldap_bindDn;
$this->bindPass = $config->ldap_bindPass;
return true;
}
throw new Exception('The ldap configuration is not valid : <br />
<ul>
<li>host = ' . @$ldapConfig['host'] . '</li>
<li>port = ' . @$ldapConfig['port'] . '</li>
<li>baseDn = ' . @$ldapConfig['baseDn'] . '</li>
<li>filter = ' . @$ldapConfig['filter'] . '</li>
<li>authenticationType = ' . @$ldapConfig['authenticationType'] . '</li>
</ul>');
}
// REAL LDAP only
/**
* @return array or boolean : all users from DB (CACHE of the LDAP) or FALSE (if table emtpy or expired data)
*/
private function fetchAllUsersFromDB() {
// On remet à jour tous les 7 jours
$PEREMPTION_NB_DAYS = 7;
// Doit aussi retourner FALSE si la ligne FAKE de la table users
// (celle qui contient le user_name "FAKE_USER")
// a une date "updated" périmée (now - updated > $PEREMPTION_NB_DAYS)
// (update automatique de tous les users, chaque semaine, pour rester synced avec le LDAP)
// By default, no user in CACHE
return FALSE;
}
// REAL LDAP only
// Sauvegarde de tous les users du LDAP en BD (avec un rythme de mise à jour hebdo)
// Seulement les champs: nom, pnom, login, pass, email, create, updated, profile
private function saveAllUsersInDB($users_fetched) {
// START TRANSACTION
// 1) Update (ou création) de la ligne FAKE (contient le user_name "FAKE_USER") => avec une date "updated"
// 2) Update (ou création) de chaque user contenu dans $users_fetched
// Attention à ne pas perdre l'attribut "profile", surtout pour les users privilégiés!!! (les autres ont un profile = "Utilisateur")
// END TRANSACTION (COMMIT)
// SAVE s'est bien passé
return TRUE;
}
/**
* @return $users_fetched or FALSE
*/
// REAL or FAKE LDAP
public function getAllLdapUsers()
{
try {
if ($this->checkConfiguration()) {
// REAL LDAP
if ($this->LDAP_USED) {
$ldapConnection = ldap_connect($this->host, $this->port);
ldap_set_option($ldapConnection, LDAP_OPT_PROTOCOL_VERSION, 3);
$results = ldap_search($ldapConnection, $this->baseDn, $this->filter);
$res = ldap_get_entries($ldapConnection, $results);
} // FAKE LDAP
else {
$res = $this->fakeLDAPUsers;
}
return $res;
}
}
catch (Exception $e) {}
return false;
}
/**
* @return $users_fetched or FALSE
*/
// REAL or FAKE LDAP
public function getAllLdapUsersNEW()
{
try {
if ($this->checkConfiguration()) {
// REAL LDAP
if ($this->LDAP_USED) {
// 1) Search users in CACHE (DB)
$users_fetched = $this->fetchAllUsersFromDB();
// 2) Not found in CACHE, so search users in LDAP
if ($users_fetched === FALSE) {
$users_fetched = $this->searchLdap($this->filter, []);
// CACHE the new user in DB for next time
if ($users_fetched != FALSE) $this->saveAllUsersInDB($users_fetched);
}
/*
$ldapConnection = ldap_connect($this->host, $this->port);
ldap_set_option($ldapConnection, LDAP_OPT_PROTOCOL_VERSION, 3);
// Binding optionnel
if ($this->ldap_authentified) $ldapbind = ldap_bind($ldapConnection, $this->bindDn, $this->bindPass)
or die("Could not bind to LDAP server.". ldap_error($ldapConnection) );
$results = ldap_search($ldapConnection, $this->baseDn, $this->filter);
$res = ldap_get_entries($ldapConnection, $results);
*/
}
// FAKE LDAP
else {
$users_fetched = $this->fakeLDAPUsers;
}
// Noter que $user_fetched peut etre egal a FALSE (si rien trouvé)
return $users_fetched;
}
}
catch (Exception $e) {}
// Pb, rien trouvé
return FALSE;
}
// TODO: avirer, VIEUX CODE, à remplacer par getLdap1UserOrAllUsersAttributes()
// $userName = login
public function getUserAttributes($ldapConnection, $userName)
{
try {
if ($this->checkConfiguration()) {
if ($this->LDAP_USED) {
//$ldapConnection = ldap_connect($this->host, $this->port);
//ldap_set_option($ldapConnection, LDAP_OPT_PROTOCOL_VERSION, 3);
$results = ldap_search($ldapConnection, $this->baseDn, '(' . $this->authenticationType . '=' . $userName . ')');
return ldap_get_entries($ldapConnection, $results);
} else
return array(
$this->getFakeLdapUser($userName)
);
}
} catch (Exception $e) {}
return false;
}
// REAL LDAP only
/*
* @param string $ldapConnection
* @param string $filter
* @param array $just_these
* @param string $userName (= login) => for FAKE LDAP only
* @return $res = ldap search result (1 user or all users attributes) or FALSE
*/
//public function getUserAttributes($userName, $ldapConnection='', $filter='', $just_these=[])
//public function getUserAttributes($ldapConnection='', $filter='', $just_these=[], $userName=NULL)
//public function getLdapUsersAttributes($ldapConnection, $filter='', $just_these=[])
public function getLdap1UserOrAllUsersAttributes($ldapConnection, $filter='', $just_these=[])
{
try {
if ($this->checkConfiguration()) {
// LDAP mode
//if ($this->LDAP_USED) {
/* (EP)
Fonction ldap_search ($link_identifier, $base_dn, $filter, array $attributes = null, $attrsonly = null, $sizelimit = null, $timelimit = null, $deref = null)
Concernant le paramètre $attributes (ici, $just_these) :
- An array of the required attributes, e.g. array("mail", "sn", "cn").
- Note that the "dn" is always returned irrespective of which attributes types are requested.
Telle que notre connexion au LDAP est conçue, on s'attend à recevoir AU MINIMUM
ces attributs dans la réponse de la fonction ldap_search():
- 'sn'
- 'mail'
- 'givenname'
- 'uid'
- 'userpassword'
Pour récupérer tous ces attributs, il ne faut pas utiliser la variable $just_these,
ou alors il faut qu'elle soit égale à un tableau vide ([]).
(par exemple, si elle vaut "['cn']" ça signifie qu'on veut "seulement l'attribut 'cn'")
Quand on n'utilise pas $just_these, la fonction ldap_search() retourne TOUS les attributs disponibles,
donc c'est le comportement qu'on veut ici.
*/
//$ldapConnection = ldap_connect($this->host, $this->port);
//ldap_set_option($ldapConnection, LDAP_OPT_PROTOCOL_VERSION, 3);
// OLD: $results = ldap_search($ldapConnection, $this->baseDn, '(' . $this->authenticationType . '=' . $userName . ')');
// NEW: $filter = "(&".$this->filter."(".$this->authenticationType . '=' . $user_login."))";
// OLD à virer
$filter = '(' . $this->authenticationType . '=' . $userName . ')';
$just_these = [];
$results = ldap_search($ldapConnection, $this->baseDn, $filter, $just_these)
or die("Could not search to LDAP server response was: " . ldap_error($ldapConnection) );
$res = ldap_get_entries($ldapConnection, $results);
//echo $info["count"]." entries returned\n";
return $res;
//}
// FAKE LDAP mode
//else return array( $this->getFakeLdapUser($userName) );
//else return $this->fakeLDAPUsers;
}
} catch (Exception $e) {
echo 'Exception LDAP : ', $e->getMessage(), "\n";
}
return false;
}
public function getAuthenticationType()
{
return $this->authenticationType;
}
// EP added
public function getFakeLdapUser($login)
{
foreach ($this->fakeLDAPUsers as $user) {
if ($login == $user[$this->authenticationType][0])
return $user;
}
return FALSE;
}
/**
* Return a list of Users with key = username & value = email
*/
public function getUsersWithNameAndEmail() {
$usersWithNameAndEmail = [];
// Get all users (with ALL their attributes)
$u = $this->getAllLdapUsers();
// Sort users
//sort($u);
//debug($u);
// (EP) Refactorisation pour éviter code redondant ci-dessous, c'était pourtant pas compliqué, poil dans la main...
$nb_users = $this->LDAP_USED ? $u['count'] : sizeof($u)-1;
for ($i = 0; $i < $nb_users; $i ++)
// $utilisateurs["Pallier Etienne"] = ["email"]
$usersWithNameAndEmail[ $u[$i]['sn'][0].' '.$u[$i]['givenname'][0] ] = $u[$i]['mail'][0];
//debug($usersWithNameAndEmail);
// Sort users (without modifying the keys, don't use sort() but asort() !!!!!!!!!!!!!)
ksort($usersWithNameAndEmail);
return $usersWithNameAndEmail;
}
/**
* Return a list of Users with key = username & value = username
*/
public function getListUsers()
{
$utilisateurs = [];
// Get all users (with ALL their attributes)
$u = $this->getAllLdapUsers();
// Sort users
//sort($u);
//debug($u);
// (EP) Refactorisation pour éviter code redondant ci-dessous, c'était pourtant pas compliqué, poil dans la main...
$nb_users = $this->LDAP_USED ? $u['count'] : sizeof($u)-1;
// $utilisateurs["Pallier Etienne"] = "Pallier Etienne"
for ($i = 0; $i < $nb_users; $i ++)
$utilisateurs[ $u[$i]['sn'][0].' '.$u[$i]['givenname'][0] ] = $u[$i]['sn'][0].' '.$u[$i]['givenname'][0];
//debug($utilisateurs);
// Sort users (without modifying the keys, don't use sort() but asort() !!!!!!!!!!!!!)
ksort($utilisateurs);
//debug($utilisateurs);
return $utilisateurs;
}
/**
* Return a list of login ofUsers with key = username & value = login
*/
public function getListLoginUsers()
{
$u = $this->getAllLdapUsers();
$utilisateurs = [];
if ($this->LDAP_USED) {
for ($i = 0; $i < $u['count']; $i ++) {
$utilisateurs[$u[$i]['sn'][0] . ' ' . $u[$i]['givenname'][0]] = $u[$i][$this->authenticationType][0];
}
} else {
for ($i = 0; $i < sizeof($u) - 1; $i ++) {
$utilisateurs[$u[$i]['sn'][0] . ' ' . $u[$i]['givenname'][0]] = $u[$i][$this->authenticationType][0];
}
}
return $utilisateurs;
}
/**
* Return a list of mail of Users with key = username & value = mail
*/
public function getListEmailUsers()
{
$u = $this->getAllLdapUsers();
$utilisateurs = [];
if ($this->LDAP_USED) {
for ($i = 0; $i < $u['count']; $i ++) {
if (isset($u[$i]['mail'][0])) {
$utilisateurs[$u[$i]['sn'][0] . ' ' . $u[$i]['givenname'][0]] = $u[$i]['mail'][0];
} else {
$utilisateurs[$u[$i]['sn'][0] . ' ' . $u[$i]['givenname'][0]] = 'N/A';
}
}
} else {
for ($i = 0; $i < sizeof($u) - 1; $i ++) {
$utilisateurs[$u[$i]['sn'][0] . ' ' . $u[$i]['givenname'][0]] = $u[$i]['mail'][0];
}
}
return $utilisateurs;
}
/**
* Return size of list users
public function getNbUsers()
{
$u = $this->getAllLdapUsers();
if ($this->LDAP_USED) {
$nbUsers = $u['count'];
} else {
$nbUsers = sizeof($u) - 1;
}
return $nbUsers;
}
*/
// Utilisateur du ldap qui n'est pas dans la table utilisateurs
// => il a donc le role "Utilisateur" PAR DEFAUT
private function getTheFakeLdapUser()
{
return [
'login' => '_fake_ldap_user_',
'pass' => '_fake_ldap_user_pass'
];
}
// TODO: implement
// REAL LDAP only
private function checkAndFetchUserFromDB($user_login, $user_password) {
// Doit aussi return false si ce user_login est "périmé" (sa date "created" est > 2 mois par exemple),
// ce qui obligera à relire ses données dans le LDAP et donc se mettre à jour
// By default, user is not in DB
return FALSE;
}
/*
CALL
$filter = "(&".$this->filter."(".$this->authenticationType . '=' . $user_login."))";
//TODO: optimisation, refactoriser si comportement général
//$binddn .= ','.$this->baseDn;
$user_fetched = $this->searchLdap($filter, $just_these, $user_login, $user_password);
*/
// REAL LDAP only
private function searchLdap($filter, $just_these, $user_login=NULL, $user_password=NULL) {
/*
* OLD CODE QUI MARCHE
$ldapConnection = ldap_connect($this->host, $this->port);
ldap_set_option($ldapConnection, LDAP_OPT_PROTOCOL_VERSION, 3);
if (@ldap_bind($ldapConnection, $this->authenticationType . '=' . $user_login . ',' . $this->baseDn, $user_password))
return $this->getUserAttributes($user_login)[0];
*/
// CONNEXION
$ldapConnection = ldap_connect($this->host, $this->port)
or die("Could not connect to $this->host (port $this->port)");
if ($ldapConnection) {
// OPTIONS
ldap_set_option($ldapConnection, LDAP_OPT_PROTOCOL_VERSION, 3);
// BINDING
// - Authentified
if ($this->ldap_authentified) $ldapbind = ldap_bind($ldapConnection, $this->bindDn, $this->bindPass);
// or die("Could not bind to LDAP server.". ldap_error($ldapConnection) );
// - Anonymous
// En cas de LDAP anonyme, binding quand même pour vérifier le mot de passe de l'utilisateur.
// Sans cette ligne, on passe avec n'importe quel password !!!
else {
$ldapbind = TRUE;
// function ldap_bind ($link_identifier, $bind_rdn = null, $bind_password = null)
//debug("log, pass= " . $user_login . ' ' . $user_password);
//if ($user_login && $user_password) $ldapbind = ldap_bind($ldapConnection, $this->authenticationType.'='.$user_login, $user_password);
if ($user_login && $user_password) $ldapbind = ldap_bind($ldapConnection, $this->authenticationType . '=' . $user_login . ',' . $this->baseDn, $user_password);
//debug("ldapbind " . $ldapbind);
}
// SEARCH
if ($ldapbind) {
// OLD
$search = $this->getUserAttributes($ldapConnection, $user_login);
// NEW
//$search = $this->getLdap1UserOrAllUsersAttributes($ldapConnection, $filter, $just_these);
if ($search === FALSE) die("Could not get user attributes from LDAP server, response was: " . ldap_error($ldapConnection) );
//return $search[0];
return $search;
}
}
// Il y a eu un pb, utilisateur non reconnu
return FALSE;
}
// REAL LDAP only
/*
private function checkAndFetchUserFromLdap($user_login, $user_password) {
// Set LDAP parameters
// - Liste des attributs à récupérer dans le ldap (vide = TOUS les attributs)
$just_these = [];
// TODO: vérifier si cette ligne est bien utile ou pas... (avant on faisait ça)
//if (! $this->ldap_authentified) $just_these = array("cn");
/* Examples :
*
* - ANONYMOUS LDAP (IRAP) :
* $this->authenticationType = 'uid'
* $this->baseDn = "ou=users,dc=irap,dc=omp,dc=eu"
*
* - AUTHENTIFIED LDAP connection (CRAL) :
* $this->authenticationType = 'sAMAccountName'
* $this->baseDn = "dc=univ-lyon1,dc=fr"
* $binddn="CN=svc_ldap_cral,OU=users,OU=27,OU=sim,OU=univ-lyon1,DC=univ-lyon1,DC=fr";
* ($binddn = "CN=svc_ldap_cral,OU=users,OU=27,OU=sim,OU=univ-lyon1,".$this->baseDn;)
* $filter = "(&(objectClass=person)(memberOf:1.2.840.113556.1.4.1941:=cn=ucbl.osu.cral,ou=groups,ou=27,ou=sim,ou=univ-lyon1,dc=univ-lyon1,dc=fr))";
STAR/
// Construction du filtre avec le filtre de la base de données avec un & sur le login de l'utilisateur
// Si aucun filtre n'est défini dans la base de données on aura juste (& ($this->authenticationType=$user_login))
// ex: "(&(objectClass=person)(memberOf:1.2.840.113556.1.4.1941:=cn=ucbl.osu.cral,ou=groups,ou=27,ou=sim,ou=univ-lyon1,dc=univ-lyon1,dc=fr)(sAMAccountName=$user_login))";
$filter = "(&".$this->filter."(".$this->authenticationType . '=' . $user_login."))";
//TODO: optimisation, refactoriser si comportement général
//$binddn .= ','.$this->baseDn;
$res = $this->searchLdap($filter, $just_these, $user_login, $user_password);
if ($res != FALSE) return $res[0];
/*
// CONNEXION
$ldapConnection = ldap_connect($this->host, $this->port)
or die("Could not connect to $this->host (port $this->port)");
if ($ldapConnection) {
// OPTIONS
ldap_set_option($ldapConnection, LDAP_OPT_PROTOCOL_VERSION, 3);
// BINDING
if ($this->ldap_authentified)
$ldapbind = ldap_bind($ldapConnection, $this->bindDn, $this->bindPass); // or die("Could not bind to LDAP server.". ldap_error($ldapConnection) );
// En cas de LDAP anonyme, binding quand même pour vérifier le mot de passe de l'utilisateur.
// Sans cette ligne, on passe avec n'importe quel password !!!
else
$ldapbind = ldap_bind($ldapConnection, $this->authenticationType.'='.$user_login, $user_password);
// SEARCH
if ($ldapbind) {
$search = $this->getUserAttributes($user_login, $ldapConnection, $filter, $just_these);
if ($search === false) die("Could not get user attributes from LDAP server, response was: " . ldap_error($ldapConnection) );
return $search[0];
}
}
STAR/
// Il y a eu un pb, utilisateur non reconnu
return FALSE;
}
*/
// TODO: implement
private function saveNewUserInDB($user_fetched) {
// SAVE new user in DB
return TRUE;
}
/*
* @param string $user_login
* @param string $user_password
* @return logged user LDAP attributes or FALSE if user not found in LDAP
*/
/*
public function ldapAuthenticationOLD($user_login, $user_password) {
try {
if ($this->checkConfiguration()) {
if ($this->LDAP_USED) {
if (strlen(trim($user_password)) == 0)
return FALSE;
$ldapConnection = ldap_connect($this->host, $this->port);
ldap_set_option($ldapConnection, LDAP_OPT_PROTOCOL_VERSION, 3);
if (@ldap_bind($ldapConnection, $this->authenticationType . '=' . $user_login . ',' . $this->baseDn, $user_password)) {
return $this->getUserAttributes($user_login)[0];
/STAR
* } else {
* return false;
STAR/
}
} else {
$user = $this->getFakeLdapUser($user_login);
// debug($user);
if ($user === false)
return FALSE;
// $this->authenticationType peut valoir "uid" ou "cn"... (par défaut "uid" pour le fake ldap, à confirmer...)
// if ($user['uid'][0] == "_NouvelUtilisateur_username" && $user['userpassword'][0] == "_NouvelUtilisateur_password") return $user;
// if ($user[$this->authenticationType][0] == "_NouvelUtilisateur_username" && $user['userpassword'][0] == "_NouvelUtilisateur_password") return $user;
if ($user[$this->authenticationType][0] == $this->getTheFakeLdapUser()['login'] && $user['userpassword'][0] == $this->getTheFakeLdapUser()['pass'])
return $user;
if ((new DefaultPasswordHasher())->check($user_password, $user['userpassword'][0]))
return $user;
// if ($user != false && $user['userpassword'][0] == $password) {
}
}
} catch (Exception $e) {
//echo 'Exception LDAP : ', $e->getMessage(), "\n";
}
// Il y a eu un problème, l'utilisateur n'est pas reconnu
return FALSE;
} // end ldapAuthentication()
*/
/*
* @param string $user_login
* @param string $user_password
* @return logged user LDAP attributes or FALSE if user not found in LDAP
*/
public function ldapAuthentication($user_login, $user_password) {
try {
if ($this->checkConfiguration()) {
// REAL LDAP
if ($this->LDAP_USED) {
// No connexion allowed without password
if (strlen(trim($user_password)) == 0) return FALSE;
/*
// VIEUX CODE QUI MARCHE !!!
$ldapConnection = ldap_connect($this->host, $this->port);
ldap_set_option($ldapConnection, LDAP_OPT_PROTOCOL_VERSION, 3);
if (@ldap_bind($ldapConnection, $this->authenticationType . '=' . $user_login . ',' . $this->baseDn, $user_password)) {
return $this->getUserAttributes($user_login)[0];
/STAR
* } else {
* return false;
STAR/
}
*/
// TODO: optimisation possible
// 1) Search user in CACHE (DB)
$user_fetched = $this->checkAndFetchUserFromDB($user_login, $user_password);
// 2) If not CACHED, search user in LDAP
if ($user_fetched === FALSE) {
//$user_fetched = $this->checkAndFetchUserFromLdap($user_login, $user_password);
$just_these = [];
// TODO: vérifier si cette ligne est bien utile ou pas... (avant on faisait ça)
//if (! $this->ldap_authentified) $just_these = array("cn");
// Construction du filtre avec le filtre de la base de données avec un & sur le login de l'utilisateur
// Si aucun filtre n'est défini dans la base de données on aura juste (& ($this->authenticationType=$user_login))
// ex: "(&(objectClass=person)(memberOf:1.2.840.113556.1.4.1941:=cn=ucbl.osu.cral,ou=groups,ou=27,ou=sim,ou=univ-lyon1,dc=univ-lyon1,dc=fr)(sAMAccountName=$user_login))";
$filter = "(&".$this->filter."(".$this->authenticationType . '=' . $user_login."))";
//TODO: optimisation, refactoriser si comportement général
//$binddn .= ','.$this->baseDn;
$user_fetched = $this->searchLdap($filter, $just_these, $user_login, $user_password);
// CACHE the new user in DB for next time
if ($user_fetched != FALSE) {
$this->saveNewUserInDB($user_fetched[0]);
return $user_fetched[0];
}
}
//return $user_fetched; // Noter que $user_fetched peut etre egal a FALSE (si pas trouvé)
}
// FAKE LDAP
else {
//debug($this->USE_LDAP);
//debug($this->baseDn);
$user = $this->getFakeLdapUser($user_login);
// debug($user);
if ($user === false)
return FALSE;
// $this->authenticationType peut valoir "uid" ou "cn"... (par défaut "uid" pour le fake ldap, à confirmer...)
// if ($user['uid'][0] == "_NouvelUtilisateur_username" && $user['userpassword'][0] == "_NouvelUtilisateur_password") return $user;
// if ($user[$this->authenticationType][0] == "_NouvelUtilisateur_username" && $user['userpassword'][0] == "_NouvelUtilisateur_password") return $user;
if ($user[$this->authenticationType][0] == $this->getTheFakeLdapUser()['login'] && $user['userpassword'][0] == $this->getTheFakeLdapUser()['pass'])
return $user;
if ( (new DefaultPasswordHasher())->check($user_password,$user['userpassword'][0]) )
return $user;
// if ($user != false && $user['userpassword'][0] == $password) {
}
}
} catch (Exception $e) {
//echo 'Exception LDAP : ', $e->getMessage(), "\n";
}
// Il y a eu un problème, l'utilisateur n'est pas reconnu
return FALSE;
} // end ldapAuthentication()
}
?>