2001-07-11 04:00:00 ShengHuo ZHU <zsh@cs.rochester.edu>
[gnus] / lisp / nndraft.el
1 ;;; nndraft.el --- draft article access for Gnus
2 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000
3 ;;        Free Software Foundation, Inc.
4
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
6 ;; Keywords: news
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Commentary:
26
27 ;;; Code:
28
29 (require 'nnheader)
30 (require 'nnmail)
31 (require 'gnus-start)
32 (require 'nnmh)
33 (require 'nnoo)
34 (require 'mm-util)
35 (eval-when-compile
36   (require 'cl))
37
38 (nnoo-declare nndraft
39   nnmh)
40
41 (defvoo nndraft-directory (nnheader-concat gnus-directory "drafts/")
42   "Where nndraft will store its files."
43   nnmh-directory)
44
45 \f
46
47 (defvoo nndraft-current-group "" nil nnmh-current-group)
48 (defvoo nndraft-get-new-mail nil nil nnmh-get-new-mail)
49 (defvoo nndraft-current-directory nil nil nnmh-current-directory)
50
51 (defconst nndraft-version "nndraft 1.0")
52 (defvoo nndraft-status-string "" nil nnmh-status-string)
53
54 \f
55
56 ;;; Interface functions.
57
58 (nnoo-define-basics nndraft)
59
60 (deffoo nndraft-open-server (server &optional defs)
61   (nnoo-change-server 'nndraft server defs)
62   (cond
63    ((not (file-exists-p nndraft-directory))
64     (nndraft-close-server)
65     (nnheader-report 'nndraft "No such file or directory: %s"
66                      nndraft-directory))
67    ((not (file-directory-p (file-truename nndraft-directory)))
68     (nndraft-close-server)
69     (nnheader-report 'nndraft "Not a directory: %s" nndraft-directory))
70    (t
71     (nnheader-report 'nndraft "Opened server %s using directory %s"
72                      server nndraft-directory)
73     t)))
74
75 (deffoo nndraft-retrieve-headers (articles &optional group server fetch-old)
76   (nndraft-possibly-change-group group)
77   (save-excursion
78     (set-buffer nntp-server-buffer)
79     (erase-buffer)
80     (let* (article)
81       ;; We don't support fetching by Message-ID.
82       (if (stringp (car articles))
83           'headers
84         (while articles
85           (narrow-to-region (point) (point))
86           (when (nndraft-request-article
87                  (setq article (pop articles)) group server (current-buffer))
88             (goto-char (point-min))
89             (if (search-forward "\n\n" nil t)
90                 (forward-line -1)
91               (goto-char (point-max)))
92             (delete-region (point) (point-max))
93             (goto-char (point-min))
94             (insert (format "221 %d Article retrieved.\n" article))
95             (widen)
96             (goto-char (point-max))
97             (insert ".\n")))
98
99         (nnheader-fold-continuation-lines)
100         'headers))))
101
102 (deffoo nndraft-request-article (id &optional group server buffer)
103   (nndraft-possibly-change-group group)
104   (when (numberp id)
105     ;; We get the newest file of the auto-saved file and the
106     ;; "real" file.
107     (let* ((file (nndraft-article-filename id))
108            (auto (nndraft-auto-save-file-name file))
109            (newest (if (file-newer-than-file-p file auto) file auto))
110            (nntp-server-buffer (or buffer nntp-server-buffer)))
111       (when (and (file-exists-p newest)
112                  (let ((nnmail-file-coding-system
113                         (if (file-newer-than-file-p file auto)
114                             (if (equal group "drafts")
115                                 message-draft-coding-system
116                               mm-text-coding-system)
117                           mm-auto-save-coding-system)))
118                    (nnmail-find-file newest)))
119         (save-excursion
120           (set-buffer nntp-server-buffer)
121           (goto-char (point-min))
122           ;; If there's a mail header separator in this file,
123           ;; we remove it.
124           (when (re-search-forward
125                  (concat "^" mail-header-separator "$") nil t)
126             (replace-match "" t t)))
127         t))))
128
129 (deffoo nndraft-request-restore-buffer (article &optional group server)
130   "Request a new buffer that is restored to the state of ARTICLE."
131   (nndraft-possibly-change-group group)
132   (when (nndraft-request-article article group server (current-buffer))
133     (message-remove-header "xref")
134     (message-remove-header "lines")
135     ;; Articles in nndraft:queue are considered as sent messages.  The
136     ;; Date field should be the time when they are sent.
137     ;;(message-remove-header "date")
138     t))
139
140 (deffoo nndraft-request-update-info (group info &optional server)
141   (nndraft-possibly-change-group group)
142   (gnus-info-set-read
143    info
144    (gnus-update-read-articles (gnus-group-prefixed-name group '(nndraft ""))
145                               (nndraft-articles) t))
146   (let ((marks (nth 3 info)))
147     (when marks
148       ;; Nix out all marks except the `unsend'-able article marks.
149       (setcar (nthcdr 3 info)
150               (if (assq 'unsend marks)
151                   (list (assq 'unsend marks))
152                 nil))))
153   t)
154
155 (deffoo nndraft-request-associate-buffer (group)
156   "Associate the current buffer with some article in the draft group."
157   (nndraft-open-server "")
158   (nndraft-request-group group)
159   (nndraft-possibly-change-group group)
160   (let ((gnus-verbose-backends nil)
161         (buf (current-buffer))
162         article file)
163     (with-temp-buffer
164       (insert-buffer-substring buf)
165       (setq article (nndraft-request-accept-article
166                      group (nnoo-current-server 'nndraft) t 'noinsert)
167             file (nndraft-article-filename article)))
168     (setq buffer-file-name (expand-file-name file)
169           buffer-auto-save-file-name (make-auto-save-file-name))
170     (clear-visited-file-modtime)
171     article))
172
173 (deffoo nndraft-request-group (group &optional server dont-check)
174   (nndraft-possibly-change-group group)
175   (unless dont-check
176     (let* ((pathname (nnmail-group-pathname group nndraft-directory))
177            (file-name-coding-system nnmail-pathname-coding-system)
178            dir file)
179       (nnheader-re-read-dir pathname)
180       (setq dir (mapcar (lambda (name) (string-to-int (substring name 1)))
181                         (directory-files pathname nil "^#[0-9]+#$" t)))
182       (dolist (n dir)
183         (unless (file-exists-p
184                  (setq file (expand-file-name (int-to-string n) pathname)))
185           (rename-file (let ((buffer-file-name file))
186                          (make-auto-save-file-name)) file)))))
187   (nnoo-parent-function 'nndraft
188                         'nnmh-request-group
189                         (list group server dont-check)))
190
191 (deffoo nndraft-request-expire-articles (articles group &optional server force)
192   (nndraft-possibly-change-group group)
193   (let* ((nnmh-allow-delete-final t)
194          (res (nnoo-parent-function 'nndraft
195                                     'nnmh-request-expire-articles
196                                     (list articles group server force)))
197          article)
198     ;; Delete all the "state" files of articles that have been expired.
199     (while articles
200       (unless (memq (setq article (pop articles)) res)
201         (let ((auto (nndraft-auto-save-file-name
202                      (nndraft-article-filename article))))
203           (when (file-exists-p auto)
204             (funcall nnmail-delete-file-function auto)))
205         (dolist (backup
206                  (let ((kept-new-versions 1)
207                        (kept-old-versions 0))
208                    (find-backup-file-name
209                     (nndraft-article-filename article))))
210           (when (file-exists-p backup)
211             (funcall nnmail-delete-file-function backup)))))
212     res))
213
214 (deffoo nndraft-request-accept-article (group &optional server last noinsert)
215   (nndraft-possibly-change-group group)
216   (let ((gnus-verbose-backends nil))
217     (nnoo-parent-function 'nndraft 'nnmh-request-accept-article
218                           (list group server last noinsert))))
219
220 (deffoo nndraft-request-replace-article (article group buffer)
221   (nndraft-possibly-change-group group)
222   (let ((nnmail-file-coding-system
223          (if (equal group "drafts")
224              mm-auto-save-coding-system
225            mm-text-coding-system)))
226     (nnoo-parent-function 'nndraft 'nnmh-request-replace-article
227                           (list article group buffer))))
228
229 (deffoo nndraft-request-create-group (group &optional server args)
230   (nndraft-possibly-change-group group)
231   (if (file-exists-p nndraft-current-directory)
232       (if (file-directory-p nndraft-current-directory)
233           t
234         nil)
235     (condition-case ()
236         (progn
237           (gnus-make-directory nndraft-current-directory)
238           t)
239       (file-error nil))))
240
241 \f
242 ;;; Low-Level Interface
243
244 (defun nndraft-possibly-change-group (group)
245   (when (and group
246              (not (equal group nndraft-current-group)))
247     (nndraft-open-server "")
248     (setq nndraft-current-group group)
249     (setq nndraft-current-directory
250           (nnheader-concat nndraft-directory group))))
251
252 (defun nndraft-article-filename (article &rest args)
253   (apply 'concat
254          (file-name-as-directory nndraft-current-directory)
255          (int-to-string article)
256          args))
257
258 (defun nndraft-auto-save-file-name (file)
259   (save-excursion
260     (prog1
261         (progn
262           (set-buffer (get-buffer-create " *draft tmp*"))
263           (setq buffer-file-name file)
264           (make-auto-save-file-name))
265       (kill-buffer (current-buffer)))))
266
267 (defun nndraft-articles ()
268   "Return the list of messages in the group."
269   (gnus-make-directory nndraft-current-directory)
270   (sort
271    (mapcar 'string-to-int
272            (directory-files nndraft-current-directory nil "\\`[0-9]+\\'" t))
273    '<))
274
275 (nnoo-import nndraft
276   (nnmh
277    nnmh-retrieve-headers
278    nnmh-request-group
279    nnmh-close-group
280    nnmh-request-list
281    nnmh-request-newsgroups
282    nnmh-request-move-article))
283
284 (provide 'nndraft)
285
286 ;;; nndraft.el ends here