This plugin provides an interface to query an LDAP directory and display the results in a TWiki topic. It can also be used to turn WikiNames from the LdapContrib database dynamic, presenting a LDAP-generated summary when hovering over them.
It is a complete rewrite of the TWiki:Plugins.LdapPlugin by TWiki:Main.GerardHickey
to provide greater flexibility and performance based on the TWiki:Plugins.LdapContrib
package.
%LDAP{...}% and %LDAPUSERS{...}% are provided by this plug-in
%LDAP{"(objectClass=posixAccount)" base="(ou=people)" limit="10" header="| *Nr* | *Name* | *Mail* | *Photo* |$n" format="| $index | $cn | $mail | <img src=\"$jpegPhoto\" alt=\"$cn\" title=\"$cn\" width=\"100px\"> |" footer="$n<br/><font color='red'>$count users</font>" sort="cn" }% %LDAP{"(objectClass=posixGroup)" base="(ou=group)" limit="10" header="| *Nr* | *Group* | *Members* |$n" format="| $index | $cn | $memberUid |" sort="cn" }% %LDAPUSERS{limit="10"}%
The LdapNgPlugin will use the default configuration of the LdapContrib in your LocalSite.cfg
file, that is
$TWiki::cfg{Ldap}{Host}
(overridable per query)
$TWiki::cfg{Ldap}{Port}
(overridable per query)
$TWiki::cfg{Ldap}{Base}
(overridable per query)
$TWiki::cfg{Ldap}{Version}
(overridable per query)
$TWiki::cfg{Ldap}{SSL}
(overridable per query)
$TWiki::cfg{Ldap}{BindDN}
$TWiki::cfg{Ldap}{BindPasswd}
In addition, the following configuration items are there. All are optional and have no problem not setting.
$TWiki::cfg{Plugins}{LdapNgPlugin}{UseDefaultServer}
host
, port
, version
, ssl
parameters and connects to the LDAP server specified by the LdapContrib configuration. The goal is to share an LDAP connection with other TWiki features using it. Please be noted the LDAP connection shared with others is not automatically destroyed. You need to make sure it's destroyed when a TWiki session is destroyed. Otherwise, if this plug-in is used in Fasc CGI or mod_perl, LDAP connections may accumulate.
$TWiki::cfg{Plugins}{LdapNgPlugin}{DisableLDAPUSERS}
$TWiki::cfg{Plugins}{LdapNgPlugin}{Helper}
$TWiki::cfg{Plugins}{LdapNgPlugin}{CacheBlob}
$TWiki::cfg{Plugins}{LdapNgPlugin}{AutoClear}
format
, header
, and footer
parameters, $attribute
which is not defined in a record ends up being literal $attribute
in output. You need to put it in the clear
parameter (e.g. clear="$telephonenumber,$mobile"
) to suppress literal $attribute
from showing up. {Plugins}{LdapNgPlugin}{AutoClear}
true makes the clear
parameter unnecessary. However, this causes slight incompatibility in some cases. You may put %LDAP{...}%
inside a tag and put $something
for the outer tag. if {Plugins}{LdapNgPlugin}{AutoClear}
is true, you need to put it as $dollarsomething
.
Also, see the following configuration flags for the dynamic WikiNames feature:
$TWiki::cfg{Plugins}{LdapNgPlugin}{DynamicWikiNames}{Enabled}
$TWiki::cfg{Plugins}{LdapNgPlugin}{DynamicWikiNames}{RequireLoggedIn}
$TWiki::cfg{Plugins}{LdapNgPlugin}{DynamicWikiNames}{Filter}
objectClass=posixAccount
$TWiki::cfg{Plugins}{LdapNgPlugin}{DynamicWikiNames}{Format}
|Name|$givenName $sn|$n|Mail|$mail|
See example on dynamic WikiNames further down.
%LDAP{...}% basically does a single LDAP query as specified. For practical use, that may be insufficient in two aspects.
To cope with these issues, you can have your LdapNgPlugin helper class by having the following line on lib/LocalSite.cfg.
$TWiki::cfg{Plugins}{LdapNgPlugin}{Helper} = 'TWiki::Contrib::MyLdapNgPluginHelper';A helper class would be defined as follows:
package TWiki::Contrib::MyLdapNgPluginHelper; sub lookupHelper { my ($class, $ldap, $filter, $params) = @_; ...Currently
lookupHelper
is the only function expected in a LdapNgPlugin helper class.
$class gets the name of the class - "TWiki::Contrib::MyLdapNgPluginHelper" in this example.
$filter gets the filter
parameter of %LDAP{...}%.
$params is a hash reference having values of the following parameters of %LDAP{...}%.
Name | Type | Default |
---|---|---|
scope |
string | sub |
skip |
number | 0 |
limit |
number | 0 |
sort |
array reference | [] |
reverse |
boolean | false |
It's supposed to return a string or an array reference depending on situation.
Given that the following facts are true:
jdoe
with WikiName JohnDoe
is present in the LdapContrib database.
jdoe
is present in your LDAP server.
jdoe
includes the following fields:
... objectClass=user cn: jdoe name: John Robert Doe mail: john.doe@example.com ...
/lib/LocalSite.cfg
:
$TWiki::cfg{Plugins}{LdapNgPlugin}{DynamicWikiNames}{Enabled} = 1; $TWiki::cfg{Plugins}{LdapNgPlugin}{DynamicWikiNames}{RequireLoggedIn} = 1; $TWiki::cfg{Plugins}{LdapNgPlugin}{DynamicWikiNames}{Filter} = 'objectClass=user'; $TWiki::cfg{Plugins}{LdapNgPlugin}{DynamicWikiNames}{Format} = '<a href="https://phonebook.mycompany.com/?user$cn">Go to phonebook »</a>$n|Name|$name|$n|Mail|$mail|';
This should yield the following result (note: the mouse cursor is hidden in the picture):
LdapNgPlugin.zip
in your twiki installation directory. Content: File: | Description: |
---|---|
data/TWiki/LdapNgPlugin.txt | |
data/TWiki/VarLDAP.txt | |
data/TWiki/VarLDAPUSERS.txt | |
lib/TWiki/Plugins/LdapNgPlugin/Core.pm | |
lib/TWiki/Plugins/LdapNgPlugin/Config.spec | |
lib/TWiki/Plugins/LdapNgPlugin.pm | |
pub/TWiki/LdapNgPlugin/DynamicWikiNames.css | |
pub/TWiki/LdapNgPlugin/DynamicWikiNameExample.png | |
pub/TWiki/LdapNgPlugin/DynamicWikiNames.js | |
pub/TWiki/LdapNgPlugin/spinner.gif |
LdapNgPlugin_installer.pl
to automatically check and install other TWiki modules that this module depends on. You can also do this step manually.
configure
in your TWiki installation, and enable the plugin in the {Plugins} section.
Name | Version | Description |
---|---|---|
TWiki::Plugins | >=1.1 | TWiki Dakar release. |
TWiki::Contrib::LdapContrib | >=2.0 | Required |
Unicode::MapUTF8 | >=1.11 | Required for Perl prior to 5.8. Download from CPAN:Unicode::MapUTF8![]() |
TWiki::Plugins::JQueryPlugin | >=1.0 | Required for the dynamic WikiNames option |
This work was partly funded by Spanlink Communications.
Plugin Author: | TWiki:Main.MichaelDaum![]() |
Copyright: | © 2006-2007 Michael Daum http://wikiring.de![]() © 2006-2014 TWiki:Main.TWikiContributors ![]() |
License: | GPL (GNU General Public License![]() |
Plugin Version: | 2013-03-25 |
2014-05-19: | TWikibug:Item7496![]() |
2014-03-25: | TWikibug:Item7469![]() |
2013-02-01: | TWikibug:Item7134![]() |
2012-12-28: | TWikibug:Item7108![]() {Plugins}{LdapNgPlugin}{AutoClear} introduced to make the clear parameter unnecessary. Documentation update - VarLDAP and VarLDAPUSERS are introduced |
2012-10-17: | TWikibug:Item6986![]() ifnull parameter has been renamed to default |
2012-10-15: | TWikibug:Item6986![]() |
2011-01-14: | TWikibug:Item6530![]() |
2010-04-25: | TWikibug:Item6433![]() |
13 Nov 2007: | fixed $nop |
01 Oct 2007: | added LDAPUSERS, lined up to changes in LdapContrib-2.0 |
04 June 2007: | don't convert from/to utf8 if the site charset is already utf8 |
18 Dec 2006: | added support for addresses as specified in RFC4517 |
04 Dec 2006: | map utf8 strings from LDAP to the site's encoding and vice versa |
30 Nov 2006: | replaced commonTagsHandler with a properly registered LDAP tag |
31 Aug 2006: | added NO_PREFS_IN_TOPIC |
19 Jul 2006: | public release |
25 April 2006: | Initial (internal) version |
Perl Version: | 5.8 |
TWiki:Plugins/Benchmark![]() |
GoodStyle nn%, FormattedSearch nn%, LdapNgPlugin nn% |
Plugin Home: | TWiki:Plugins/LdapNgPlugin![]() |
Feedback: | TWiki:Plugins/LdapNgPluginDev![]() |
Related Topics: TWikiPreferences, TWikiPlugins, LdapContrib