1 ;;; eudcb-ph.el --- Emacs Unified Directory Client - CCSO PH/QI Backend
3 ;; Copyright (C) 1998-2011 Free Software Foundation, Inc.
5 ;; Author: Oscar Figueiredo <oscar@cpe.fr>
6 ;; 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 3 of the License, or
15 ;; (at your option) any later version.
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. If not, see <http://www.gnu.org/licenses/>.
27 ;; This library provides specific CCSO PH/QI protocol support for the
28 ;; Emacs Unified Directory Client package.
34 ;;{{{ Internal cooking
36 (eudc-protocol-set 'eudc-bbdb-conversion-alist
'eudc-ph-bbdb-conversion-alist
'ph
)
37 (eudc-protocol-set 'eudc-query-function
'eudc-ph-query-internal
'ph
)
38 (eudc-protocol-set 'eudc-list-attributes-function
'eudc-ph-get-field-list
'ph
)
39 (eudc-protocol-set 'eudc-protocol-has-default-query-attributes t
'ph
)
41 (defvar eudc-ph-process-buffer nil
)
42 (defvar eudc-ph-read-point
)
44 (defconst eudc-ph-default-server-port
105
45 "Default TCP port for CCSO PH/QI directory services.")
47 (defun eudc-ph-query-internal (query &optional return-fields
)
48 "Query the PH/QI server with QUERY.
49 QUERY can be a string NAME or a list made of strings NAME
50 and/or cons cells (KEY . VALUE) where KEYs should be valid
51 CCSO database keys. NAME is equivalent to (DEFAULT . NAME),
52 where DEFAULT is the default key of the database.
53 RETURN-FIELDS is a list of database fields to return,
54 defaulting to `eudc-default-return-attributes'."
56 (if (null return-fields
)
57 (setq return-fields eudc-default-return-attributes
))
58 (if (eq 'all return-fields
)
59 (setq return-fields
'(all)))
64 (mapconcat (function (lambda (elt)
65 (if (stringp elt
) elt
)
66 (format "%s=%s" (car elt
) (cdr elt
))))
70 (concat " return " (mapconcat 'symbol-name return-fields
" ")))))
71 (and (> (length request
) 6)
72 (eudc-ph-do-request request
)
73 (eudc-ph-parse-query-result return-fields
))))
75 (defun eudc-ph-get-field-list (full-records)
76 "Return a list of valid field names for the current server.
77 If FULL-RECORDS is non-nil, full records including field description
80 (eudc-ph-do-request "fields")
82 (eudc-ph-parse-query-result)
83 (mapcar 'eudc-caar
(eudc-ph-parse-query-result))))
85 (defun eudc-ph-parse-query-result (&optional fields
)
86 "Return a list of alists of key/values from in `eudc-ph-process-buffer'.
87 Fields not in FIELDS are discarded."
96 (message "Parsing results...")
97 (set-buffer eudc-ph-process-buffer
)
98 (goto-char (point-min))
99 (while (re-search-forward "^\\(-[0-9]+\\):\\([0-9]+\\):" nil t
)
101 (setq line-regexp
(concat "^\\(-[0-9]+\\):" (match-string 2) ":[ \t]*\\([-a-zA-Z_]*\\)?:[ \t]*\\(.*\\)$"))
106 (while (re-search-forward line-regexp nil t
)
108 (if (string= "-508" (match-string 1))
109 ;; A field is missing in this entry. Skip it or skip the
110 ;; whole record (see `eudc-strict-return-matches')
111 (if (not eudc-strict-return-matches
)
113 (while (re-search-forward line-regexp nil t
))
116 (setq key
(and (not (string= (match-string 2) ""))
117 (intern (match-string 2)))
118 value
(match-string 3))
120 (eq key current-key
))
122 (setq current-key key
))
123 (if (or (null fields
)
125 (memq current-key fields
))
127 (setq record
(cons (cons key value
) record
)) ; New key
128 (setcdr (car record
) (if (listp (eudc-cdar record
))
129 (append (eudc-cdar record
) (list value
))
130 (list (eudc-cdar record
) value
))))))))
134 (setq record
(nreverse record
)))
135 (setq record
(if (not (eq 'list eudc-duplicate-attribute-handling-method
))
136 (eudc-filter-duplicate-attributes record
)
138 (setq records
(append record records
)))))
142 (defun eudc-ph-do-request (request)
143 "Send REQUEST to the server.
144 Wait for response and return the buffer containing it."
149 (message "Contacting server...")
150 (setq process
(eudc-ph-open-session))
152 (with-current-buffer (setq buffer
(process-buffer process
))
153 (eudc-ph-send-command process request
)
154 (message "Request sent, waiting for reply...")
155 (eudc-ph-read-response process
))))
157 (eudc-ph-close-session process
)))
160 (defun eudc-ph-open-session (&optional server
)
161 "Open a connection to the given CCSO/QI SERVER.
162 SERVER is either a string naming the server or a list (NAME PORT)."
168 (setq server
(or eudc-server
169 (call-interactively 'eudc-ph-set-server
))))
170 (string-match "\\(.*\\)\\(:\\(.*\\)\\)?" server
)
171 (setq host
(match-string 1 server
))
172 (setq port
(or (match-string 3 server
)
173 eudc-ph-default-server-port
))
174 (setq eudc-ph-process-buffer
(get-buffer-create (format " *PH-%s*" host
)))
175 (with-current-buffer eudc-ph-process-buffer
177 (setq eudc-ph-read-point
(point))
178 (and (featurep 'xemacs
) (featurep 'mule
)
179 (set-buffer-file-coding-system 'binary t
)))
180 (setq process
(open-network-stream "ph" eudc-ph-process-buffer host port
))
183 (set-process-query-on-exit-flag process t
)
186 (defun eudc-ph-close-session (process)
187 (with-current-buffer (process-buffer process
)
188 (eudc-ph-send-command process
"quit")
189 (eudc-ph-read-response process
)
190 (run-at-time 2 nil
'delete-process process
)))
192 (defun eudc-ph-send-command (process command
)
193 (goto-char (point-max))
194 (process-send-string process command
)
195 (process-send-string process
"\r\n")
198 (defun eudc-ph-read-response (process &optional return-response
)
199 "Read a response from the PH/QI query process PROCESS.
200 Returns nil if response starts with an error code. If the
201 response is successful the return code or the response itself is returned
202 depending on RETURN-RESPONSE."
203 (let ((case-fold-search nil
)
206 (goto-char eudc-ph-read-point
)
207 ;; CCSO protocol : response complete if status >= 200
208 (while (not (re-search-forward "^\\(^[2-5].*\\):.*\n" nil t
))
209 (accept-process-output process
)
210 (goto-char eudc-ph-read-point
))
211 (setq match-end
(point))
212 (goto-char eudc-ph-read-point
)
213 (if (and (setq return-code
(match-string 1))
214 (setq return-code
(string-to-number return-code
))
215 (>= (abs return-code
) 300))
216 (progn (setq eudc-ph-read-point match-end
) nil
)
217 (setq eudc-ph-read-point match-end
)
219 (buffer-substring (point) match-end
)
224 ;;{{{ High-level interfaces (interactive functions)
226 (defun eudc-ph-customize ()
227 "Customize the EUDC PH support."
229 (customize-group 'eudc-ph
))
231 (defun eudc-ph-set-server (server)
232 "Set the PH server to SERVER."
233 (interactive "sNew PH/QI Server: ")
234 (message "Selected PH/QI server is now %s" server
)
235 (eudc-set-server server
'ph
))
239 (eudc-register-protocol 'ph
)
243 ;;; eudcb-ph.el ends here