]> code.delx.au - gnu-emacs/blob - lisp/net/eudc.el
Add 2012 to FSF copyright years for Emacs files (do not merge to trunk)
[gnu-emacs] / lisp / net / eudc.el
1 ;;; eudc.el --- Emacs Unified Directory Client
2
3 ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
4 ;; 2007, 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
5
6 ;; Author: Oscar Figueiredo <oscar@cpe.fr>
7 ;; Maintainer: Pavel Janík <Pavel@Janik.cz>
8 ;; Keywords: comm
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
16
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24
25 ;;; Commentary:
26 ;; This package provides a common interface to query directory servers using
27 ;; different protocols such as LDAP, CCSO PH/QI or BBDB. Queries can be
28 ;; made through an interactive form or inline. Inline query strings in
29 ;; buffers are expanded with appropriately formatted query results
30 ;; (especially used to expand email addresses in message buffers). EUDC
31 ;; also interfaces with the BBDB package to let you register query results
32 ;; into your own BBDB database.
33
34 ;;; Usage:
35 ;; EUDC comes with an extensive documentation, please refer to it.
36 ;;
37 ;; The main entry points of EUDC are:
38 ;; `eudc-query-form': Query a directory server from a query form
39 ;; `eudc-expand-inline': Query a directory server for the e-mail address
40 ;; of the name before cursor and insert it in the
41 ;; buffer
42 ;; `eudc-get-phone': Get a phone number from a directory server
43 ;; `eudc-get-email': Get an e-mail address from a directory server
44 ;; `eudc-customize': Customize various aspects of EUDC
45
46 ;;; Code:
47
48 (require 'wid-edit)
49
50 (eval-and-compile
51 (if (not (fboundp 'make-overlay))
52 (require 'overlay))
53 (if (not (fboundp 'unless))
54 (require 'cl)))
55
56 (unless (fboundp 'custom-menu-create)
57 (autoload 'custom-menu-create "cus-edit"))
58
59 (require 'eudc-vars)
60
61
62
63 ;;{{{ Internal cooking
64
65 ;;{{{ Internal variables and compatibility tricks
66
67 (defvar eudc-form-widget-list nil)
68
69 (defvar eudc-mode-map
70 (let ((map (make-sparse-keymap)))
71 (define-key map "q" 'kill-this-buffer)
72 (define-key map "x" 'kill-this-buffer)
73 (define-key map "f" 'eudc-query-form)
74 (define-key map "b" 'eudc-try-bbdb-insert)
75 (define-key map "n" 'eudc-move-to-next-record)
76 (define-key map "p" 'eudc-move-to-previous-record)
77 map))
78 (set-keymap-parent eudc-mode-map widget-keymap)
79
80 (defvar mode-popup-menu)
81
82 ;; List of known servers
83 ;; Alist of (SERVER . PROTOCOL)
84 (defvar eudc-server-hotlist nil)
85
86 ;; List of variables that have server- or protocol-local bindings
87 (defvar eudc-local-vars nil)
88
89 ;; Protocol local. Query function
90 (defvar eudc-query-function nil)
91
92 ;; Protocol local. A function that retrieves a list of valid attribute names
93 (defvar eudc-list-attributes-function nil)
94
95 ;; Protocol local. A mapping between EUDC attribute names and corresponding
96 ;; protocol specific names. The following names are defined by EUDC and may be
97 ;; included in that list: `name' , `firstname', `email', `phone'
98 (defvar eudc-protocol-attributes-translation-alist nil)
99
100 ;; Protocol local. Mapping between protocol attribute names and BBDB field
101 ;; names
102 (defvar eudc-bbdb-conversion-alist nil)
103
104 ;; Protocol/Server local. Hook called upon switching to that server
105 (defvar eudc-switch-to-server-hook nil)
106
107 ;; Protocol/Server local. Hook called upon switching from that server
108 (defvar eudc-switch-from-server-hook nil)
109
110 ;; Protocol local. Whether the protocol supports queries with no specified
111 ;; attribute name
112 (defvar eudc-protocol-has-default-query-attributes nil)
113
114 (defun eudc-cadr (obj)
115 (car (cdr obj)))
116
117 (defun eudc-cdar (obj)
118 (cdr (car obj)))
119
120 (defun eudc-caar (obj)
121 (car (car obj)))
122
123 (defun eudc-cdaar (obj)
124 (cdr (car (car obj))))
125
126 (defun eudc-plist-member (plist prop)
127 "Return t if PROP has a value specified in PLIST."
128 (if (not (= 0 (% (length plist) 2)))
129 (error "Malformed plist"))
130 (catch 'found
131 (while plist
132 (if (eq prop (car plist))
133 (throw 'found t))
134 (setq plist (cdr (cdr plist))))
135 nil))
136
137 ;; Emacs' plist-get lacks third parameter
138 (defun eudc-plist-get (plist prop &optional default)
139 "Extract a value from a property list.
140 PLIST is a property list, which is a list of the form
141 \(PROP1 VALUE1 PROP2 VALUE2...). This function returns the value
142 corresponding to the given PROP, or DEFAULT if PROP is not
143 one of the properties on the list."
144 (if (eudc-plist-member plist prop)
145 (plist-get plist prop)
146 default))
147
148 (defun eudc-lax-plist-get (plist prop &optional default)
149 "Extract a value from a lax property list.
150
151 PLIST is a lax property list, which is a list of the form (PROP1
152 VALUE1 PROP2 VALUE2...), where comparisons between properties are done
153 using `equal' instead of `eq'. This function returns the value
154 corresponding to PROP, or DEFAULT if PROP is not one of the
155 properties on the list."
156 (if (not (= 0 (% (length plist) 2)))
157 (error "Malformed plist"))
158 (catch 'found
159 (while plist
160 (if (equal prop (car plist))
161 (throw 'found (car (cdr plist))))
162 (setq plist (cdr (cdr plist))))
163 default))
164
165 (if (not (fboundp 'split-string))
166 (defun split-string (string &optional pattern)
167 "Return a list of substrings of STRING which are separated by PATTERN.
168 If PATTERN is omitted, it defaults to \"[ \\f\\t\\n\\r\\v]+\"."
169 (or pattern
170 (setq pattern "[ \f\t\n\r\v]+"))
171 (let (parts (start 0))
172 (when (string-match pattern string 0)
173 (if (> (match-beginning 0) 0)
174 (setq parts (cons (substring string 0 (match-beginning 0)) nil)))
175 (setq start (match-end 0))
176 (while (and (string-match pattern string start)
177 (> (match-end 0) start))
178 (setq parts (cons (substring string start (match-beginning 0)) parts)
179 start (match-end 0))))
180 (nreverse (if (< start (length string))
181 (cons (substring string start) parts)
182 parts)))))
183
184 (defun eudc-replace-in-string (str regexp newtext)
185 "Replace all matches in STR for REGEXP with NEWTEXT.
186 Value is the new string."
187 (let ((rtn-str "")
188 (start 0)
189 match prev-start)
190 (while (setq match (string-match regexp str start))
191 (setq prev-start start
192 start (match-end 0)
193 rtn-str
194 (concat rtn-str
195 (substring str prev-start match)
196 newtext)))
197 (concat rtn-str (substring str start))))
198
199 ;;}}}
200
201 ;;{{{ Server and Protocol Variable Routines
202
203 (defun eudc-server-local-variable-p (var)
204 "Return non-nil if VAR has server-local bindings."
205 (eudc-plist-member (get var 'eudc-locals) 'server))
206
207 (defun eudc-protocol-local-variable-p (var)
208 "Return non-nil if VAR has protocol-local bindings."
209 (eudc-plist-member (get var 'eudc-locals) 'protocol))
210
211 (defun eudc-default-set (var val)
212 "Set the EUDC default value of VAR to VAL.
213 The current binding of VAR is not changed."
214 (put var 'eudc-locals
215 (plist-put (get var 'eudc-locals) 'default val))
216 (add-to-list 'eudc-local-vars var))
217
218 (defun eudc-protocol-set (var val &optional protocol)
219 "Set the PROTOCOL-local binding of VAR to VAL.
220 If omitted PROTOCOL defaults to the current value of `eudc-protocol'.
221 The current binding of VAR is changed only if PROTOCOL is omitted."
222 (if (eq 'unbound (eudc-variable-default-value var))
223 (eudc-default-set var (symbol-value var)))
224 (let* ((eudc-locals (get var 'eudc-locals))
225 (protocol-locals (eudc-plist-get eudc-locals 'protocol)))
226 (setq protocol-locals (plist-put protocol-locals (or protocol
227 eudc-protocol) val))
228 (setq eudc-locals
229 (plist-put eudc-locals 'protocol protocol-locals))
230 (put var 'eudc-locals eudc-locals)
231 (add-to-list 'eudc-local-vars var)
232 (unless protocol
233 (eudc-update-variable var))))
234
235 (defun eudc-server-set (var val &optional server)
236 "Set the SERVER-local binding of VAR to VAL.
237 If omitted SERVER defaults to the current value of `eudc-server'.
238 The current binding of VAR is changed only if SERVER is omitted."
239 (if (eq 'unbound (eudc-variable-default-value var))
240 (eudc-default-set var (symbol-value var)))
241 (let* ((eudc-locals (get var 'eudc-locals))
242 (server-locals (eudc-plist-get eudc-locals 'server)))
243 (setq server-locals (plist-put server-locals (or server
244 eudc-server) val))
245 (setq eudc-locals
246 (plist-put eudc-locals 'server server-locals))
247 (put var 'eudc-locals eudc-locals)
248 (add-to-list 'eudc-local-vars var)
249 (unless server
250 (eudc-update-variable var))))
251
252
253 (defun eudc-set (var val)
254 "Set the most local (server, protocol or default) binding of VAR to VAL.
255 The current binding of VAR is also set to VAL"
256 (cond
257 ((not (eq 'unbound (eudc-variable-server-value var)))
258 (eudc-server-set var val))
259 ((not (eq 'unbound (eudc-variable-protocol-value var)))
260 (eudc-protocol-set var val))
261 (t
262 (eudc-default-set var val)))
263 (set var val))
264
265 (defun eudc-variable-default-value (var)
266 "Return the default binding of VAR.
267 Return `unbound' if VAR has no EUDC default value."
268 (let ((eudc-locals (get var 'eudc-locals)))
269 (if (and (boundp var)
270 eudc-locals)
271 (eudc-plist-get eudc-locals 'default 'unbound)
272 'unbound)))
273
274 (defun eudc-variable-protocol-value (var &optional protocol)
275 "Return the value of VAR local to PROTOCOL.
276 Return `unbound' if VAR has no value local to PROTOCOL.
277 PROTOCOL defaults to `eudc-protocol'"
278 (let* ((eudc-locals (get var 'eudc-locals))
279 protocol-locals)
280 (if (not (and (boundp var)
281 eudc-locals
282 (eudc-plist-member eudc-locals 'protocol)))
283 'unbound
284 (setq protocol-locals (eudc-plist-get eudc-locals 'protocol))
285 (eudc-lax-plist-get protocol-locals
286 (or protocol
287 eudc-protocol) 'unbound))))
288
289 (defun eudc-variable-server-value (var &optional server)
290 "Return the value of VAR local to SERVER.
291 Return `unbound' if VAR has no value local to SERVER.
292 SERVER defaults to `eudc-server'"
293 (let* ((eudc-locals (get var 'eudc-locals))
294 server-locals)
295 (if (not (and (boundp var)
296 eudc-locals
297 (eudc-plist-member eudc-locals 'server)))
298 'unbound
299 (setq server-locals (eudc-plist-get eudc-locals 'server))
300 (eudc-lax-plist-get server-locals
301 (or server
302 eudc-server) 'unbound))))
303
304 (defun eudc-update-variable (var)
305 "Set the value of VAR according to its locals.
306 If the VAR has a server- or protocol-local value corresponding
307 to the current `eudc-server' and `eudc-protocol' then it is set
308 accordingly. Otherwise it is set to its EUDC default binding"
309 (let (val)
310 (cond
311 ((not (eq 'unbound (setq val (eudc-variable-server-value var))))
312 (set var val))
313 ((not (eq 'unbound (setq val (eudc-variable-protocol-value var))))
314 (set var val))
315 ((not (eq 'unbound (setq val (eudc-variable-default-value var))))
316 (set var val)))))
317
318 (defun eudc-update-local-variables ()
319 "Update all EUDC variables according to their local settings."
320 (interactive)
321 (mapcar 'eudc-update-variable eudc-local-vars))
322
323 (eudc-default-set 'eudc-query-function nil)
324 (eudc-default-set 'eudc-list-attributes-function nil)
325 (eudc-default-set 'eudc-protocol-attributes-translation-alist nil)
326 (eudc-default-set 'eudc-bbdb-conversion-alist nil)
327 (eudc-default-set 'eudc-switch-to-server-hook nil)
328 (eudc-default-set 'eudc-switch-from-server-hook nil)
329 (eudc-default-set 'eudc-protocol-has-default-query-attributes nil)
330 (eudc-default-set 'eudc-attribute-display-method-alist nil)
331
332 ;;}}}
333
334
335 ;; Add PROTOCOL to the list of supported protocols
336 (defun eudc-register-protocol (protocol)
337 (unless (memq protocol eudc-supported-protocols)
338 (setq eudc-supported-protocols
339 (cons protocol eudc-supported-protocols))
340 (put 'eudc-protocol 'custom-type
341 `(choice :menu-tag "Protocol"
342 ,@(mapcar (lambda (s)
343 (list 'string ':tag (symbol-name s)))
344 eudc-supported-protocols))))
345 (or (memq protocol eudc-known-protocols)
346 (setq eudc-known-protocols
347 (cons protocol eudc-known-protocols))))
348
349
350 (defun eudc-translate-query (query)
351 "Translate attribute names of QUERY.
352 The translation is done according to
353 `eudc-protocol-attributes-translation-alist'."
354 (if eudc-protocol-attributes-translation-alist
355 (mapcar '(lambda (attribute)
356 (let ((trans (assq (car attribute)
357 (symbol-value eudc-protocol-attributes-translation-alist))))
358 (if trans
359 (cons (cdr trans) (cdr attribute))
360 attribute)))
361 query)
362 query))
363
364 (defun eudc-translate-attribute-list (list)
365 "Translate a list of attribute names LIST.
366 The translation is done according to
367 `eudc-protocol-attributes-translation-alist'."
368 (if eudc-protocol-attributes-translation-alist
369 (let (trans)
370 (mapcar '(lambda (attribute)
371 (setq trans (assq attribute
372 (symbol-value eudc-protocol-attributes-translation-alist)))
373 (if trans
374 (cdr trans)
375 attribute))
376 list))
377 list))
378
379 (defun eudc-select (choices beg end)
380 "Choose one from CHOICES using a completion.
381 BEG and END delimit the text which is to be replaced."
382 (let ((replacement))
383 (setq replacement
384 (completing-read "Multiple matches found; choose one: "
385 (mapcar 'list choices)))
386 (delete-region beg end)
387 (insert replacement)))
388
389 (defun eudc-query (query &optional return-attributes no-translation)
390 "Query the current directory server with QUERY.
391 QUERY is a list of cons cells (ATTR . VALUE) where ATTR is an attribute
392 name and VALUE the corresponding value.
393 If NO-TRANSLATION is non-nil, ATTR is translated according to
394 `eudc-protocol-attributes-translation-alist'.
395 RETURN-ATTRIBUTES is a list of attributes to return defaulting to
396 `eudc-default-return-attributes'."
397 (unless eudc-query-function
398 (error "Don't know how to perform the query"))
399 (if no-translation
400 (funcall eudc-query-function query (or return-attributes
401 eudc-default-return-attributes))
402
403 (funcall eudc-query-function
404 (eudc-translate-query query)
405 (cond
406 (return-attributes
407 (eudc-translate-attribute-list return-attributes))
408 ((listp eudc-default-return-attributes)
409 (eudc-translate-attribute-list eudc-default-return-attributes))
410 (t
411 eudc-default-return-attributes)))))
412
413 (defun eudc-format-attribute-name-for-display (attribute)
414 "Format a directory attribute name for display.
415 ATTRIBUTE is looked up in `eudc-user-attribute-names-alist' and replaced
416 by the corresponding user name if any. Otherwise it is capitalized and
417 underscore characters are replaced by spaces."
418 (let ((match (assq attribute eudc-user-attribute-names-alist)))
419 (if match
420 (cdr match)
421 (capitalize
422 (mapconcat 'identity
423 (split-string (symbol-name attribute) "_")
424 " ")))))
425
426 (defun eudc-print-attribute-value (field)
427 "Insert the value of the directory FIELD at point.
428 The directory attribute name in car of FIELD is looked up in
429 `eudc-attribute-display-method-alist' and the corresponding method,
430 if any, is called to print the value in cdr of FIELD."
431 (let ((match (assoc (downcase (car field))
432 eudc-attribute-display-method-alist))
433 (col (current-column))
434 (val (cdr field)))
435 (if match
436 (progn
437 (eval (list (cdr match) val))
438 (insert "\n"))
439 (mapcar
440 (function
441 (lambda (val-elem)
442 (indent-to col)
443 (insert val-elem "\n")))
444 (cond
445 ((listp val) val)
446 ((stringp val) (split-string val "\n"))
447 ((null val) '(""))
448 (t (list val)))))))
449
450 (defun eudc-print-record-field (field column-width)
451 "Print the record field FIELD.
452 FIELD is a list (ATTR VALUE1 VALUE2 ...) or cons-cell (ATTR . VAL)
453 COLUMN-WIDTH is the width of the first display column containing the
454 attribute name ATTR."
455 (let ((field-beg (point)))
456 ;; The record field that is passed to this function has already been processed
457 ;; by `eudc-format-attribute-name-for-display' so we don't need to call it
458 ;; again to display the attribute name
459 (insert (format (concat "%" (int-to-string column-width) "s: ")
460 (car field)))
461 (put-text-property field-beg (point) 'face 'bold)
462 (indent-to (+ 2 column-width))
463 (eudc-print-attribute-value field)))
464
465 (defun eudc-display-records (records &optional raw-attr-names)
466 "Display the record list RECORDS in a formatted buffer.
467 If RAW-ATTR-NAMES is non-nil, the raw attribute names are displayed
468 otherwise they are formatted according to `eudc-user-attribute-names-alist'."
469 (let (inhibit-read-only
470 precords
471 (width 0)
472 beg
473 first-record
474 attribute-name)
475 (with-output-to-temp-buffer "*Directory Query Results*"
476 (with-current-buffer standard-output
477 (setq buffer-read-only t)
478 (setq inhibit-read-only t)
479 (erase-buffer)
480 (insert "Directory Query Result\n")
481 (insert "======================\n\n\n")
482 (if (null records)
483 (insert "No match found.\n"
484 (if eudc-strict-return-matches
485 "Try setting `eudc-strict-return-matches' to nil or change `eudc-default-return-attributes'.\n"
486 ""))
487 ;; Replace field names with user names, compute max width
488 (setq precords
489 (mapcar
490 (function
491 (lambda (record)
492 (mapcar
493 (function
494 (lambda (field)
495 (setq attribute-name
496 (if raw-attr-names
497 (symbol-name (car field))
498 (eudc-format-attribute-name-for-display (car field))))
499 (if (> (length attribute-name) width)
500 (setq width (length attribute-name)))
501 (cons attribute-name (cdr field))))
502 record)))
503 records))
504 ;; Display the records
505 (setq first-record (point))
506 (mapc
507 (function
508 (lambda (record)
509 (setq beg (point))
510 ;; Map over the record fields to print the attribute/value pairs
511 (mapc (function
512 (lambda (field)
513 (eudc-print-record-field field width)))
514 record)
515 ;; Store the record internal format in some convenient place
516 (overlay-put (make-overlay beg (point))
517 'eudc-record
518 (car records))
519 (setq records (cdr records))
520 (insert "\n")))
521 precords))
522 (insert "\n")
523 (widget-create 'push-button
524 :notify (lambda (&rest ignore)
525 (eudc-query-form))
526 "New query")
527 (widget-insert " ")
528 (widget-create 'push-button
529 :notify (lambda (&rest ignore)
530 (kill-this-buffer))
531 "Quit")
532 (eudc-mode)
533 (widget-setup)
534 (if first-record
535 (goto-char first-record))))))
536
537 (defun eudc-process-form ()
538 "Process the query form in current buffer and display the results."
539 (let (query-alist
540 value)
541 (if (not (and (boundp 'eudc-form-widget-list)
542 eudc-form-widget-list))
543 (error "Not in a directory query form buffer")
544 (mapc (function
545 (lambda (wid-field)
546 (setq value (widget-value (cdr wid-field)))
547 (if (not (string= value ""))
548 (setq query-alist (cons (cons (car wid-field) value)
549 query-alist)))))
550 eudc-form-widget-list)
551 (kill-buffer (current-buffer))
552 (eudc-display-records (eudc-query query-alist) eudc-use-raw-directory-names))))
553
554
555 (defun eudc-filter-duplicate-attributes (record)
556 "Filter RECORD according to `eudc-duplicate-attribute-handling-method'."
557 (let ((rec record)
558 unique
559 duplicates
560 result)
561
562 ;; Search for multiple records
563 (while (and rec
564 (not (listp (eudc-cdar rec))))
565 (setq rec (cdr rec)))
566
567 (if (null (eudc-cdar rec))
568 (list record) ; No duplicate attrs in this record
569 (mapc (function
570 (lambda (field)
571 (if (listp (cdr field))
572 (setq duplicates (cons field duplicates))
573 (setq unique (cons field unique)))))
574 record)
575 (setq result (list unique))
576 ;; Map over the record fields that have multiple values
577 (mapc
578 (function
579 (lambda (field)
580 (let ((method (if (consp eudc-duplicate-attribute-handling-method)
581 (cdr
582 (assq
583 (or
584 (car
585 (rassq
586 (car field)
587 (symbol-value
588 eudc-protocol-attributes-translation-alist)))
589 (car field))
590 eudc-duplicate-attribute-handling-method))
591 eudc-duplicate-attribute-handling-method)))
592 (cond
593 ((or (null method) (eq 'list method))
594 (setq result
595 (eudc-add-field-to-records field result)))
596 ((eq 'first method)
597 (setq result
598 (eudc-add-field-to-records (cons (car field)
599 (eudc-cadr field))
600 result)))
601 ((eq 'concat method)
602 (setq result
603 (eudc-add-field-to-records (cons (car field)
604 (mapconcat
605 'identity
606 (cdr field)
607 "\n")) result)))
608 ((eq 'duplicate method)
609 (setq result
610 (eudc-distribute-field-on-records field result)))))))
611 duplicates)
612 result)))
613
614 (defun eudc-filter-partial-records (records attrs)
615 "Eliminate records that do not contain all ATTRS from RECORDS."
616 (delq nil
617 (mapcar
618 (function
619 (lambda (rec)
620 (if (eval (cons 'and
621 (mapcar
622 (function
623 (lambda (attr)
624 (consp (assq attr rec))))
625 attrs)))
626 rec)))
627 records)))
628
629 (defun eudc-add-field-to-records (field records)
630 "Add FIELD to each individual record in RECORDS and return the resulting list."
631 (mapcar (function
632 (lambda (r)
633 (cons field r)))
634 records))
635
636 (defun eudc-distribute-field-on-records (field records)
637 "Duplicate each individual record in RECORDS according to value of FIELD.
638 Each copy is added a new field containing one of the values of FIELD."
639 (let (result
640 (values (cdr field)))
641 ;; Uniquify values first
642 (while values
643 (setcdr values (delete (car values) (cdr values)))
644 (setq values (cdr values)))
645 (mapc
646 (function
647 (lambda (value)
648 (let ((result-list (copy-sequence records)))
649 (setq result-list (eudc-add-field-to-records
650 (cons (car field) value)
651 result-list))
652 (setq result (append result-list result))
653 )))
654 (cdr field))
655 result))
656
657
658 (defun eudc-mode ()
659 "Major mode used in buffers displaying the results of directory queries.
660 There is no sense in calling this command from a buffer other than
661 one containing the results of a directory query.
662
663 These are the special commands of EUDC mode:
664 q -- Kill this buffer.
665 f -- Display a form to query the current directory server.
666 n -- Move to next record.
667 p -- Move to previous record.
668 b -- Insert record at point into the BBDB database."
669 (interactive)
670 (kill-all-local-variables)
671 (setq major-mode 'eudc-mode)
672 (setq mode-name "EUDC")
673 (use-local-map eudc-mode-map)
674 (if (not (featurep 'xemacs))
675 (easy-menu-define eudc-emacs-menu eudc-mode-map "" (eudc-menu))
676 (setq mode-popup-menu (eudc-menu)))
677 (run-mode-hooks 'eudc-mode-hook))
678
679 ;;}}}
680
681 ;;{{{ High-level interfaces (interactive functions)
682
683 (defun eudc-customize ()
684 "Customize the EUDC package."
685 (interactive)
686 (customize-group 'eudc))
687
688 ;;;###autoload
689 (defun eudc-set-server (server protocol &optional no-save)
690 "Set the directory server to SERVER using PROTOCOL.
691 Unless NO-SAVE is non-nil, the server is saved as the default
692 server for future sessions."
693 (interactive (list
694 (read-from-minibuffer "Directory Server: ")
695 (intern (completing-read "Protocol: "
696 (mapcar '(lambda (elt)
697 (cons (symbol-name elt)
698 elt))
699 eudc-known-protocols)))))
700 (unless (or (member protocol
701 eudc-supported-protocols)
702 (load (concat "eudcb-" (symbol-name protocol)) t))
703 (error "Unsupported protocol: %s" protocol))
704 (run-hooks 'eudc-switch-from-server-hook)
705 (setq eudc-protocol protocol)
706 (setq eudc-server server)
707 (eudc-update-local-variables)
708 (run-hooks 'eudc-switch-to-server-hook)
709 (if (called-interactively-p 'interactive)
710 (message "Current directory server is now %s (%s)" eudc-server eudc-protocol))
711 (if (null no-save)
712 (eudc-save-options)))
713
714 ;;;###autoload
715 (defun eudc-get-email (name &optional error)
716 "Get the email field of NAME from the directory server.
717 If ERROR is non-nil, report an error if there is none."
718 (interactive "sName: \np")
719 (or eudc-server
720 (call-interactively 'eudc-set-server))
721 (let ((result (eudc-query (list (cons 'name name)) '(email)))
722 email)
723 (if (null (cdr result))
724 (setq email (eudc-cdaar result))
725 (error "Multiple match--use the query form"))
726 (if error
727 (if email
728 (message "%s" email)
729 (error "No record matching %s" name)))
730 email))
731
732 ;;;###autoload
733 (defun eudc-get-phone (name &optional error)
734 "Get the phone field of NAME from the directory server.
735 If ERROR is non-nil, report an error if there is none."
736 (interactive "sName: \np")
737 (or eudc-server
738 (call-interactively 'eudc-set-server))
739 (let ((result (eudc-query (list (cons 'name name)) '(phone)))
740 phone)
741 (if (null (cdr result))
742 (setq phone (eudc-cdaar result))
743 (error "Multiple match--use the query form"))
744 (if error
745 (if phone
746 (message "%s" phone)
747 (error "No record matching %s" name)))
748 phone))
749
750 (defun eudc-get-attribute-list ()
751 "Return a list of valid attributes for the current server.
752 When called interactively the list is formatted in a dedicated buffer
753 otherwise a list of symbols is returned."
754 (interactive)
755 (if eudc-list-attributes-function
756 (let ((entries (funcall eudc-list-attributes-function
757 (called-interactively-p 'interactive))))
758 (if entries
759 (if (called-interactively-p 'interactive)
760 (eudc-display-records entries t)
761 entries)))
762 (error "The %s protocol has no support for listing attributes" eudc-protocol)))
763
764 (defun eudc-format-query (words format)
765 "Use FORMAT to build a EUDC query from WORDS."
766 (let (query
767 query-alist
768 key val cell)
769 (if format
770 (progn
771 (while (and words format)
772 (setq query-alist (cons (cons (car format) (car words))
773 query-alist))
774 (setq words (cdr words)
775 format (cdr format)))
776 ;; If the same attribute appears more than once, merge
777 ;; the corresponding values
778 (setq query-alist (nreverse query-alist))
779 (while query-alist
780 (setq key (eudc-caar query-alist)
781 val (eudc-cdar query-alist)
782 cell (assq key query))
783 (if cell
784 (setcdr cell (concat (cdr cell) " " val))
785 (setq query (cons (car query-alist) query)))
786 (setq query-alist (cdr query-alist)))
787 query)
788 (if eudc-protocol-has-default-query-attributes
789 (mapconcat 'identity words " ")
790 (list (cons 'name (mapconcat 'identity words " ")))))))
791
792 (defun eudc-extract-n-word-formats (format-list n)
793 "Extract a list of N-long formats from FORMAT-LIST.
794 If none try N - 1 and so forth."
795 (let (formats)
796 (while (and (null formats)
797 (> n 0))
798 (setq formats
799 (delq nil
800 (mapcar '(lambda (format)
801 (if (= n
802 (length format))
803 format
804 nil))
805 format-list)))
806 (setq n (1- n)))
807 formats))
808
809
810 ;;;###autoload
811 (defun eudc-expand-inline (&optional replace)
812 "Query the directory server, and expand the query string before point.
813 The query string consists of the buffer substring from the point back to
814 the preceding comma, colon or beginning of line.
815 The variable `eudc-inline-query-format' controls how to associate the
816 individual inline query words with directory attribute names.
817 After querying the server for the given string, the expansion specified by
818 `eudc-inline-expansion-format' is inserted in the buffer at point.
819 If REPLACE is non-nil, then this expansion replaces the name in the buffer.
820 `eudc-expansion-overwrites-query' being non-nil inverts the meaning of REPLACE.
821 Multiple servers can be tried with the same query until one finds a match,
822 see `eudc-inline-expansion-servers'"
823 (interactive)
824 (if (memq eudc-inline-expansion-servers
825 '(current-server server-then-hotlist))
826 (or eudc-server
827 (call-interactively 'eudc-set-server))
828 (or eudc-server-hotlist
829 (error "No server in the hotlist")))
830 (let* ((end (point))
831 (beg (save-excursion
832 (if (re-search-backward "\\([:,]\\|^\\)[ \t]*"
833 (save-excursion
834 (beginning-of-line)
835 (point))
836 'move)
837 (goto-char (match-end 0)))
838 (point)))
839 (query-words (split-string (buffer-substring beg end) "[ \t]+"))
840 query-formats
841 response
842 response-string
843 response-strings
844 (eudc-former-server eudc-server)
845 (eudc-former-protocol eudc-protocol)
846 servers)
847
848 ;; Prepare the list of servers to query
849 (setq servers (copy-sequence eudc-server-hotlist))
850 (setq servers
851 (cond
852 ((eq eudc-inline-expansion-servers 'hotlist)
853 eudc-server-hotlist)
854 ((eq eudc-inline-expansion-servers 'server-then-hotlist)
855 (cons (cons eudc-server eudc-protocol)
856 (delete (cons eudc-server eudc-protocol) servers)))
857 ((eq eudc-inline-expansion-servers 'current-server)
858 (list (cons eudc-server eudc-protocol)))
859 (t
860 (error "Wrong value for `eudc-inline-expansion-servers': %S"
861 eudc-inline-expansion-servers))))
862 (if (and eudc-max-servers-to-query
863 (> (length servers) eudc-max-servers-to-query))
864 (setcdr (nthcdr (1- eudc-max-servers-to-query) servers) nil))
865
866 (condition-case signal
867 (progn
868 (setq response
869 (catch 'found
870 ;; Loop on the servers
871 (while servers
872 (eudc-set-server (eudc-caar servers) (eudc-cdar servers) t)
873
874 ;; Determine which formats apply in the query-format list
875 (setq query-formats
876 (or
877 (eudc-extract-n-word-formats eudc-inline-query-format
878 (length query-words))
879 (if (null eudc-protocol-has-default-query-attributes)
880 '(name))))
881
882 ;; Loop on query-formats
883 (while query-formats
884 (setq response
885 (eudc-query
886 (eudc-format-query query-words (car query-formats))
887 (eudc-translate-attribute-list
888 (cdr eudc-inline-expansion-format))))
889 (if response
890 (throw 'found response))
891 (setq query-formats (cdr query-formats)))
892 (setq servers (cdr servers)))
893 ;; No more servers to try... no match found
894 nil))
895
896
897 (if (null response)
898 (error "No match")
899
900 ;; Process response through eudc-inline-expansion-format
901 (while response
902 (setq response-string (apply 'format
903 (car eudc-inline-expansion-format)
904 (mapcar (function
905 (lambda (field)
906 (or (cdr (assq field (car response)))
907 "")))
908 (eudc-translate-attribute-list
909 (cdr eudc-inline-expansion-format)))))
910 (if (> (length response-string) 0)
911 (setq response-strings
912 (cons response-string response-strings)))
913 (setq response (cdr response)))
914
915 (if (or
916 (and replace (not eudc-expansion-overwrites-query))
917 (and (not replace) eudc-expansion-overwrites-query))
918 (kill-ring-save beg end))
919 (cond
920 ((or (= (length response-strings) 1)
921 (null eudc-multiple-match-handling-method)
922 (eq eudc-multiple-match-handling-method 'first))
923 (delete-region beg end)
924 (insert (car response-strings)))
925 ((eq eudc-multiple-match-handling-method 'select)
926 (eudc-select response-strings beg end))
927 ((eq eudc-multiple-match-handling-method 'all)
928 (delete-region beg end)
929 (insert (mapconcat 'identity response-strings ", ")))
930 ((eq eudc-multiple-match-handling-method 'abort)
931 (error "There is more than one match for the query"))))
932 (or (and (equal eudc-server eudc-former-server)
933 (equal eudc-protocol eudc-former-protocol))
934 (eudc-set-server eudc-former-server eudc-former-protocol t)))
935 (error
936 (or (and (equal eudc-server eudc-former-server)
937 (equal eudc-protocol eudc-former-protocol))
938 (eudc-set-server eudc-former-server eudc-former-protocol t))
939 (signal (car signal) (cdr signal))))))
940
941 ;;;###autoload
942 (defun eudc-query-form (&optional get-fields-from-server)
943 "Display a form to query the directory server.
944 If given a non-nil argument GET-FIELDS-FROM-SERVER, the function first
945 queries the server for the existing fields and displays a corresponding form."
946 (interactive "P")
947 (let ((fields (or (and get-fields-from-server
948 (eudc-get-attribute-list))
949 eudc-query-form-attributes))
950 (buffer (get-buffer-create "*Directory Query Form*"))
951 prompts
952 widget
953 (width 0)
954 inhibit-read-only
955 pt)
956 (switch-to-buffer buffer)
957 (setq inhibit-read-only t)
958 (erase-buffer)
959 (kill-all-local-variables)
960 (make-local-variable 'eudc-form-widget-list)
961 (widget-insert "Directory Query Form\n")
962 (widget-insert "====================\n\n")
963 (widget-insert "Current server is: " (or eudc-server
964 (progn
965 (call-interactively 'eudc-set-server)
966 eudc-server))
967 "\n")
968 (widget-insert "Protocol : " (symbol-name eudc-protocol) "\n")
969 ;; Build the list of prompts
970 (setq prompts (if eudc-use-raw-directory-names
971 (mapcar 'symbol-name (eudc-translate-attribute-list fields))
972 (mapcar (function
973 (lambda (field)
974 (or (and (assq field eudc-user-attribute-names-alist)
975 (cdr (assq field eudc-user-attribute-names-alist)))
976 (capitalize (symbol-name field)))))
977 fields)))
978 ;; Loop over prompt strings to find the longest one
979 (mapc (function
980 (lambda (prompt)
981 (if (> (length prompt) width)
982 (setq width (length prompt)))))
983 prompts)
984 ;; Insert the first widget out of the mapcar to leave the cursor
985 ;; in the first field
986 (widget-insert "\n\n" (format (concat "%" (int-to-string width) "s: ") (car prompts)))
987 (setq pt (point))
988 (setq widget (widget-create 'editable-field :size 15))
989 (setq eudc-form-widget-list (cons (cons (car fields) widget)
990 eudc-form-widget-list))
991 (setq fields (cdr fields))
992 (setq prompts (cdr prompts))
993 (mapc (function
994 (lambda (field)
995 (widget-insert "\n\n" (format (concat "%" (int-to-string width) "s: ") (car prompts)))
996 (setq widget (widget-create 'editable-field
997 :size 15))
998 (setq eudc-form-widget-list (cons (cons field widget)
999 eudc-form-widget-list))
1000 (setq prompts (cdr prompts))))
1001 fields)
1002 (widget-insert "\n\n")
1003 (widget-create 'push-button
1004 :notify (lambda (&rest ignore)
1005 (eudc-process-form))
1006 "Query Server")
1007 (widget-insert " ")
1008 (widget-create 'push-button
1009 :notify (lambda (&rest ignore)
1010 (eudc-query-form))
1011 "Reset Form")
1012 (widget-insert " ")
1013 (widget-create 'push-button
1014 :notify (lambda (&rest ignore)
1015 (kill-this-buffer))
1016 "Quit")
1017 (goto-char pt)
1018 (use-local-map widget-keymap)
1019 (widget-setup))
1020 )
1021
1022 (defun eudc-bookmark-server (server protocol)
1023 "Add SERVER using PROTOCOL to the EUDC `servers' hotlist."
1024 (interactive "sDirectory server: \nsProtocol: ")
1025 (if (member (cons server protocol) eudc-server-hotlist)
1026 (error "%s:%s is already in the hotlist" protocol server)
1027 (setq eudc-server-hotlist (cons (cons server protocol) eudc-server-hotlist))
1028 (eudc-install-menu)
1029 (eudc-save-options)))
1030
1031 (defun eudc-bookmark-current-server ()
1032 "Add current server to the EUDC `servers' hotlist."
1033 (interactive)
1034 (eudc-bookmark-server eudc-server eudc-protocol))
1035
1036 (defun eudc-save-options ()
1037 "Save options to `eudc-options-file'."
1038 (interactive)
1039 (with-current-buffer (find-file-noselect eudc-options-file t)
1040 (goto-char (point-min))
1041 ;; delete the previous setq
1042 (let ((standard-output (current-buffer))
1043 provide-p
1044 set-hotlist-p
1045 set-server-p)
1046 (catch 'found
1047 (while t
1048 (let ((sexp (condition-case nil
1049 (read (current-buffer))
1050 (end-of-file (throw 'found nil)))))
1051 (if (listp sexp)
1052 (cond
1053 ((eq (car sexp) 'eudc-set-server)
1054 (delete-region (save-excursion
1055 (backward-sexp)
1056 (point))
1057 (point))
1058 (setq set-server-p t))
1059 ((and (eq (car sexp) 'setq)
1060 (eq (eudc-cadr sexp) 'eudc-server-hotlist))
1061 (delete-region (save-excursion
1062 (backward-sexp)
1063 (point))
1064 (point))
1065 (setq set-hotlist-p t))
1066 ((and (eq (car sexp) 'provide)
1067 (equal (eudc-cadr sexp) '(quote eudc-options-file)))
1068 (setq provide-p t)))
1069 (if (and provide-p
1070 set-hotlist-p
1071 set-server-p)
1072 (throw 'found t))))))
1073 (if (eq (point-min) (point-max))
1074 (princ ";; This file was automatically generated by eudc.el.\n\n"))
1075 (or provide-p
1076 (princ "(provide 'eudc-options-file)\n"))
1077 (or (bolp)
1078 (princ "\n"))
1079 (delete-blank-lines)
1080 (princ "(eudc-set-server ")
1081 (prin1 eudc-server)
1082 (princ " '")
1083 (prin1 eudc-protocol)
1084 (princ " t)\n")
1085 (princ "(setq eudc-server-hotlist '")
1086 (prin1 eudc-server-hotlist)
1087 (princ ")\n")
1088 (save-buffer))))
1089
1090 (defun eudc-move-to-next-record ()
1091 "Move to next record, in a buffer displaying directory query results."
1092 (interactive)
1093 (if (not (eq major-mode 'eudc-mode))
1094 (error "Not in a EUDC buffer")
1095 (let ((pt (next-overlay-change (point))))
1096 (if (< pt (point-max))
1097 (goto-char (1+ pt))
1098 (error "No more records after point")))))
1099
1100 (defun eudc-move-to-previous-record ()
1101 "Move to previous record, in a buffer displaying directory query results."
1102 (interactive)
1103 (if (not (eq major-mode 'eudc-mode))
1104 (error "Not in a EUDC buffer")
1105 (let ((pt (previous-overlay-change (point))))
1106 (if (> pt (point-min))
1107 (goto-char pt)
1108 (error "No more records before point")))))
1109
1110 ;;}}}
1111
1112 ;;{{{ Menus and keymaps
1113
1114 (require 'easymenu)
1115
1116 (defconst eudc-custom-generated-menu (cdr (custom-menu-create 'eudc)))
1117
1118 (defconst eudc-tail-menu
1119 `(["---" nil nil]
1120 ["Query with Form" eudc-query-form
1121 :help "Display a form to query the directory server"]
1122 ["Expand Inline Query" eudc-expand-inline
1123 :help "Query the directory server, and expand the query string before point"]
1124 ["Insert Record into BBDB" eudc-insert-record-at-point-into-bbdb
1125 (and (or (featurep 'bbdb)
1126 (prog1 (locate-library "bbdb") (message "")))
1127 (overlays-at (point))
1128 (overlay-get (car (overlays-at (point))) 'eudc-record))
1129 :help "Insert record at point into the BBDB database"]
1130 ["Insert All Records into BBDB" eudc-batch-export-records-to-bbdb
1131 (and (eq major-mode 'eudc-mode)
1132 (or (featurep 'bbdb)
1133 (prog1 (locate-library "bbdb") (message ""))))
1134 :help "Insert all the records returned by a directory query into BBDB"]
1135 ["---" nil nil]
1136 ["Get Email" eudc-get-email
1137 :help "Get the email field of NAME from the directory server"]
1138 ["Get Phone" eudc-get-phone
1139 :help "Get the phone field of name from the directory server"]
1140 ["List Valid Attribute Names" eudc-get-attribute-list
1141 :help "Return a list of valid attributes for the current server"]
1142 ["---" nil nil]
1143 ,(cons "Customize" eudc-custom-generated-menu)))
1144
1145
1146 (defconst eudc-server-menu
1147 '(["---" nil nil]
1148 ["Bookmark Current Server" eudc-bookmark-current-server
1149 :help "Add current server to the EUDC `servers' hotlist"]
1150 ["Edit Server List" eudc-edit-hotlist
1151 :help "Edit the hotlist of directory servers in a specialized buffer"]
1152 ["New Server" eudc-set-server
1153 :help "Set the directory server to SERVER using PROTOCOL"]))
1154
1155 (defun eudc-menu ()
1156 (let (command)
1157 (append '("Directory Search")
1158 (list
1159 (append
1160 '("Server")
1161 (mapcar
1162 (function
1163 (lambda (servspec)
1164 (let* ((server (car servspec))
1165 (protocol (cdr servspec))
1166 (proto-name (symbol-name protocol)))
1167 (setq command (intern (concat "eudc-set-server-"
1168 server
1169 "-"
1170 proto-name)))
1171 (if (not (fboundp command))
1172 (fset command
1173 `(lambda ()
1174 (interactive)
1175 (eudc-set-server ,server (quote ,protocol))
1176 (message "Selected directory server is now %s (%s)"
1177 ,server
1178 ,proto-name))))
1179 (vector (format "%s (%s)" server proto-name)
1180 command
1181 :style 'radio
1182 :selected `(equal eudc-server ,server)))))
1183 eudc-server-hotlist)
1184 eudc-server-menu))
1185 eudc-tail-menu)))
1186
1187 (defun eudc-install-menu ()
1188 (cond
1189 ((and (featurep 'xemacs) (featurep 'menubar))
1190 (add-submenu '("Tools") (eudc-menu)))
1191 ((not (featurep 'xemacs))
1192 (cond
1193 ((fboundp 'easy-menu-create-menu)
1194 (define-key
1195 global-map
1196 [menu-bar tools directory-search]
1197 (cons "Directory Search"
1198 (easy-menu-create-menu "Directory Search" (cdr (eudc-menu))))))
1199 ((fboundp 'easy-menu-add-item)
1200 (let ((menu (eudc-menu)))
1201 (easy-menu-add-item nil '("tools") (easy-menu-create-menu (car menu)
1202 (cdr menu)))))
1203 ((fboundp 'easy-menu-create-keymaps)
1204 (easy-menu-define eudc-menu-map eudc-mode-map "Directory Client Menu" (eudc-menu))
1205 (define-key
1206 global-map
1207 [menu-bar tools eudc]
1208 (cons "Directory Search"
1209 (easy-menu-create-keymaps "Directory Search" (cdr (eudc-menu))))))
1210 (t
1211 (error "Unknown version of easymenu"))))
1212 ))
1213
1214
1215 ;;; Load time initializations :
1216
1217 ;;; Load the options file
1218 (if (and (not noninteractive)
1219 (and (locate-library eudc-options-file)
1220 (progn (message "") t)) ; Remove modeline message
1221 (not (featurep 'eudc-options-file)))
1222 (load eudc-options-file))
1223
1224 ;;; Install the full menu
1225 (unless (featurep 'infodock)
1226 (eudc-install-menu))
1227
1228
1229 ;;; The following installs a short menu for EUDC at XEmacs startup.
1230
1231 ;;;###autoload
1232 (defun eudc-load-eudc ()
1233 "Load the Emacs Unified Directory Client.
1234 This does nothing except loading eudc by autoload side-effect."
1235 (interactive)
1236 nil)
1237
1238 ;;;###autoload
1239 (cond
1240 ((not (featurep 'xemacs))
1241 (defvar eudc-tools-menu
1242 (let ((map (make-sparse-keymap "Directory Search")))
1243 (define-key map [phone]
1244 `(menu-item ,(purecopy "Get Phone") eudc-get-phone
1245 :help ,(purecopy "Get the phone field of name from the directory server")))
1246 (define-key map [email]
1247 `(menu-item ,(purecopy "Get Email") eudc-get-email
1248 :help ,(purecopy "Get the email field of NAME from the directory server")))
1249 (define-key map [separator-eudc-email] menu-bar-separator)
1250 (define-key map [expand-inline]
1251 `(menu-item ,(purecopy "Expand Inline Query") eudc-expand-inline
1252 :help ,(purecopy "Query the directory server, and expand the query string before point")))
1253 (define-key map [query]
1254 `(menu-item ,(purecopy "Query with Form") eudc-query-form
1255 :help ,(purecopy "Display a form to query the directory server")))
1256 (define-key map [separator-eudc-query] menu-bar-separator)
1257 (define-key map [new]
1258 `(menu-item ,(purecopy "New Server") eudc-set-server
1259 :help ,(purecopy "Set the directory server to SERVER using PROTOCOL")))
1260 (define-key map [load]
1261 `(menu-item ,(purecopy "Load Hotlist of Servers") eudc-load-eudc
1262 :help ,(purecopy "Load the Emacs Unified Directory Client")))
1263 map))
1264 (fset 'eudc-tools-menu (symbol-value 'eudc-tools-menu)))
1265 (t
1266 (let ((menu '("Directory Search"
1267 ["Load Hotlist of Servers" eudc-load-eudc t]
1268 ["New Server" eudc-set-server t]
1269 ["---" nil nil]
1270 ["Query with Form" eudc-query-form t]
1271 ["Expand Inline Query" eudc-expand-inline t]
1272 ["---" nil nil]
1273 ["Get Email" eudc-get-email t]
1274 ["Get Phone" eudc-get-phone t])))
1275 (if (not (featurep 'eudc-autoloads))
1276 (if (featurep 'xemacs)
1277 (if (and (featurep 'menubar)
1278 (not (featurep 'infodock)))
1279 (add-submenu '("Tools") menu))
1280 (require 'easymenu)
1281 (cond
1282 ((fboundp 'easy-menu-add-item)
1283 (easy-menu-add-item nil '("tools")
1284 (easy-menu-create-menu (car menu)
1285 (cdr menu))))
1286 ((fboundp 'easy-menu-create-keymaps)
1287 (define-key
1288 global-map
1289 [menu-bar tools eudc]
1290 (cons "Directory Search"
1291 (easy-menu-create-keymaps "Directory Search"
1292 (cdr menu)))))))))))
1293
1294 ;;}}}
1295
1296 (provide 'eudc)
1297
1298 ;; arch-tag: e18872b6-db83-400b-869d-be54e9a4160c
1299 ;;; eudc.el ends here