* mm-util.el (mm-auto-save-coding-system): Default to iso-2022-7bit.
[gnus] / lisp / nndraft.el
1 ;;; nndraft.el --- draft article access for Gnus
2
3 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001
4 ;;        Free Software Foundation, Inc.
5
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
7 ;; Keywords: news
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
25
26 ;;; Commentary:
27
28 ;;; Code:
29
30 (require 'nnheader)
31 (require 'nnmail)
32 (require 'gnus-start)
33 (require 'nnmh)
34 (require 'nnoo)
35 (require 'mm-util)
36 (eval-when-compile (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            ;; The default value for `message-draft-coding-system' was
112            ;; `emacs-mule' for Emacs in the past, and the existing draft
113            ;; files may have been saved using that coding-system.
114            (maybe-emacs-mule-p (and (not (featurep 'xemacs))
115                                     (eq message-draft-coding-system
116                                         ;; The present default value.
117                                         'iso-2022-7bit)
118                                     (mm-coding-system-p 'emacs-mule))))
119       (when (and (file-exists-p newest)
120                  (let ((nnmail-file-coding-system
121                         (if (file-newer-than-file-p file auto)
122                             (if (member group '("drafts" "delayed"))
123                                 (if maybe-emacs-mule-p
124                                     mm-text-coding-system
125                                   message-draft-coding-system)
126                               mm-text-coding-system)
127                           mm-auto-save-coding-system)))
128                    (nnmail-find-file newest)))
129         (save-excursion
130           (set-buffer nntp-server-buffer)
131           (when maybe-emacs-mule-p
132             (goto-char (point-min))
133             (if (re-search-forward "[^\000-\177]" nil t)
134                 ;; Consider the file has been saved using `emacs-mule'.
135                 (mm-decode-coding-region (point-min) (point-max)
136                                          'emacs-mule)
137               (mm-decode-coding-region (point-min) (point-max)
138                                        message-draft-coding-system)))
139           (goto-char (point-min))
140           ;; If there's a mail header separator in this file,
141           ;; we remove it.
142           (when (re-search-forward
143                  (concat "^" mail-header-separator "$") nil t)
144             (replace-match "" t t)))
145         t))))
146
147 (deffoo nndraft-request-restore-buffer (article &optional group server)
148   "Request a new buffer that is restored to the state of ARTICLE."
149   (nndraft-possibly-change-group group)
150   (when (nndraft-request-article article group server (current-buffer))
151     (message-remove-header "xref")
152     (message-remove-header "lines")
153     ;; Articles in nndraft:queue are considered as sent messages.  The
154     ;; Date field should be the time when they are sent.
155     ;;(message-remove-header "date")
156     t))
157
158 (deffoo nndraft-request-update-info (group info &optional server)
159   (nndraft-possibly-change-group group)
160   (gnus-info-set-read
161    info
162    (gnus-update-read-articles (gnus-group-prefixed-name group '(nndraft ""))
163                               (nndraft-articles) t))
164   (let ((marks (nth 3 info)))
165     (when marks
166       ;; Nix out all marks except the `unsend'-able article marks.
167       (setcar (nthcdr 3 info)
168               (if (assq 'unsend marks)
169                   (list (assq 'unsend marks))
170                 nil))))
171   t)
172
173 (deffoo nndraft-request-associate-buffer (group)
174   "Associate the current buffer with some article in the draft group."
175   (nndraft-open-server "")
176   (nndraft-request-group group)
177   (nndraft-possibly-change-group group)
178   (let ((gnus-verbose-backends nil)
179         (buf (current-buffer))
180         article file)
181     (with-temp-buffer
182       (insert-buffer-substring buf)
183       (setq article (nndraft-request-accept-article
184                      group (nnoo-current-server 'nndraft) t 'noinsert)
185             file (nndraft-article-filename article)))
186     (setq buffer-file-name (expand-file-name file)
187           buffer-auto-save-file-name (make-auto-save-file-name))
188     (clear-visited-file-modtime)
189     article))
190
191 (deffoo nndraft-request-group (group &optional server dont-check)
192   (nndraft-possibly-change-group group)
193   (unless dont-check
194     (let* ((pathname (nnmail-group-pathname group nndraft-directory))
195            (file-name-coding-system nnmail-pathname-coding-system)
196            dir file)
197       (nnheader-re-read-dir pathname)
198       (setq dir (mapcar (lambda (name) (string-to-int (substring name 1)))
199                         (directory-files pathname nil "^#[0-9]+#$" t)))
200       (dolist (n dir)
201         (unless (file-exists-p
202                  (setq file (expand-file-name (int-to-string n) pathname)))
203           (rename-file (nndraft-auto-save-file-name file) file)))))
204   (nnoo-parent-function 'nndraft
205                         'nnmh-request-group
206                         (list group server dont-check)))
207
208 (deffoo nndraft-request-expire-articles (articles group &optional server force)
209   (nndraft-possibly-change-group group)
210   (let* ((nnmh-allow-delete-final t)
211          (res (nnoo-parent-function 'nndraft
212                                     'nnmh-request-expire-articles
213                                     (list articles group server force)))
214          article)
215     ;; Delete all the "state" files of articles that have been expired.
216     (while articles
217       (unless (memq (setq article (pop articles)) res)
218         (let ((auto (nndraft-auto-save-file-name
219                      (nndraft-article-filename article))))
220           (when (file-exists-p auto)
221             (funcall nnmail-delete-file-function auto)))
222         (dolist (backup
223                  (let ((kept-new-versions 1)
224                        (kept-old-versions 0))
225                    (find-backup-file-name
226                     (nndraft-article-filename article))))
227           (when (file-exists-p backup)
228             (funcall nnmail-delete-file-function backup)))))
229     res))
230
231 (deffoo nndraft-request-accept-article (group &optional server last noinsert)
232   (nndraft-possibly-change-group group)
233   (let ((gnus-verbose-backends nil))
234     (nnoo-parent-function 'nndraft 'nnmh-request-accept-article
235                           (list group server last noinsert))))
236
237 (deffoo nndraft-request-replace-article (article group buffer)
238   (nndraft-possibly-change-group group)
239   (let ((nnmail-file-coding-system
240          (if (member group '("drafts" "delayed"))
241              message-draft-coding-system
242            mm-text-coding-system)))
243     (nnoo-parent-function 'nndraft 'nnmh-request-replace-article
244                           (list article group buffer))))
245
246 (deffoo nndraft-request-create-group (group &optional server args)
247   (nndraft-possibly-change-group group)
248   (if (file-exists-p nndraft-current-directory)
249       (if (file-directory-p nndraft-current-directory)
250           t
251         nil)
252     (condition-case ()
253         (progn
254           (gnus-make-directory nndraft-current-directory)
255           t)
256       (file-error nil))))
257
258 \f
259 ;;; Low-Level Interface
260
261 (defun nndraft-possibly-change-group (group)
262   (when (and group
263              (not (equal group nndraft-current-group)))
264     (nndraft-open-server "")
265     (setq nndraft-current-group group)
266     (setq nndraft-current-directory
267           (nnheader-concat nndraft-directory group))))
268
269 (defun nndraft-article-filename (article &rest args)
270   (apply 'concat
271          (file-name-as-directory nndraft-current-directory)
272          (int-to-string article)
273          args))
274
275 (defun nndraft-auto-save-file-name (file)
276   (save-excursion
277     (prog1
278         (progn
279           (set-buffer (get-buffer-create " *draft tmp*"))
280           (setq buffer-file-name file)
281           (make-auto-save-file-name))
282       (kill-buffer (current-buffer)))))
283
284 (defun nndraft-articles ()
285   "Return the list of messages in the group."
286   (gnus-make-directory nndraft-current-directory)
287   (sort
288    (mapcar 'string-to-int
289            (directory-files nndraft-current-directory nil "\\`[0-9]+\\'" t))
290    '<))
291
292 (nnoo-import nndraft
293   (nnmh
294    nnmh-retrieve-headers
295    nnmh-request-group
296    nnmh-close-group
297    nnmh-request-list
298    nnmh-request-newsgroups
299    nnmh-request-move-article))
300
301 (provide 'nndraft)
302
303 ;;; nndraft.el ends here