Switch to recommended form of GPLv3 permissions notice.
[bpt/emacs.git] / lisp / org / org-bbdb.el
CommitLineData
20908596
CD
1;;; org-bbdb.el --- Support for links to BBDB entries from within Org-mode
2
3;; Copyright (C) 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
4
5;; Author: Carsten Dominik <carsten at orgmode dot org>,
6;; Thomas Baumann <thomas dot baumann at ch dot tum dot de>
7;; Keywords: outlines, hypermedia, calendar, wp
8;; Homepage: http://orgmode.org
9;; Version: 6.02b
10;;
11;; This file is part of GNU Emacs.
12;;
b1fc2b50 13;; GNU Emacs is free software: you can redistribute it and/or modify
20908596 14;; it under the terms of the GNU General Public License as published by
b1fc2b50
GM
15;; the Free Software Foundation, either version 3 of the License, or
16;; (at your option) any later version.
20908596
CD
17
18;; GNU Emacs is distributed in the hope that it will be useful,
19;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21;; GNU General Public License for more details.
22
23;; You should have received a copy of the GNU General Public License
b1fc2b50 24;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
20908596
CD
25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
26;;
27;;; Commentary:
28
29;; This file implements links to BBDB database entries from within Org-mode.
30;; Org-mode loads this module by default - if this is not what you want,
31;; configure the variable `org-modules'.
32
33
34;; It also implements an interface (based on Ivar Rummelhoff's
35;; bbdb-anniv.el) for those org-mode users, who do not use the diary
36;; but who do want to include the anniversaries stored in the BBDB
37;; into the org-agenda. If you already include the `diary' into the
38;; agenda, you might want to prefer to include the anniversaries in
39;; the diary using bbdb-anniv.el.
40;;
41;; Put the following in /somewhere/at/home/diary.org and make sure
42;; that this file is in `org-agenda-files`
43;;
44;; %%(org-bbdb-anniversaries)
45;;
46;; For example my diary.org looks like:
47;; * Anniversaries
48;; #+CATEGORY: Anniv
49;; %%(org-bbdb-anniversaries)
50;;
51;;
52;; The anniversaries are stored in BBDB in the field `anniversary'
53;; in the format
54;;
55;; YYYY-MM-DD{ CLASS-OR-FORMAT-STRING}*
56;; {\nYYYY-MM-DD CLASS-OR-FORMAT-STRING}*
57;;
58;; CLASS-OR-FORMAT-STRING is one of two things:
59;;
60;; * an identifier for a class of anniversaries (eg. birthday or
61;; wedding) from `org-bbdb-anniversary-format-alist'.
62;; * the (format) string displayed in the diary.
63;;
64;; It defaults to the value of `org-bbdb-default-anniversary-format'
65;; ("birthday" by default).
66;;
67;; The substitutions in the format string are (in order):
68;; * the name of the record containing this anniversary
69;; * the number of years
70;; * an ordinal suffix (st, nd, rd, th) for the year
71;;
72;; See the documentation of `org-bbdb-anniversary-format-alist' for
73;; further options.
74;;
75;; Example
76;;
77;; 1973-06-22
78;; 20??-??-?? wedding
79;; 1998-03-12 %s created bbdb-anniv.el %d years ago
80
81;;; Code:
82
83(require 'org)
84(eval-when-compile
85 (require 'cl))
86
87;; Declare external functions and variables
88
89(declare-function bbdb "ext:bbdb-com" (string elidep))
90(declare-function bbdb-company "ext:bbdb-com" (string elidep))
91(declare-function bbdb-current-record "ext:bbdb-com"
92 (&optional planning-on-modifying))
93(declare-function bbdb-name "ext:bbdb-com" (string elidep))
94(declare-function bbdb-record-getprop "ext:bbdb" (record property))
95(declare-function bbdb-record-name "ext:bbdb" (record))
96(declare-function bbdb-records "ext:bbdb"
97 (&optional dont-check-disk already-in-db-buffer))
98(declare-function bbdb-split "ext:bbdb" (string separators))
99(declare-function bbdb-string-trim "ext:bbdb" (string))
100(declare-function calendar-leap-year-p "calendar" (year))
101(declare-function diary-ordinal-suffix "diary-lib" (n))
102
103(defvar date)
104
105;; Customization
106
107(defgroup org-bbdb-anniversaries nil
108 "Customizations for including anniversaries from BBDB into Agenda."
109 :group 'org-bbdb)
110
111(defcustom org-bbdb-default-anniversary-format "birthday"
112 "Default anniversary class."
113 :type 'string
114 :group 'org-bbdb-anniversaries
115 :require 'bbdb)
116
117(defcustom org-bbdb-anniversary-format-alist
118 '( ("birthday" . "Birthday: %s (%d%s)")
119 ("wedding" . "%s's %d%s wedding anniversary") )
120 "How different types of anniversaries should be formatted.
121An alist of elements (STRING . FORMAT) where STRING is the name of an
122anniversary class and format is either:
1231) A format string with the following substitutions (in order):
124 * the name of the record containing this anniversary
125 * the number of years
126 * an ordinal suffix (st, nd, rd, th) for the year
127
1282) A function to be called with three arguments: NAME YEARS SUFFIX
129 (string int string) returning a string for the diary or nil.
130
1313) An Emacs Lisp form that should evaluate to a string (or nil) in the
132 scope of variables NAME, YEARS and SUFFIX (among others)."
133 :type 'sexp
134 :group 'org-bbdb-anniversaries
135 :require 'bbdb)
136
137(defcustom org-bbdb-anniversary-field 'anniversary
138 "The BBDB field which contains anniversaries.
139The anniversaries are stored in the following format
140
141YYYY-MM-DD Class-or-Format-String
142
143where class is one of the customized classes for anniversaries;
144birthday and wedding are predefined. Format-String can take three
145substitutions 1) the name of the record containing this
146anniversary, 2) the number of years, and 3) an ordinal suffix for
147the year.
148
149Multiple anniversaries can be separated by \\n"
150 :type 'symbol
151 :group 'org-bbdb-anniversaries
152 :require 'bbdb)
153
154(defcustom org-bbdb-extract-date-fun 'org-bbdb-anniv-extract-date
155 "How to retrieve `month date year' from the anniversary field.
156
157Customize if you have already filled your bbdb with dates
158different from YYYY-MM-DD. The function must return a list (month
159date year)"
160 :type 'function
161 :group 'org-bbdb-anniversaries
162 :require 'bbdb)
163
164
165;; Install the link type
166(org-add-link-type "bbdb" 'org-bbdb-open 'org-bbdb-export)
167(add-hook 'org-store-link-functions 'org-bbdb-store-link)
168
169;; Implementation
170(defun org-bbdb-store-link ()
171 "Store a link to a BBDB database entry."
172 (when (eq major-mode 'bbdb-mode)
173 ;; This is BBDB, we make this link!
174 (let* ((name (bbdb-record-name (bbdb-current-record)))
175 (company (bbdb-record-getprop (bbdb-current-record) 'company))
176 (link (org-make-link "bbdb:" name)))
177 (org-store-link-props :type "bbdb" :name name :company company
178 :link link :description name)
179 link)))
180
181(defun org-bbdb-export (path desc format)
182 "Create the export version of a BBDB link specified by PATH or DESC.
183If exporting to either HTML or LaTeX FORMAT the link will be
184italicised, in all other cases it is left unchanged."
185 "Create the exprt verison of a bbdb link."
186 (cond
187 ((eq format 'html) (format "<i>%s</i>" (or desc path)))
188 ((eq format 'latex) (format "\\textit{%s}" (or desc path)))
189 (t (or desc path))))
190
191(defun org-bbdb-open (name)
192 "Follow a BBDB link to NAME."
193 (require 'bbdb)
194 (let ((inhibit-redisplay (not debug-on-error))
195 (bbdb-electric-p nil))
196 (catch 'exit
197 ;; Exact match on name
198 (bbdb-name (concat "\\`" name "\\'") nil)
199 (if (< 0 (buffer-size (get-buffer "*BBDB*"))) (throw 'exit nil))
200 ;; Exact match on name
201 (bbdb-company (concat "\\`" name "\\'") nil)
202 (if (< 0 (buffer-size (get-buffer "*BBDB*"))) (throw 'exit nil))
203 ;; Partial match on name
204 (bbdb-name name nil)
205 (if (< 0 (buffer-size (get-buffer "*BBDB*"))) (throw 'exit nil))
206 ;; Partial match on company
207 (bbdb-company name nil)
208 (if (< 0 (buffer-size (get-buffer "*BBDB*"))) (throw 'exit nil))
209 ;; General match including network address and notes
210 (bbdb name nil)
211 (when (= 0 (buffer-size (get-buffer "*BBDB*")))
212 (delete-window (get-buffer-window "*BBDB*"))
213 (error "No matching BBDB record")))))
214
215(defun org-bbdb-anniv-extract-date (time-str)
216 "Convert YYYY-MM-DD to (month date year).
217Argument TIME-STR is the value retrieved from BBDB."
218 (multiple-value-bind (y m d) (bbdb-split time-str "-")
219 (list (string-to-number m)
220 (string-to-number d)
221 (string-to-number y))))
222
223(defun org-bbdb-anniv-split (str)
224 "Split mutliple entries in the BBDB anniversary field.
225Argument STR is the anniversary field in BBDB."
226 (let ((pos (string-match "[ \t]" str)))
227 (if pos (list (substring str 0 pos)
228 (bbdb-string-trim (substring str pos)))
229 (list str nil))))
230
231
232;;;###autoload
233(defun org-bbdb-anniversaries ()
234 "Extract anniversaries from BBDB for display in the agenda."
235 (require 'diary-lib)
236 (let ((dates (list (cons (cons (car date) ; month
237 (nth 1 date)) ; day
238 (nth 2 date)))) ; year
239 (text ())
240 annivs date years
241 split class form)
242 (dolist (rec (bbdb-records))
243 (when (setq annivs (bbdb-record-getprop
244 rec org-bbdb-anniversary-field))
245 (setq annivs (bbdb-split annivs "\n"))
246 (while annivs
247 (setq split (org-bbdb-anniv-split (pop annivs)))
248 (multiple-value-bind (m d y)
249 (funcall org-bbdb-extract-date-fun (car split))
250
251 (when (and (or (setq date (assoc (cons m d) dates))
252 (and (= d 29)
253 (= m 2)
254 (setq date (assoc '(3 . 1) dates))
255 (not (calendar-leap-year-p (cdr date)))))
256 (< 0 (setq years (- (cdr date) y))))
257 (let* ((class (or (cadr split)
258 org-bbdb-default-anniversary-format))
259 (form (or (cdr (assoc class
260 org-bbdb-anniversary-format-alist))
261 class)) ; (as format string)
262 (name (bbdb-record-name rec))
263 (suffix (diary-ordinal-suffix years))
264 (tmp (cond
265 ((functionp form)
266 (funcall form name years suffix))
267 ((listp form) (eval form))
268 (t (format form name years suffix)))))
269 (if text
270 (setq text (append text (list tmp)))
271 (setq text (list tmp))))
272 )))))
273 (when text
274 (mapconcat 'identity text "; "))))
275
276(provide 'org-bbdb)
277
88ac7b50 278;; arch-tag: 9e4f275d-d080-48c1-b040-62247f66b5c2
20908596 279;;; org-bbdb.el ends here