1 ;;; url-ldap.el --- LDAP Uniform Resource Locator retrieval code
3 ;; Copyright (C) 1998, 1999, 2004, 2005, 2006 Free Software Foundation, Inc.
5 ;; Keywords: comm, data, processes
7 ;; This file is part of GNU Emacs.
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; GNU Emacs 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 General Public License for more details.
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING. If not, write to the
21 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 ;; Boston, MA 02110-1301, USA.
32 (autoload 'tls-certificate-information
"tls")
34 ;; This has been implemented from RFC2255 'The LDAP URL Format' (Dec 1997)
36 ;; basic format is: ldap://host:port/dn?attributes?scope?filter?extensions
39 ;; ldap://ldap.itd.umich.edu/cn%3Dumbflabmanager%2C%20ou%3DUser%20Groups%2C%20ou%3DGroups%2C%20o%3DUniversity%20of%20Michigan%2C%20c%3DUS
40 ;; ldap://ldap.itd.umich.edu/o=University%20of%20Michigan,c=US
42 ;; For simple queries, I have verified compatibility with Netscape
43 ;; Communicator v4.5 under GNU/Linux.
45 ;; For anything _useful_ though, like specifying the attributes,
46 ;; scope, filter, or extensions, netscape claims the URL format is
47 ;; unrecognized. So I don't think it supports anything other than the
48 ;; defaults (scope=base,attributes=*,filter=(objectClass=*)
50 (defconst url-ldap-default-port
389 "Default LDAP port.")
51 (defalias 'url-ldap-expand-file-name
'url-default-expander
)
53 (defvar url-ldap-pretty-names
55 ("objectclass" .
"Object Class")
56 ("o" .
"Organization")
57 ("ou" .
"Organizational Unit")
60 ("givenname" .
"First Name")
64 ("postalcode" .
"ZIP Code")
65 ("telephonenumber" .
"Phone Number")
66 ("facsimiletelephonenumber" .
"Fax")
67 ("postaladdress" .
"Mailing Address")
68 ("description" .
"Notes"))
69 "*An assoc list mapping LDAP attribute names to pretty descriptions of them.")
71 (defvar url-ldap-attribute-formatters
72 '(("mail" .
(lambda (x) (format "<a href='mailto:%s'>%s</a>" x x
)))
73 ("owner" . url-ldap-dn-formatter
)
74 ("creatorsname" . url-ldap-dn-formatter
)
75 ("jpegphoto" . url-ldap-image-formatter
)
76 ("usercertificate" . url-ldap-certificate-formatter
)
77 ("modifiersname" . url-ldap-dn-formatter
)
78 ("namingcontexts" . url-ldap-dn-formatter
)
79 ("defaultnamingcontext" . url-ldap-dn-formatter
)
80 ("member" . url-ldap-dn-formatter
))
81 "*An assoc list mapping LDAP attribute names to pretty formatters for them.")
83 (defsubst url-ldap-attribute-pretty-name
(n)
84 (or (cdr-safe (assoc (downcase n
) url-ldap-pretty-names
)) n
))
86 (defsubst url-ldap-attribute-pretty-desc
(n v
)
87 (if (string-match "^\\([^;]+\\);" n
)
88 (setq n
(match-string 1 n
)))
89 (funcall (or (cdr-safe (assoc (downcase n
) url-ldap-attribute-formatters
)) 'identity
) v
))
91 (defun url-ldap-dn-formatter (dn)
93 (url-hexify-string dn
)
96 (defun url-ldap-certificate-formatter (data)
100 (let ((vals (if (fboundp 'ssl-certificate-information
)
101 (ssl-certificate-information data
)
102 (tls-certificate-information data
))))
104 "<b>Unable to parse certificate</b>"
105 (concat "<table border=0>\n"
108 (format "<tr><td>%s</td><td>%s</td></tr>\n" (car ava
) (cdr ava
)))
112 (defun url-ldap-image-formatter (data)
113 (format "<img alt='JPEG Photo' src='data:image/jpeg;base64,%s'>"
114 (url-hexify-string (base64-encode-string data
))))
117 (defun url-ldap (url)
118 "Perform an LDAP search specified by URL.
119 The return value is a buffer displaying the search results in HTML.
120 URL can be a URL string, or a URL vector of the type returned by
121 `url-generic-parse-url'."
123 (setq url
(url-generic-parse-url (url-unhex-string url
)))
124 (if (not (vectorp url
))
125 (error "Argument is not a valid URL")))
127 (set-buffer (generate-new-buffer " *url-ldap*"))
128 (setq url-current-object url
)
129 (insert "Content-type: text/html\r\n\r\n")
130 (if (not (fboundp 'ldap-search-internal
))
133 " <title>LDAP Not Supported</title>\n"
134 " <base href='" (url-recreate-url url
) "'>\n"
137 " <h1>LDAP Not Supported</h1>\n"
139 " This version of Emacs does not support LDAP.\n"
144 (data (url-filename url
))
145 (host (url-host url
))
146 (port (url-port url
))
154 ;; Get rid of leading /
155 (if (string-match "^/" data
)
156 (setq data
(substring data
1)))
158 (setq data
(mapcar (lambda (x) (if (/= (length x
) 0) x nil
)) (split-string data
"\\?"))
159 base-object
(nth 0 data
)
160 attributes
(nth 1 data
)
163 extensions
(nth 4 data
))
165 ;; fill in the defaults
166 (setq base-object
(url-unhex-string (or base-object
""))
167 scope
(intern (url-unhex-string (or scope
"base")))
168 filter
(url-unhex-string (or filter
"(objectClass=*)")))
170 (if (not (memq scope
'(base one sub
)))
171 (error "Malformed LDAP URL: Unknown scope: %S" scope
))
173 ;; Convert to the internal LDAP support scoping names.
174 (setq scope
(cdr (assq scope
'((base . base
) (one . onelevel
) (sub . subtree
)))))
177 (setq attributes
(mapcar 'url-unhex-string
(split-string attributes
","))))
179 ;; Parse out the exentions
181 (setq extensions
(mapcar (lambda (ext)
182 (if (string-match "\\([^=]*\\)=\\(.*\\)" ext
)
183 (cons (match-string 1 ext
) (match-string 2 ext
))
185 (split-string extensions
","))
186 extensions
(mapcar (lambda (ext)
187 (cons (url-unhex-string (car ext
))
188 (url-unhex-string (cdr ext
))))
191 (setq binddn
(cdr-safe (or (assoc "bindname" extensions
)
192 (assoc "!bindname" extensions
))))
194 ;; Now, let's actually do something with it.
195 (setq results
(cdr (ldap-search-internal
196 (list 'host
(concat host
":" (number-to-string port
))
198 'attributes attributes
205 " <title>LDAP Search Results</title>\n"
206 " <base href='" (url-recreate-url url
) "'>\n"
209 " <h1>" (int-to-string (length results
)) " matches</h1>\n")
213 " <table border=1>\n")
215 (if (= (length (cdr attr
)) 1)
216 ;; single match, easy
218 (url-ldap-attribute-pretty-name (car attr
))
220 (url-ldap-attribute-pretty-desc (car attr
) (car (cdr attr
)))
222 ;; Multiple matches, slightly uglier
224 (format " <td valign=top>")
225 (url-ldap-attribute-pretty-name (car attr
)) "</td><td>"
226 (mapconcat (lambda (x)
227 (url-ldap-attribute-pretty-desc (car attr
) x
))
233 (insert " </table>\n"))
243 ;; arch-tag: 6230e21c-41ae-4174-bd83-82c835676fc8
244 ;;; url-ldap.el ends here