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