1 ;;; nneething.el --- arbitrary file access for Gnus
3 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
4 ;; 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
7 ;; Masanobu UMEDA <umerin@flab.flab.fujitsu.junet>
8 ;; Keywords: news, mail
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/>.
29 (eval-when-compile (require 'cl
))
36 (nnoo-declare nneething
)
38 (defvoo nneething-map-file-directory
39 (nnheader-concat gnus-directory
".nneething/")
40 "Where nneething stores the map files.")
42 (defvoo nneething-map-file
".nneething"
43 "Name of the map files.")
45 (defvoo nneething-exclude-files nil
46 "Regexp saying what files to exclude from the group.
47 If this variable is nil, no files will be excluded.")
49 (defvoo nneething-include-files nil
50 "Regexp saying what files to include in the group.
51 If this variable is non-nil, only files matching this regexp will be
56 ;;; Internal variables.
58 (defconst nneething-version
"nneething 1.0"
61 (defvoo nneething-current-directory nil
62 "Current news group directory.")
64 (defvoo nneething-status-string
"")
66 (defvoo nneething-work-buffer
" *nneething work*")
68 (defvoo nneething-group nil
)
69 (defvoo nneething-map nil
)
70 (defvoo nneething-read-only nil
)
71 (defvoo nneething-active nil
)
72 (defvoo nneething-address nil
)
76 ;;; Interface functions.
78 (nnoo-define-basics nneething
)
80 (deffoo nneething-retrieve-headers
(articles &optional group server fetch-old
)
81 (nneething-possibly-change-directory group
)
84 (set-buffer nntp-server-buffer
)
86 (let* ((number (length articles
))
88 (large (and (numberp nnmail-large-newsgroup
)
89 (> number nnmail-large-newsgroup
)))
92 (if (stringp (car articles
))
95 (while (setq article
(pop articles
))
96 (setq file
(nneething-file-name article
))
98 (when (and (file-exists-p file
)
99 (or (file-directory-p file
)
100 (not (zerop (nnheader-file-size file
)))))
101 (insert (format "221 %d Article retrieved.\n" article
))
102 (nneething-insert-head file
)
109 (nnheader-message 5 "nneething: Receiving headers... %d%%"
110 (/ (* count
100) number
))))
113 (nnheader-message 5 "nneething: Receiving headers...done"))
115 (nnheader-fold-continuation-lines)
118 (deffoo nneething-request-article
(id &optional group server buffer
)
119 (nneething-possibly-change-directory group
)
120 (let ((file (unless (stringp id
)
121 (nneething-file-name id
)))
122 (nntp-server-buffer (or buffer nntp-server-buffer
)))
123 (and (stringp file
) ; We did not request by Message-ID.
124 (file-exists-p file
) ; The file exists.
125 (not (file-directory-p file
)) ; It's not a dir.
127 (let ((nnmail-file-coding-system 'binary
))
128 (nnmail-find-file file
)) ; Insert the file in the nntp buf.
129 (unless (nnheader-article-p) ; Either it's a real article...
131 (unless (file-directory-p file
)
132 (or (cdr (assoc (concat "." (file-name-extension file
))
133 mailcap-mime-extensions
))
136 (mm-detect-mime-charset-region (point-min) (point-max)))
138 (unless (string-match "\\`text/" type
)
139 (base64-encode-region (point-min) (point-max))
140 (setq encoding
"base64"))
141 (goto-char (point-min))
142 (nneething-make-head file
(current-buffer)
143 nil type charset encoding
))
147 (deffoo nneething-request-group
(group &optional server dont-check
)
148 (nneething-possibly-change-directory group server
)
150 (nneething-create-mapping)
151 (if (> (car nneething-active
) (cdr nneething-active
))
152 (nnheader-insert "211 0 1 0 %s\n" group
)
155 (- (1+ (cdr nneething-active
)) (car nneething-active
))
156 (car nneething-active
) (cdr nneething-active
)
160 (deffoo nneething-request-list
(&optional server dir
)
161 (nnheader-report 'nneething
"LIST is not implemented."))
163 (deffoo nneething-request-newgroups
(date &optional server
)
164 (nnheader-report 'nneething
"NEWSGROUPS is not implemented."))
166 (deffoo nneething-request-type
(group &optional article
)
169 (deffoo nneething-close-group
(group &optional server
)
170 (setq nneething-current-directory nil
)
173 (deffoo nneething-open-server
(server &optional defs
)
174 (nnheader-init-server-buffer)
175 (if (nneething-server-opened server
)
177 (unless (assq 'nneething-address defs
)
178 (setq defs
(append defs
(list (list 'nneething-address server
)))))
179 (nnoo-change-server 'nneething server defs
)))
182 ;;; Internal functions.
184 (defun nneething-possibly-change-directory (group &optional server
)
186 (not (nneething-server-opened server
)))
187 (nneething-open-server server
))
189 (not (equal nneething-group group
)))
190 (setq nneething-group group
)
191 (setq nneething-map nil
)
192 (setq nneething-active
(cons 1 0))
193 (nneething-create-mapping)))
195 (defun nneething-map-file ()
196 ;; We make sure that the .nneething directory exists.
197 (gnus-make-directory nneething-map-file-directory
)
198 ;; We store it in a special directory under the user's home dir.
199 (concat (file-name-as-directory nneething-map-file-directory
)
200 nneething-group nneething-map-file
))
202 (defun nneething-create-mapping ()
203 ;; Read nneething-active and nneething-map.
204 (when (file-exists-p nneething-address
)
205 (let ((map-file (nneething-map-file))
206 (files (directory-files nneething-address
))
208 (when (file-exists-p map-file
)
210 (load map-file nil t t
)))
211 (unless nneething-active
212 (setq nneething-active
(cons 1 0)))
213 ;; Old nneething had a different map format.
214 (when (and (cdar nneething-map
)
215 (atom (cdar nneething-map
)))
218 (list (cdr n
) (car n
)
219 (nth 5 (file-attributes
220 (nneething-file-name (car n
))))))
222 ;; Remove files matching the exclusion regexp.
223 (when nneething-exclude-files
227 (if (string-match nneething-exclude-files
(car f
))
228 (if prev
(setcdr prev
(cdr f
))
229 (setq files
(cdr files
)))
232 ;; Remove files not matching the inclusion regexp.
233 (when nneething-include-files
237 (if (not (string-match nneething-include-files
(car f
)))
238 (if prev
(setcdr prev
(cdr f
))
239 (setq files
(cdr files
)))
242 ;; Remove deleted files from the map.
243 (let ((map nneething-map
)
246 (if (and (member (cadr (car map
)) files
)
247 ;; We also remove files that have changed mod times.
248 (equal (nth 5 (file-attributes
249 (nneething-file-name (cadr (car map
)))))
252 (push (cadr (car map
)) map-files
)
256 (setcdr prev
(cdr map
))
257 (setq nneething-map
(cdr nneething-map
))))
258 (setq map
(cdr map
))))
259 ;; Find all new files and enter them into the map.
261 (unless (member (car files
) map-files
)
262 ;; This file is not in the map, so we enter it.
264 (setcdr nneething-active
(1+ (cdr nneething-active
)))
265 (push (list (cdr nneething-active
) (car files
)
266 (nth 5 (file-attributes
267 (nneething-file-name (car files
)))))
269 (setq files
(cdr files
)))
271 (not nneething-read-only
))
272 (with-temp-file map-file
273 (insert "(setq nneething-map '")
274 (gnus-prin1 nneething-map
)
275 (insert ")\n(setq nneething-active '")
276 (gnus-prin1 nneething-active
)
279 (defun nneething-insert-head (file)
280 "Insert the head of FILE."
281 (when (nneething-get-head file
)
282 (insert-buffer-substring nneething-work-buffer
)
283 (goto-char (point-max))))
285 (defun nneething-encode-file-name (file &optional coding-system
)
286 "Encode the name of the FILE in CODING-SYSTEM."
288 (setq file
(mm-encode-coding-string
289 file
(or coding-system nnmail-pathname-coding-system
)))
290 (while (string-match "[^-0-9a-zA-Z_:/.]" file pos
)
291 (setq buf
(cons (format "%%%02x" (aref file
(match-beginning 0)))
292 (cons (substring file pos
(match-beginning 0)) buf
))
294 (apply (function concat
)
295 (nreverse (cons (substring file pos
) buf
)))))
297 (defun nneething-decode-file-name (file &optional coding-system
)
298 "Decode the name of the FILE is encoded in CODING-SYSTEM."
300 (while (string-match "%\\([0-9a-fA-F][0-9a-fA-F]\\)" file pos
)
301 (setq buf
(cons (string (string-to-number (match-string 1 file
) 16))
302 (cons (substring file pos
(match-beginning 0)) buf
))
304 (mm-decode-coding-string
305 (apply (function concat
)
306 (nreverse (cons (substring file pos
) buf
)))
307 (or coding-system nnmail-pathname-coding-system
))))
309 (defun nneething-get-file-name (id)
310 "Extract the file name from the message ID string."
311 (when (string-match "\\`<nneething-\\([^@]+\\)@.*>\\'" id
)
312 (nneething-decode-file-name (match-string 1 id
))))
314 (defun nneething-make-head (file &optional buffer extra-msg
315 mime-type mime-charset mime-encoding
)
316 "Create a head by looking at the file attributes of FILE."
317 (let ((atts (file-attributes file
)))
319 "Subject: " (file-name-nondirectory file
) (or extra-msg
"") "\n"
320 "Message-ID: <nneething-" (nneething-encode-file-name file
)
321 "@" (system-name) ">\n"
322 (if (equal '(0 0) (nth 5 atts
)) ""
323 (concat "Date: " (current-time-string (nth 5 atts
)) "\n"))
327 (when (re-search-forward "<[a-zA-Z0-9_]@[-a-zA-Z0-9_]>" 1000 t
)
328 (concat "From: " (match-string 0) "\n"))))
329 (nneething-from-line (nth 2 atts
) file
))
330 (if (> (string-to-number (int-to-string (nth 7 atts
))) 0)
331 (concat "Chars: " (int-to-string (nth 7 atts
)) "\n")
336 (concat "Lines: " (int-to-string
337 (count-lines (point-min) (point-max)))
341 (concat "Content-Type: " mime-type
344 (if (stringp mime-charset
)
346 (symbol-name mime-charset
)))
349 (concat "\nContent-Transfer-Encoding: " mime-encoding
)
351 "\nMIME-Version: 1.0\n")
354 (defun nneething-from-line (uid &optional file
)
355 "Return a From header based of UID."
356 (let* ((login (condition-case nil
357 (user-login-name uid
)
359 (cond ((= uid
(user-uid)) (user-login-name))
361 (t (int-to-string uid
))))))
362 (name (condition-case nil
365 (cond ((= uid
(user-uid)) (user-full-name))
366 ((zerop uid
) "Ms. Root")))))
367 (host (if (string-match "\\`/[^/@]*@\\([^:/]+\\):" file
)
373 "/\\(users\\|home\\)/\\([^/]+\\)/" file
)
374 (setq login
(substring file
379 (concat "From: " login
"@" host
380 (if name
(concat " (" name
")") "") "\n")))
382 (defun nneething-get-head (file)
383 "Either find the head in FILE or make a head for FILE."
385 (set-buffer (get-buffer-create nneething-work-buffer
))
386 (setq case-fold-search nil
)
387 (buffer-disable-undo)
390 ((not (file-exists-p file
))
391 ;; The file do not exist.
393 ((or (file-directory-p file
)
394 (file-symlink-p file
))
395 ;; It's a dir, so we fudge a head.
396 (nneething-make-head file
) t
)
398 ;; We examine the file.
401 (nnheader-insert-head file
)
402 (if (nnheader-article-p)
405 (goto-char (point-min))
406 (or (and (search-forward "\n\n" nil t
)
410 (goto-char (point-min))
411 (nneething-make-head file
(current-buffer))
412 (delete-region (point) (point-max))))
414 (nneething-make-head file
(current-buffer) " (unreadable)")))
417 (defun nneething-file-name (article)
418 "Return the file name of ARTICLE."
419 (let ((dir (file-name-as-directory nneething-address
))
421 (if (numberp article
)
422 (if (setq fname
(cadr (assq article nneething-map
)))
423 (expand-file-name fname dir
)
424 (make-temp-name (expand-file-name "nneething" dir
)))
425 (expand-file-name article dir
))))
429 ;; arch-tag: 1277f386-88f2-4459-bb24-f3f45962a6c5
430 ;;; nneething.el ends here