1 ;;; eudcb-bbdb.el --- Emacs Unified Directory Client - BBDB Backend
3 ;; Copyright (C) 1998, 1999, 2000, 2002, 2003, 2004,
4 ;; 2005, 2006 Free Software Foundation, Inc.
6 ;; Author: Oscar Figueiredo <oscar@cpe.fr>
7 ;; Maintainer: Pavel JanÃk <Pavel@Janik.cz>
10 ;; This file is part of GNU Emacs.
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 2, or (at your option)
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.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 ;; Boston, MA 02110-1301, USA.
28 ;; This library provides an interface to use BBDB as a backend of
29 ;; the Emacs Unified Directory Client.
34 (if (not (featurep 'bbdb
))
35 (load-library "bbdb"))
36 (if (not (featurep 'bbdb-com
))
37 (load-library "bbdb-com"))
39 ;;{{{ Internal cooking
41 ;; I don't like this but mapcar does not accept a parameter to the function and
42 ;; I don't want to use mapcar*
43 (defvar eudc-bbdb-current-query nil
)
44 (defvar eudc-bbdb-current-return-attributes nil
)
46 (defvar eudc-bbdb-attributes-translation-alist
50 "Alist mapping EUDC attribute names to BBDB names.")
52 (eudc-protocol-set 'eudc-query-function
'eudc-bbdb-query-internal
'bbdb
)
53 (eudc-protocol-set 'eudc-list-attributes-function nil
'bbdb
)
54 (eudc-protocol-set 'eudc-protocol-attributes-translation-alist
55 'eudc-bbdb-attributes-translation-alist
'bbdb
)
56 (eudc-protocol-set 'eudc-bbdb-conversion-alist nil
'bbdb
)
57 (eudc-protocol-set 'eudc-protocol-has-default-query-attributes nil
'bbdb
)
59 (defun eudc-bbdb-format-query (query)
60 "Format a EUDC query alist into a list suitable to `bbdb-search'."
61 (let* ((firstname (cdr (assq 'firstname query
)))
62 (lastname (cdr (assq 'lastname query
)))
63 (name (or (and firstname lastname
64 (concat firstname
" " lastname
))
67 (company (cdr (assq 'company query
)))
68 (net (cdr (assq 'net query
)))
69 (notes (cdr (assq 'notes query
)))
70 (phone (cdr (assq 'phone query
))))
71 (list name company net notes phone
)))
74 (defun eudc-bbdb-filter-non-matching-record (record)
75 "Return RECORD if it matches `eudc-bbdb-current-query', nil otherwise."
81 (let ((attr (car condition
))
85 (or (and (memq attr
'(firstname lastname aka company phones addresses net
))
88 (eval (list (intern (concat "bbdb-record-"
92 (if eudc-bbdb-enable-substring-matches
93 (eval `(or ,@(mapcar '(lambda (subval)
97 (member (downcase val
)
98 (mapcar 'downcase bbdb-val
)))
99 (if eudc-bbdb-enable-substring-matches
100 (string-match val bbdb-val
)
101 (string-equal (downcase val
) (downcase bbdb-val
))))))
102 (throw 'unmatch nil
)))))
103 eudc-bbdb-current-query
)
106 (defun eudc-bbdb-extract-phones (record)
109 (if eudc-bbdb-use-locations-as-attribute-names
110 (cons (intern (bbdb-phone-location phone
))
111 (bbdb-phone-string phone
))
112 (cons 'phones
(format "%s: %s"
113 (bbdb-phone-location phone
)
114 (bbdb-phone-string phone
))))))
115 (bbdb-record-phones record
)))
117 (defun eudc-bbdb-extract-addresses (record)
121 (setq val
(concat (unless (= 0 (length (setq s
(bbdb-address-street1 address
))))
123 (unless (= 0 (length (setq s
(bbdb-address-street2 address
))))
125 (unless (= 0 (length (setq s
(bbdb-address-street3 address
))))
128 (setq c
(bbdb-address-city address
))
129 (setq s
(bbdb-address-state address
))
130 (if (and (> (length c
) 0) (> (length s
) 0))
131 (concat c
", " s
" ")
133 (bbdb-address-zip-string address
)))
134 (if eudc-bbdb-use-locations-as-attribute-names
135 (cons (intern (bbdb-address-location address
)) val
)
136 (cons 'addresses
(concat (bbdb-address-location address
) "\n" val
)))))
137 (bbdb-record-addresses record
))))
139 (defun eudc-bbdb-format-record-as-result (record)
140 "Format the BBDB RECORD as a EUDC query result record.
141 The record is filtered according to `eudc-bbdb-current-return-attributes'"
142 (let ((attrs (or eudc-bbdb-current-return-attributes
143 '(firstname lastname aka company phones addresses net notes
)))
148 (setq attr
(car attrs
))
149 (setq attrs
(cdr attrs
)))
152 (setq val
(eudc-bbdb-extract-phones record
)))
153 ((eq attr
'addresses
)
154 (setq val
(eudc-bbdb-extract-addresses record
)))
155 ((memq attr
'(firstname lastname aka company net notes
))
158 (concat "bbdb-record-"
162 (setq val
"Unknown BBDB attribute")))
165 ((memq attr
'(phones addresses
))
166 (setq eudc-rec
(append val eudc-rec
)))
169 (setq eudc-rec
(cons (cons attr
(car val
)) eudc-rec
)))
171 (setq eudc-rec
(cons (cons attr val
) eudc-rec
)))
173 (error "Unexpected attribute value")))))
174 (nreverse eudc-rec
)))
178 (defun eudc-bbdb-query-internal (query &optional return-attrs
)
179 "Query BBDB with QUERY.
180 QUERY is a list of cons cells (ATTR . VALUE) where ATTRs should be valid
181 BBDB attribute names.
182 RETURN-ATTRS is a list of attributes to return, defaulting to
183 `eudc-default-return-attributes'."
185 (let ((eudc-bbdb-current-query query
)
186 (eudc-bbdb-current-return-attributes return-attrs
)
187 (query-attrs (eudc-bbdb-format-query query
))
189 (records (bbdb-records))
192 ;; BBDB ORs its query attributes while EUDC ANDs them, hence we need to
193 ;; call bbdb-search iteratively on the returned records for each of the
194 ;; requested attributes
195 (while (and records
(> (length query-attrs
) 0))
196 (setq bbdb-attrs
(append bbdb-attrs
(list (car query-attrs
))))
197 (if (car query-attrs
)
198 (setq records
(eval `(bbdb-search ,(quote records
) ,@bbdb-attrs
))))
199 (setq query-attrs
(cdr query-attrs
)))
202 (setq filtered
(eudc-filter-duplicate-attributes record
))
203 ;; If there were duplicate attributes reverse the order of the
204 ;; record so the unique attributes appear first
205 (if (> (length filtered
) 1)
206 (setq filtered
(mapcar (function
210 (setq result
(append result filtered
))))
212 (mapcar 'eudc-bbdb-format-record-as-result
214 (mapcar 'eudc-bbdb-filter-non-matching-record
220 ;;{{{ High-level interfaces (interactive functions)
222 (defun eudc-bbdb-set-server (dummy)
223 "Set the EUDC server to BBDB."
225 (eudc-set-server dummy
'bbdb
)
226 (message "BBDB server selected"))
231 (eudc-register-protocol 'bbdb
)
233 (provide 'eudcb-bbdb
)
235 ;;; arch-tag: 38276208-75de-4dbc-ba6f-8db684c32e0a
236 ;;; eudcb-bbdb.el ends here