ldapbaseauthenticationprovider.inc.php
41.2 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
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
<?php
/**
* $Id$
*
* KnowledgeTree Community Edition
* Document Management Made Simple
* Copyright (C) 2008 KnowledgeTree Inc.
* Portions copyright The Jam Warehouse Software (Pty) Limited
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License version 3 as published by the
* Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* You can contact KnowledgeTree Inc., PO Box 7775 #87847, San Francisco,
* California 94120-7775, or email info@knowledgetree.com.
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU General Public License version 3.
*
* In accordance with Section 7(b) of the GNU General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "Powered by
* KnowledgeTree" logo and retain the original copyright notice. If the display of the
* logo is not reasonably feasible for technical reasons, the Appropriate Legal Notices
* must display the words "Powered by KnowledgeTree" and retain the original
* copyright notice.
* Contributor( s): ______________________________________
*
*/
require_once(KT_LIB_DIR . '/authentication/authenticationprovider.inc.php');
require_once(KT_LIB_DIR . '/authentication/Authenticator.inc');
class KTLDAPBaseAuthenticationProvider extends KTAuthenticationProvider {
var $sName = 'LDAP authentication provider';
var $sNamespace = 'ktstandard.authentication.ldapprovider';
var $aAttributes = array ('cn', 'samaccountname', 'givenname', 'sn', 'mail', 'mobile', 'userprincipalname', 'uid');
var $aMembershipAttributes = array ('memberOf');
// {{{ KTLDAPBaseAuthenticationProvider
function KTLDAPBaseAuthenticationProvider() {
parent::KTAuthenticationProvider();
$this->aConfigMap = array(
'servername' => _kt('LDAP Server'),
'serverport' => _kt('The LDAP server port'),
'basedn' => _kt('Base DN'),
'searchuser' => _kt('LDAP Search User'),
'searchpassword' => _kt('LDAP Search Password'),
'searchattributes' => _kt('Search Attributes'),
'objectclasses' => _kt('Object Classes'),
'tls' => _kt('Use Transaction Layer Security (TLS)'),
);
}
// }}}
// {{{ showSource
function showSource($oSource) {
$aConfig = unserialize($oSource->getConfig());
if (empty($aConfig)) {
$aConfig = array();
}
$sRet = "<dl>\n";
foreach ($this->aConfigMap as $sSettingName => $sName) {
$sRet .= " <dt>$sName</dt>\n";
$sValue = KTUtil::arrayGet($aConfig, $sSettingName, _kt("Unset"), false);
if (is_array($sValue)) {
$sRet .= " <dd>" . join("<br />", $sValue) . "</dd>\n";
} else if (is_bool($sValue)) {
if ($sValue === true) {
$sRet .= " <dd>" . _kt('True') . "</dd>\n";
} else {
$sRet .= " <dd>" . _kt('False') . "</dd>\n";
}
} else if ($sSettingName == 'searchpassword') {
$sRet .= " <dd><em>*** Hidden ***</em></dd>\n";
} else {
$sRet .= " <dd>" . $sValue . "</dd>\n";
}
}
$sRet .= "</dl>\n";
return $sRet;
}
// }}}
// {{{ showUserSource
function showUserSource($oUser, $oSource) {
return '<a href="' . KTUtil::addQueryStringSelf('action=editUserSource&user_id=' . $oUser->getId()) . '">' . _kt('Edit LDAP info') . '</a>';
}
// }}}
// {{{ do_editUserSource
function do_editUserSource() {
$submit = KTUtil::arrayGet($_REQUEST, 'submit');
if (KTUtil::arrayGet($submit, 'save')) {
return $this->_do_saveUserSource();
}
$user_id = KTUtil::arrayGet($_REQUEST, 'user_id');
$oUser =& $this->oValidator->validateUser($user_id);
$this->oPage->setBreadcrumbDetails(_kt("editing LDAP details"));
$oTemplate = $this->oValidator->validateTemplate('ktstandard/authentication/ldapedituser');
$oAuthenticationSource = KTAuthenticationSource::getForUser($oUser);
$dn = $oUser->getAuthenticationDetails();
$fields = array();
$fields[] = new KTStringWidget(_kt('Distinguished name'), _kt('The location of this user in the LDAP tree'), 'dn', $dn, $this->oPage, true);
$aTemplateData = array(
'context' => &$this,
'fields' => $fields,
'user' => $oUser,
);
return $oTemplate->render($aTemplateData);
}
// }}}
// {{{ _do_saveUserSource
function _do_saveUserSource() {
$user_id = KTUtil::arrayGet($_REQUEST, 'user_id');
$oUser =& $this->oValidator->validateUser($user_id);
$dn = KTUtil::arrayGet($_REQUEST, 'dn', "");
if (empty($dn)) {
$this->errorRedirecToMain("Failed to validate LDAP details");
}
$oUser->setAuthenticationDetails($dn);
$oUser->update();
$this->successRedirectTo("editUser", _kt("Details updated"),
sprintf('user_id=%d', $oUser->getId()));
}
// }}}
// {{{ do_editSourceProvider
function do_editSourceProvider() {
require_once(KT_LIB_DIR . '/widgets/fieldWidgets.php');
$this->oPage->setBreadcrumbDetails(_kt("editing LDAP settings"));
$oTemplate = $this->oValidator->validateTemplate('ktstandard/authentication/ldapeditsource');
$iSourceId = KTUtil::arrayGet($_REQUEST, 'source_id');
$oSource = KTAuthenticationSource::get($iSourceId);
$aConfig = unserialize($oSource->getConfig());
if (empty($aConfig)) {
$aConfig = array('serverport'=>389);
}
$aConfig['searchattributes'] = KTUtil::arrayGet($aConfig, 'searchattributes', split(',', 'cn,mail,sAMAccountName'));
$aConfig['objectclasses'] = KTUtil::arrayGet($aConfig, 'objectclasses', split(',', 'user,inetOrgPerson,posixAccount'));
$fields = array();
$fields[] = new KTStringWidget(_kt('Server name'), _kt('The host name or IP address of the LDAP server'), 'servername', $aConfig['servername'], $this->oPage, true);
$fields[] = new KTIntegerWidget(_kt('Server Port'), _kt('The port of the LDAP server (default: 389)'), 'serverport', $aConfig['serverport'], $this->oPage, true);
$fields[] = new KTCheckboxWidget(_kt('Use Transaction Layer Security (TLS)'), _kt('Whether to use Transaction Layer Security (TLS), which encrypts traffic to and from the LDAP server'), 'tls_bool', $aConfig['tls'], $this->oPage, true);
$fields[] = new KTStringWidget(_kt('Base DN'), _kt('The location in the LDAP directory to start searching from (CN=Users,DC=mycorp,DC=com)'), 'basedn', $aConfig['basedn'], $this->oPage, true);
$fields[] = new KTStringWidget(_kt('Search User'), _kt('The user account in the LDAP directory to perform searches in the LDAP directory as (such as CN=searchUser,CN=Users,DC=mycorp,DC=com or searchUser@mycorp.com)'), 'searchuser', $aConfig['searchuser'], $this->oPage, true);
$fields[] = new KTPasswordWidget(_kt('Search Password'), _kt('The password for the user account in the LDAP directory that performs searches'), 'searchpassword', $aConfig['searchpassword'], $this->oPage, true);
$aOptions = array(
'rows' => 7,
'cols' => 25,
);
$fields[] = new KTTextWidget(_kt('Search Attributes'), _kt('The LDAP attributes to use to search for users when given their name (one per line, examples: <strong>cn</strong>, <strong>mail</strong>)'), 'searchattributes_nls', join("\n", $aConfig['searchattributes']), $this->oPage, true, null, null, $aOptions);
$fields[] = new KTTextWidget(_kt('Object Classes'), _kt('The LDAP object classes to search for users (one per line, example: <strong>user</strong>, <strong>inetOrgPerson</strong>, <strong>posixAccount</strong>)'), 'objectclasses_nls', join("\n", $aConfig['objectclasses']), $this->oPage, true, null, null, $aOptions);
$aTemplateData = array(
'context' => &$this,
'fields' => $fields,
'source' => $oSource,
);
return $oTemplate->render($aTemplateData);
}
// }}}
// {{{ do_performEditSourceProvider
function do_performEditSourceProvider() {
$iSourceId = KTUtil::arrayGet($_REQUEST, 'source_id');
$oSource = KTAuthenticationSource::get($iSourceId);
$aConfig = unserialize($oSource->getConfig());
$aConfig['searchattributes'] = KTUtil::arrayGet($aConfig, 'searchattributes', split(',', 'cn,mail,sAMAccountName'));
$aConfig['objectclasses'] = KTUtil::arrayGet($aConfig, 'objectclasses', split(',', 'user,inetOrgPerson,posixAccount'));
$aConfig['tls'] = false;
$aConfig['serverport'] =389;
foreach ($this->aConfigMap as $k => $v) {
$sValue = KTUtil::arrayGet($_REQUEST, $k . '_nls');
if ($sValue) {
$nls_array = split("\n", $sValue);
$final_array = array();
foreach ($nls_array as $nls_item) {
$nls_item = trim($nls_item);
if (empty($nls_item)) {
continue;
}
$final_array[] = $nls_item;
}
$aConfig[$k] = $final_array;
continue;
}
if (array_key_exists($k . '_bool', $_REQUEST)) {
if ($_REQUEST[$k . '_bool']) {
$aConfig[$k] = true;
} else {
$aConfig[$k] = false;
}
continue;
}
$sValue = KTUtil::arrayGet($_REQUEST, $k);
if ($sValue) {
$aConfig[$k] = $sValue;
}
}
$oSource->setConfig(serialize($aConfig));
$res = $oSource->update();
//force a commit here to keep any data entered into the fields
//when redirected to the do_editSourceProvider function above the $oSource object will
//now contain the information entered by the user.
if ($this->bTransactionStarted) {
$this->commitTransaction();
}
$aErrorOptions = array(
'redirect_to' => array('editSourceProvider', sprintf('source_id=%d', $oSource->getId())),
);
$aErrorOptions['message'] = _kt("No server name provided");
$sName = KTUtil::arrayGet($_REQUEST, 'servername');
$sName = $this->oValidator->validateString($sName, $aErrorOptions);
$aErrorOptions['message'] = _kt("No Base DN provided");
$sName = KTUtil::arrayGet($_REQUEST, 'basedn');
$sName = $this->oValidator->validateString($sName, $aErrorOptions);
$aErrorOptions['message'] = _kt("No Search User provided");
$sName = KTUtil::arrayGet($_REQUEST, 'searchuser');
$sName = $this->oValidator->validateString($sName, $aErrorOptions);
$aErrorOptions['message'] = _kt("No Search Password provided");
$sName = KTUtil::arrayGet($_REQUEST, 'searchpassword');
$sName = $this->oValidator->validateString($sName, $aErrorOptions);
$aErrorOptions['message'] = _kt("No Search Attributes provided");
$sName = KTUtil::arrayGet($_REQUEST, 'searchattributes_nls');
$sName = $this->oValidator->validateString($sName, $aErrorOptions);
$aErrorOptions['message'] = _kt("No Object Classes provided");
$sName = KTUtil::arrayGet($_REQUEST, 'objectclasses_nls');
$sName = $this->oValidator->validateString($sName, $aErrorOptions);
$this->successRedirectTo('viewsource', _kt("Configuration updated"), 'source_id=' . $oSource->getId());
}
// }}}
// {{{ getAuthenticator
function &getAuthenticator($oSource) {
return new $this->sAuthenticatorClass($oSource);
}
// }}}
// {{{ _do_editUserFromSource
function _do_editUserFromSource() {
$oTemplate = $this->oValidator->validateTemplate('ktstandard/authentication/ldapadduser');
$oSource =& KTAuthenticationSource::get($_REQUEST['source_id']);
$id = KTUtil::arrayGet($_REQUEST, 'id');
$aConfig = unserialize($oSource->getConfig());
$oAuthenticator = $this->getAuthenticator($oSource);
$aResults = $oAuthenticator->getUser($id);
$aErrorOptions = array(
'message' => _kt('Could not find user in LDAP server'),
);
$this->oValidator->notError($aResults);
$sUserName = $aResults[$this->aAttributes[1]];
// If the SAMAccountName is empty then use the UserPrincipalName (UPN) to find the username.
// The UPN is normally the username @ the internet domain
if(empty($sUserName)) {
$sUpn = $aResults[$this->aAttributes[6]];
$aUpn = explode('@', $sUpn);
$sUserName = $aUpn[0];
}
$fields = array();
$fields[] = new KTStaticTextWidget(_kt('LDAP DN'), _kt('The location of the user within the LDAP directory.'), 'dn', $id, $this->oPage);
$fields[] = new KTStringWidget(_kt('Username'), sprintf(_kt('The username the user will enter to gain access to %s. e.g. <strong>jsmith</strong>'), APP_NAME), 'ldap_username', $sUserName, $this->oPage, true);
$fields[] = new KTStringWidget(_kt('Name'), _kt('The full name of the user. This is shown in reports and listings. e.g. <strong>John Smith</strong>'), 'name', $aResults[$this->aAttributes[0]], $this->oPage, true);
$fields[] = new KTStringWidget(_kt('Email Address'), _kt('The email address of the user. Notifications and alerts are mailed to this address if <strong>email notifications</strong> is set below. e.g. <strong>jsmith@acme.com</strong>'), 'email_address', $aResults[$this->aAttributes[4]], $this->oPage, false);
$fields[] = new KTCheckboxWidget(_kt('Email Notifications'), _kt('If this is specified then the user will have notifications sent to the email address entered above. If it is not set, then the user will only see notifications on the <strong>Dashboard</strong>'), 'email_notifications', true, $this->oPage, false);
$fields[] = new KTStringWidget(_kt('Mobile Number'), _kt('The mobile phone number of the user. e.g. <strong>999 9999 999</strong>'), 'mobile_number', $aResults[$this->aAttributes[5]], $this->oPage, false);
$fields[] = new KTStringWidget(_kt('Maximum Sessions'), _kt('As a safety precaution, it is useful to limit the number of times a given account can log in, before logging out. This prevents a single account being used by many different people.'), 'max_sessions', '3', $this->oPage, true);
$aTemplateData = array(
'context' => &$this,
'fields' => $fields,
'source' => $oSource,
'search_results' => $aSearchResults,
'dn' => $id,
'samaccountname' => $aResults['samaccountname'],
);
return $oTemplate->render($aTemplateData);
}
// }}}
// {{{ _do_createUserFromSource
function _do_createUserFromSource() {
$oSource =& KTAuthenticationSource::get($_REQUEST['source_id']);
$dn = KTUtil::arrayGet($_REQUEST, 'dn');
$samaccountname = KTUtil::arrayGet($_REQUEST, 'samaccountname');
$name = KTUtil::arrayGet($_REQUEST, 'name');
if (empty($name)) { $this->errorRedirectToMain(_kt('You must specify a name for the user.')); }
$username = KTUtil::arrayGet($_REQUEST, 'ldap_username');
if (empty($username)) { $this->errorRedirectToMain(_kt('You must specify a new username.')); }
$dupUser =& User::getByUserName($username);
if(!PEAR::isError($dupUser)) {
$this->errorRedirectToMain(_kt("A user with that username already exists"));
}
$email_address = KTUtil::arrayGet($_REQUEST, 'email_address');
$email_notifications = KTUtil::arrayGet($_REQUEST, 'email_notifications', false);
if ($email_notifications !== false) $email_notifications = true;
$mobile_number = KTUtil::arrayGet($_REQUEST, 'mobile_number');
$max_sessions = KTUtil::arrayGet($_REQUEST, 'max_sessions', '3');
// FIXME check for numeric max_sessions... db-error else?
$oUser =& User::createFromArray(array(
"Username" => $username,
"Name" => $name,
"Email" => $email_address,
"EmailNotification" => $email_notifications,
"SmsNotification" => false, // FIXME do we auto-act if the user has a mobile?
"MaxSessions" => $max_sessions,
"authenticationsourceid" => $oSource->getId(),
"authenticationdetails" => $dn,
"authenticationdetails2" => $samaccountname,
"password" => "",
));
if (PEAR::isError($oUser) || ($oUser == false)) {
$this->errorRedirectToMain(_kt("failed to create user") . ": " . $oUser->message);
exit(0);
}
$this->successRedirectToMain(_kt('Created new user') . ': ' . $oUser->getUsername());
exit(0);
}
// }}}
// {{{ _do_massCreateUsers
function _do_massCreateUsers() {
$aIds = KTUtil::arrayGet($_REQUEST, 'id');
$oSource =& KTAuthenticationSource::get($_REQUEST['source_id']);
$oAuthenticator = $this->getAuthenticator($oSource);
$aNames = array();
foreach ($aIds as $sId) {
$aResults = $oAuthenticator->getUser($sId);
$dn = $sId;
$sUserName = $aResults[$this->aAttributes[1]];
// With LDAP, if the 'uid' is null then try using the 'givenname' instead.
// See activedirectoryauthenticationprovider.inc.php and ldapauthenticationprovider.inc.php for details.
if($this->sAuthenticatorClass == "KTLDAPAuthenticator" && empty($sUserName)) {
$sUserName = strtolower($aResults[$this->aAttributes[2]]);
}
$sName = $aResults[$this->aAttributes[0]];
$sEmailAddress = $aResults[$this->aAttributes[4]];
$sMobileNumber = $aResults[$this->aAttributes[5]];
// If the user already exists append some text so the admin can see the duplicates.
$appending = true;
while($appending) {
if(!PEAR::isError(User::getByUserName($sUserName))) {
$sUserName = $sUserName . "_DUPLICATE";
$appending = true;
} else $appending = false;
}
$oUser = User::createFromArray(array(
"Username" => $sUserName,
"Name" => $sName,
"Email" => $sEmailAddress,
"EmailNotification" => true,
"SmsNotification" => false, // FIXME do we auto-act if the user has a mobile?
"MaxSessions" => 3,
"authenticationsourceid" => $oSource->getId(),
"authenticationdetails" => $dn,
"authenticationdetails2" => $sUserName,
"password" => "",
));
$aNames[] = $sName;
}
$this->successRedirectToMain(_kt("Added users") . ": " . join(', ', $aNames));
}
// }}}
// {{{ do_addUserFromSource
function do_addUserFromSource() {
$submit = KTUtil::arrayGet($_REQUEST, 'submit');
if (!is_array($submit)) {
$submit = array();
}
if (KTUtil::arrayGet($submit, 'chosen')) {
$id = KTUtil::arrayGet($_REQUEST, 'id');
$massimport = KTUtil::arrayGet($_REQUEST, 'massimport');
if (!empty($id)) {
if ($massimport) {
return $this->_do_massCreateUsers();
} else {
return $this->_do_editUserFromSource();
}
} else {
$this->oPage->addError(_kt("No valid LDAP user chosen"));
}
}
if (KTUtil::arrayGet($submit, 'create')) {
return $this->_do_createUserFromSource();
}
$oSource =& KTAuthenticationSource::get($_REQUEST['source_id']);
$oTemplate = $this->oValidator->validateTemplate('ktstandard/authentication/ldapsearchuser');
$fields = array();
$fields[] = new KTStringWidget(_kt("User's name"), _kt("The user's name, or part thereof, to find the user that you wish to add"), 'ldap_name', '', $this->oPage, true);
$fields[] = new KTCheckboxWidget(_kt("Mass import"), _kt("Allow for multiple users to be selected to be added (will not get to manually verify the details if selected)"), 'massimport', false, $this->oPage, true);
$oAuthenticator = $this->getAuthenticator($oSource);
$name = KTUtil::arrayGet($_REQUEST, 'ldap_name');
if (!empty($name)) {
$aSearchResults = $oAuthenticator->searchUsers($name, array('cn', 'dn', $sIdentifierField));
if (PEAR::isError($aSearchResults)) {
$this->oPage->addError($aSearchResults->getMessage());
$aSearchResults = null;
}
if (is_array($aSearchResults)) {
$aSearchResultsKeys = array_keys($aSearchResults);
$aSearchDNs = array();
foreach ($aSearchResultsKeys as $k) {
if (is_array($aSearchResults[$k]['cn'])) {
$aSearchResults[$k]['cn'] = $aSearchResults[$k]['cn'][0];
}
$aSearchDNs[$k] = "'".$aSearchResults[$k]['dn']."'";
}
$sDNs = implode(',', $aSearchDNs);
$query = "SELECT id, authentication_details_s1 AS dn FROM users
WHERE authentication_details_s1 IN ($sDNs)";
$aCurUsers = DBUtil::getResultArray($query);
// If the user has already been added, then remove from the list
if(!PEAR::isError($aCurUsers) && !empty($aCurUsers)){
foreach($aCurUsers as $item){
$key = array_search("'".$item['dn']."'", $aSearchDNs);
$aKeys[] = $key;
unset($aSearchResults[$key]);
}
}
}
}
$massimport = KTUtil::arrayGet($_REQUEST, 'massimport');
$aTemplateData = array(
'context' => &$this,
'fields' => $fields,
'source' => $oSource,
'search_results' => $aSearchResults,
'identifier_field' => $sIdentifierField,
'massimport' => $massimport,
);
return $oTemplate->render($aTemplateData);
}
// }}}
// {{{ do_addGroupFromSource
function do_addGroupFromSource() {
$submit = KTUtil::arrayGet($_REQUEST, 'submit');
if (!is_array($submit)) {
$submit = array();
}
if (KTUtil::arrayGet($submit, 'chosen')) {
$id = KTUtil::arrayGet($_REQUEST, 'id');
if (!empty($id)) {
return $this->_do_editGroupFromSource();
} else {
$this->oPage->addError(_kt("No valid LDAP group chosen"));
}
}
if (KTUtil::arrayGet($submit, 'create')) {
return $this->_do_createGroupFromSource();
}
$oSource =& KTAuthenticationSource::get($_REQUEST['source_id']);
$oTemplate = $this->oValidator->validateTemplate('ktstandard/authentication/ldapsearchgroup');
$fields = array();
$fields[] = new KTStringWidget(_kt("Group's name"), _kt("The group's name, or part thereof, to find the group that you wish to add"), 'name', '', $this->oPage, true);
$name = KTUtil::arrayGet($_REQUEST, 'name');
if (!empty($name)) {
$oAuthenticator = $this->getAuthenticator($oSource);
$aSearchResults = $oAuthenticator->searchGroups($name);
if(PEAR::isError($aSearchResults)){
$this->addErrorMessage($aSearchResults->getMessage());
$aSearchResults = array();
}
}
$aTemplateData = array(
'context' => &$this,
'fields' => $fields,
'source' => $oSource,
'search_results' => $aSearchResults,
'identifier_field' => 'displayName',
);
return $oTemplate->render($aTemplateData);
}
// }}}
// {{{ _do_editGroupFromSource
function _do_editGroupFromSource() {
$oTemplate = $this->oValidator->validateTemplate('ktstandard/authentication/ldapaddgroup');
$oSource =& KTAuthenticationSource::get($_REQUEST['source_id']);
$id = KTUtil::arrayGet($_REQUEST, 'id');
$aConfig = unserialize($oSource->getConfig());
$oAuthenticator = $this->getAuthenticator($oSource);
$aAttributes = $oAuthenticator->getGroup($id);
$fields = array();
$fields[] = new KTStaticTextWidget(_kt('LDAP DN'), _kt('The location of the group within the LDAP directory.'), 'dn', $aAttributes['dn'], $this->oPage);
$fields[] = new KTStringWidget(_kt('Group Name'), sprintf(_kt('The name the group will enter to gain access to %s. e.g. <strong>accountants</strong>'), APP_NAME), 'ldap_groupname', $aAttributes['cn'], $this->oPage, true);
$fields[] = new KTCheckboxWidget(_kt('Unit Administrators'), _kt('Should all the members of this group be given <strong>unit</strong> administration privileges?'), 'is_unitadmin', false, $this->oPage, false);
$fields[] = new KTCheckboxWidget(_kt('System Administrators'), _kt('Should all the members of this group be given <strong>system</strong> administration privileges?'), 'is_sysadmin', false, $this->oPage, false);
$aTemplateData = array(
'context' => &$this,
'fields' => $fields,
'source' => $oSource,
'search_results' => $aSearchResults,
'dn' => $aAttributes['dn'],
);
return $oTemplate->render($aTemplateData);
}
// }}}
// {{{ _do_createGroupFromSource
function _do_createGroupFromSource() {
$oSource =& KTAuthenticationSource::get($_REQUEST['source_id']);
$dn = KTUtil::arrayGet($_REQUEST, 'dn');
$name = KTUtil::arrayGet($_REQUEST, 'ldap_groupname');
if (empty($name)) { $this->errorRedirectToMain(_kt('You must specify a name for the group.')); }
$is_unitadmin = KTUtil::arrayGet($_REQUEST, 'is_unitadmin', false);
$is_sysadmin = KTUtil::arrayGet($_REQUEST, 'is_sysadmin', false);
$oGroup =& Group::createFromArray(array(
"name" => $name,
"isunitadmin" => $is_unitadmin,
"issysadmin" => $is_sysadmin,
"authenticationdetails" => $dn,
"authenticationsourceid" => $oSource->getId(),
));
if (PEAR::isError($oGroup) || ($oGroup == false)) {
$this->errorRedirectToMain(_kt("failed to create group."));
exit(0);
}
$oAuthenticator = $this->getAuthenticator($oSource);
$oAuthenticator->synchroniseGroup($oGroup);
$this->successRedirectToMain(_kt('Created new group') . ': ' . $oGroup->getName());
exit(0);
}
// }}}
// {{{ autoSignup
function autoSignup($sUsername, $sPassword, $aExtra, $oSource) {
$oAuthenticator =& $this->getAuthenticator($oSource);
$dn = $oAuthenticator->checkSignupPassword($sUsername, $sPassword);
if (PEAR::isError($dn)) {
return;
}
if (!is_string($dn)) {
return;
}
if (empty($dn)) {
return;
}
$aResults = $oAuthenticator->getUser($dn);
$sUserName = $aResults[$this->aAttributes[1]];
$sName = $aResults[$this->aAttributes[0]];
$sEmailAddress = $aResults[$this->aAttributes[4]];
$sMobileNumber = $aResults[$this->aAttributes[5]];
$oUser = User::createFromArray(array(
"Username" => $sUserName,
"Name" => $sName,
"Email" => $sEmailAddress,
"EmailNotification" => true,
"SmsNotification" => false, // FIXME do we auto-act if the user has a mobile?
"MaxSessions" => 3,
"authenticationsourceid" => $oSource->getId(),
"authenticationdetails" => $dn,
"authenticationdetails2" => $sUserName,
"password" => "",
));
if (PEAR::isError($oUser)) {
return;
}
if (!is_a($oUser, 'User')) {
return;
}
$this->_createSignupGroups($dn, $oSource);
return $oUser;
}
function _createSignupGroups($dn, $oSource) {
$config = KTConfig::getSingleton();
$createGroups = $config->get('ldapAuthentication/autoGroupCreation', true);
if (!$createGroups)
{
return;
}
$oAuthenticator =& $this->getAuthenticator($oSource);
$aGroupDNs = $oAuthenticator->getGroups($dn);
if(PEAR::isError($aGroupDNs) || empty($aGroupDNs)) return;
foreach ($aGroupDNs as $sGroupDN) {
$oGroup = Group::getByAuthenticationSourceAndDetails($oSource, $sGroupDN);
if (PEAR::isError($oGroup)) {
$oGroup = $this->_createGroup($sGroupDN, $oSource);
if (PEAR::isError($oGroup)) {
continue;
}
}
$oAuthenticator->synchroniseGroup($oGroup);
}
}
function _createGroup($dn, $oSource) {
$oAuthenticator =& $this->getAuthenticator($oSource);
$aGroupDetails = $oAuthenticator->getGroup($dn);
$name = $aGroupDetails['cn'];
$oGroup =& Group::createFromArray(array(
"name" => $name,
"isunitadmin" => false,
"issysadmin" => false,
"authenticationdetails" => $dn,
"authenticationsourceid" => $oSource->getId(),
));
return $oGroup;
}
}
class KTLDAPBaseAuthenticator extends Authenticator {
/**
* The LDAP server to connect to
*/
var $sLdapServer;
var $iLdapPort;
/**
* The base LDAP DN to perform authentication against
*/
var $sBaseDN;
/**
* The LDAP accessor class
*/
var $oLdap;
function KTLDAPBaseAuthenticator($oSource) {
$this->oSource =& KTUtil::getObject('KTAuthenticationSource', $oSource);
$aConfig = unserialize($this->oSource->getConfig());
$this->sLdapServer = $aConfig['servername'];
$this->iLdapPort = $aConfig['serverport'];
$this->sBaseDN = $aConfig['basedn'];
$this->sSearchUser = $aConfig['searchuser'];
$this->sSearchPassword = $aConfig['searchpassword'];
$this->aObjectClasses = KTUtil::arrayGet($aConfig, 'objectclasses');
if (empty($this->aObjectClasses)) {
$this->aObjectClasses = array('user', 'inetOrgPerson', 'posixAccount');
}
$this->aSearchAttributes = KTUtil::arrayGet($aConfig, 'searchattributes');
if (empty($this->aSearchAttributes)) {
$this->aSearchAttributes = array('cn', 'samaccountname');
}
$this->bTls = KTUtil::arrayGet($aConfig, 'tls', false);
if ($this->iLdapPort + 0 == 0) $this->iLdapPort=389; // some basic validation in case port is blank or 0
require_once('Net/LDAP.php');
$config = array(
'dn' => $this->sSearchUser,
'password' => $this->sSearchPassword,
'host' => $this->sLdapServer,
'base' => $this->sBaseDN,
'options' => array('LDAP_OPT_REFERRALS' => 0),
'tls' => $this->bTls,
'port'=> $this->iLdapPort
);
$this->oLdap =& Net_LDAP::connect($config);
if (PEAR::isError($this->oLdap)) {
return $this->oLdap;
}
}
/**
* Authenticate the user against the LDAP directory
*
* @param string the user to authenticate
* @param string the password to check
* @return boolean true if the password is correct, else false
*/
function checkPassword($oUser, $sPassword) {
$dn = $oUser->getAuthenticationDetails();
$config = array(
'host' => $this->sLdapServer,
'base' => $this->sBaseDN,
'tls' => $this->bTls,
'port'=> $this->iLdapPort
);
$this->oLdap =& Net_LDAP::connect($config);
if (PEAR::isError($this->oLdap)) {
return $this->oLdap;
}
$res = $this->oLdap->reBind($dn, $sPassword);
if(PEAR::isError($res)){
// If bind returns false, do a search on the user using the SAMAccountName which should be unique
$res = $this->authenticateOnLDAPUsername($oUser, $sPassword);
}
return $res;
}
/**
* Search for the user on the username / sAMAccountName and authenticate.
* If authentication is successful then update the users authentication details (dn)
*
* @param object $oUser
* @param string $sPassword
* @return unknown
*/
function authenticateOnLDAPUsername($oUser, $sPassword){
// Reconnect for the search.
$config = array(
'dn' => $this->sSearchUser,
'password' => $this->sSearchPassword,
'host' => $this->sLdapServer,
'base' => $this->sBaseDN,
'options' => array('LDAP_OPT_REFERRALS' => 0),
'tls' => $this->bTls,
'port'=> $this->iLdapPort
);
$this->oLdap =& Net_LDAP::connect($config);
if (PEAR::isError($this->oLdap)) {
return $res;
}
// Get the users sAMAccountName and search LDAP
$sName = $oUser->getAuthenticationDetails2();
if(empty($sName)){
return false;
}
$aResults = $this->searchUsers($sName);
if(PEAR::isError($aResults) || empty($aResults)){
return $aResults;
}
foreach($aResults as $aEntry){
if($aEntry['sAMAccountName'] == $sName){
$newDn = $aEntry['dn'];
break;
}
}
$res = $this->oLdap->reBind($newDn, $sPassword);
if(!PEAR::isError($res) && $res){
// If the connection is successful, update the users authentication details with the new dn.
$oUser->setAuthenticationDetails($newDn);
$oUser->update();
}
return $res;
}
function checkSignupPassword($sUsername, $sPassword) {
if(empty($sPassword) || empty($sUsername)) {
return false;
}
$aUsers = $this->findUser($sUsername);
if (empty($aUsers)) {
return false;
}
if (count($aUsers) !== 1) {
return false;
}
$dn = $aUsers[0]['dn'];
$config = array(
'host' => $this->sLdapServer,
'base' => $this->sBaseDN,
'tls' => $this->bTls,
'port'=> $this->iLdapPort
);
$this->oLdap =& Net_LDAP::connect($config);
if (PEAR::isError($this->oLdap)) {
return $this->oLdap;
}
$res = $this->oLdap->reBind($dn, $sPassword);
if ($res === true) {
return $dn;
}
return $res;
}
function getGroups($dn) {
if (PEAR::isError($this->oLdap)) {
return $this->oLdap;
}
$oEntry = $this->oLdap->getEntry($dn, array('memberOf'));
if (PEAR::isError($oEntry)) {
return $oEntry;
}
$aAttr = $oEntry->attributes();
return $aAttr['memberOf'];
}
/**
* Searched the directory for a specific user
*
* @param string the username to search for
* @param array the attributes to return from the search
* @return array containing the users found
*/
function getUser($dn) {
if (PEAR::isError($this->oLdap)) {
return $this->oLdap;
}
$oEntry = $this->oLdap->getEntry($dn, $this->aAttributes);
if (PEAR::isError($oEntry)) {
return $oEntry;
}
$aAttr = $oEntry->attributes();
$aAttr['dn'] = $oEntry->dn();
global $default;
foreach ($aAttr as $k => $v) {
$default->log->info(sprintf("LDAP: For DN %s, attribute %s value is %s", $dn, $k, print_r($v, true)));
if (is_array($v)) {
$v = array_shift($v);
}
$aRet[strtolower($k)] = $v;
}
return $aRet;
}
/**
* Searches the LDAP directory for users matching the supplied search string.
*
* @param string the username to search for
* @param array the attributes to return from the search
* @return array containing the users found
*/
function searchUsers($sSearch) {
global $default;
if (PEAR::isError($this->oLdap)) {
return $this->oLdap;
}
$aParams = array(
'scope' => 'sub',
'attributes' => array('cn', 'dn', 'samaccountname'),
);
$rootDn = $this->sBaseDN;
if (is_array($rootDn)) {
$rootDn = join(",", $rootDn);
}
$sObjectClasses = "|";
foreach ($this->aObjectClasses as $sObjectClass) {
$sObjectClasses .= sprintf('(objectClass=%s)', trim($sObjectClass));
}
$sSearchAttributes = "|";
foreach ($this->aSearchAttributes as $sSearchAttribute) {
$sSearchAttributes .= sprintf('(%s=*%s*)', trim($sSearchAttribute), $sSearch);
}
$sFilter = sprintf('(&(%s)(%s))', $sObjectClasses, $sSearchAttributes);
$default->log->debug("Search filter is: " . $sFilter);
$oResult = $this->oLdap->search($rootDn, $sFilter, $aParams);
if (PEAR::isError($oResult)) {
return $oResult;
}
$aRet = array();
foreach($oResult->entries() as $oEntry) {
$aAttr = $oEntry->attributes();
$aAttr['dn'] = $oEntry->dn();
$aRet[] = $aAttr;
}
return $aRet;
}
function findUser($sUsername) {
global $default;
if (PEAR::isError($this->oLdap)) {
return $this->oLdap;
}
$aParams = array(
'scope' => 'sub',
'attributes' => array('cn', 'dn', 'samaccountname'),
);
$rootDn = $this->sBaseDN;
if (is_array($rootDn)) {
$rootDn = join(",", $rootDn);
}
$sObjectClasses = "|";
foreach ($this->aObjectClasses as $sObjectClass) {
$sObjectClasses .= sprintf('(objectClass=%s)', trim($sObjectClass));
}
$sSearchAttributes = "|";
foreach ($this->aSearchAttributes as $sSearchAttribute) {
$sSearchAttributes .= sprintf('(%s=%s)', trim($sSearchAttribute), $sUsername);
}
$sFilter = sprintf('(&(%s)(%s))', $sObjectClasses, $sSearchAttributes);
$default->log->debug("Search filter is: " . $sFilter);
$oResult = $this->oLdap->search($rootDn, $sFilter, $aParams);
if (PEAR::isError($oResult)) {
return $oResult;
}
$aRet = array();
foreach($oResult->entries() as $oEntry) {
$aAttr = $oEntry->attributes();
$aAttr['dn'] = $oEntry->dn();
$aRet[] = $aAttr;
}
return $aRet;
}
function searchGroups($sSearch) {
if (PEAR::isError($this->oLdap)) {
return $this->oLdap;
}
$aParams = array(
'scope' => 'sub',
'attributes' => array('cn', 'dn', 'displayName'),
);
$rootDn = $oAuthenticator->sBaseDN;
if (is_array($rootDn)) {
$rootDn = join(",", $rootDn);
}
$sFilter = sprintf('(&(objectClass=group)(cn=*%s*))', $sSearch);
$oResults = $this->oLdap->search($rootDn, $sFilter, $aParams);
if(PEAR::isError($oResults)){
return $oResults;
}
$aRet = array();
foreach($oResults->entries() as $oEntry) {
$aAttr = $oEntry->attributes();
$aAttr['dn'] = $oEntry->dn();
$aRet[] = $aAttr;
}
return $aRet;
}
function getGroup($dn, $aAttributes = null) {
if (empty($aAttributes)) {
$aAttributes = array('cn');
}
if (PEAR::isError($this->oLdap)) {
return $this->oLdap;
}
$oEntry = $this->oLdap->getEntry($dn, $aAttributes);
if (PEAR::isError($oEntry)) {
return $oEntry;
}
$aAttr = $oEntry->attributes();
$aAttr['dn'] = $oEntry->dn();
return $aAttr;
}
function synchroniseGroup($oGroup) {
$oGroup =& KTUtil::getObject('Group', $oGroup);
$dn = $oGroup->getAuthenticationDetails();
$aAttr = $this->getGroup($dn, array('member'));
if (PEAR::isError($aAttr)) {
return $aAttr;
}
$aMembers = KTUtil::arrayGet($aAttr, 'member', array());
if (!is_array($aMembers)) {
$aMembers = array($aMembers);
}
$aUserIds = array();
foreach ($aMembers as $sMember) {
$iUserId = User::getByAuthenticationSourceAndDetails($this->oSource, $sMember, array('ids' => true));
if (PEAR::isError($iUserId)) {
continue;
}
$aUserIds[] = $iUserId;
}
$oGroup->setMembers($aUserIds);
}
}
?>