1 ;;; nndraft.el --- draft article access for Gnus
3 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
4 ;; 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
9 ;; This file is part of GNU Emacs.
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 3 of the License, or
14 ;; (at your option) any later version.
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.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
34 (eval-when-compile (require 'cl
))
39 (defvoo nndraft-directory
(nnheader-concat gnus-directory
"drafts/")
40 "Where nndraft will store its files."
43 (defvar nndraft-required-headers
'(Date)
44 "*Headers to be generated when saving a draft message.
45 The headers in this variable and the ones in `message-required-headers'
46 are generated if and only if they are also in `message-draft-headers'.")
50 (defvoo nndraft-current-group
"" nil nnmh-current-group
)
51 (defvoo nndraft-get-new-mail nil nil nnmh-get-new-mail
)
52 (defvoo nndraft-current-directory nil nil nnmh-current-directory
)
54 (defconst nndraft-version
"nndraft 1.0")
55 (defvoo nndraft-status-string
"" nil nnmh-status-string
)
59 ;;; Interface functions.
61 (nnoo-define-basics nndraft
)
63 (deffoo nndraft-open-server
(server &optional defs
)
64 (nnoo-change-server 'nndraft server defs
)
66 ((not (file-exists-p nndraft-directory
))
67 (nndraft-close-server)
68 (nnheader-report 'nndraft
"No such file or directory: %s"
70 ((not (file-directory-p (file-truename nndraft-directory
)))
71 (nndraft-close-server)
72 (nnheader-report 'nndraft
"Not a directory: %s" nndraft-directory
))
74 (nnheader-report 'nndraft
"Opened server %s using directory %s"
75 server nndraft-directory
)
78 (deffoo nndraft-retrieve-headers
(articles &optional group server fetch-old
)
79 (nndraft-possibly-change-group group
)
81 (set-buffer nntp-server-buffer
)
84 ;; We don't support fetching by Message-ID.
85 (if (stringp (car articles
))
88 (narrow-to-region (point) (point))
89 (when (nndraft-request-article
90 (setq article
(pop articles
)) group server
(current-buffer))
91 (goto-char (point-min))
92 (if (search-forward "\n\n" nil t
)
94 (goto-char (point-max)))
95 (delete-region (point) (point-max))
96 (goto-char (point-min))
97 (insert (format "221 %d Article retrieved.\n" article
))
99 (goto-char (point-max))
102 (nnheader-fold-continuation-lines)
105 (deffoo nndraft-request-article
(id &optional group server buffer
)
106 (nndraft-possibly-change-group group
)
108 ;; We get the newest file of the auto-saved file and the
110 (let* ((file (nndraft-article-filename id
))
111 (auto (nndraft-auto-save-file-name file
))
112 (newest (if (file-newer-than-file-p file auto
) file auto
))
113 (nntp-server-buffer (or buffer nntp-server-buffer
)))
114 (when (and (file-exists-p newest
)
115 (let ((nnmail-file-coding-system
116 (if (file-newer-than-file-p file auto
)
117 (if (member group
'("drafts" "delayed"))
118 message-draft-coding-system
119 mm-text-coding-system
)
120 mm-auto-save-coding-system
)))
121 (nnmail-find-file newest
)))
123 (set-buffer nntp-server-buffer
)
124 (goto-char (point-min))
125 ;; If there's a mail header separator in this file,
127 (when (re-search-forward
128 (concat "^" (regexp-quote mail-header-separator
) "$") nil t
)
129 (replace-match "" t t
)))
132 (deffoo nndraft-request-restore-buffer
(article &optional group server
)
133 "Request a new buffer that is restored to the state of ARTICLE."
134 (nndraft-possibly-change-group group
)
135 (when (nndraft-request-article article group server
(current-buffer))
136 (message-remove-header "xref")
137 (message-remove-header "lines")
138 ;; Articles in nndraft:queue are considered as sent messages. The
139 ;; Date field should be the time when they are sent.
140 ;;(message-remove-header "date")
143 (deffoo nndraft-request-update-info
(group info
&optional server
)
144 (nndraft-possibly-change-group group
)
147 (gnus-update-read-articles (gnus-group-prefixed-name group
'(nndraft ""))
148 (nndraft-articles) t
))
149 (let ((marks (nth 3 info
)))
151 ;; Nix out all marks except the `unsend'-able article marks.
152 (setcar (nthcdr 3 info
)
153 (if (assq 'unsend marks
)
154 (list (assq 'unsend marks
))
158 (defun nndraft-generate-headers ()
160 (message-generate-headers
161 (message-headers-to-generate
162 nndraft-required-headers message-draft-headers nil
))))
164 (deffoo nndraft-request-associate-buffer
(group)
165 "Associate the current buffer with some article in the draft group."
166 (nndraft-open-server "")
167 (nndraft-request-group group
)
168 (nndraft-possibly-change-group group
)
169 (let ((gnus-verbose-backends nil
)
170 (buf (current-buffer))
173 (insert-buffer-substring buf
)
174 (setq article
(nndraft-request-accept-article
175 group
(nnoo-current-server 'nndraft
) t
'noinsert
)
176 file
(nndraft-article-filename article
)))
177 (setq buffer-file-name
(expand-file-name file
)
178 buffer-auto-save-file-name
(make-auto-save-file-name))
179 (clear-visited-file-modtime)
180 (let ((hook (if (boundp 'write-contents-functions
)
181 'write-contents-functions
182 'write-contents-hooks
)))
183 (gnus-make-local-hook hook
)
184 (add-hook hook
'nndraft-generate-headers nil t
))
187 (deffoo nndraft-request-group
(group &optional server dont-check
)
188 (nndraft-possibly-change-group group
)
190 (let* ((pathname (nnmail-group-pathname group nndraft-directory
))
191 (file-name-coding-system nnmail-pathname-coding-system
)
193 (nnheader-re-read-dir pathname
)
194 (setq dir
(mapcar (lambda (name) (string-to-number (substring name
1)))
195 (ignore-errors (directory-files
196 pathname nil
"^#[0-9]+#$" t
))))
198 (unless (file-exists-p
199 (setq file
(expand-file-name (int-to-string n
) pathname
)))
200 (rename-file (nndraft-auto-save-file-name file
) file
)))))
201 (nnoo-parent-function 'nndraft
203 (list group server dont-check
)))
205 (deffoo nndraft-request-move-article
(article group server accept-form
206 &optional last move-is-internal
)
207 (nndraft-possibly-change-group group
)
208 (let ((buf (get-buffer-create " *nndraft move*"))
211 (nndraft-request-article article group server
)
215 (insert-buffer-substring nntp-server-buffer
)
216 (setq result
(eval accept-form
))
217 (kill-buffer (current-buffer))
219 (null (nndraft-request-expire-articles (list article
) group server
'force
))
222 (deffoo nndraft-request-expire-articles
(articles group
&optional server force
)
223 (nndraft-possibly-change-group group
)
224 (let* ((nnmh-allow-delete-final t
)
225 (res (nnoo-parent-function 'nndraft
226 'nnmh-request-expire-articles
227 (list articles group server force
)))
229 ;; Delete all the "state" files of articles that have been expired.
231 (unless (memq (setq article
(pop articles
)) res
)
232 (let ((auto (nndraft-auto-save-file-name
233 (nndraft-article-filename article
))))
234 (when (file-exists-p auto
)
235 (funcall nnmail-delete-file-function auto
)))
237 (let ((kept-new-versions 1)
238 (kept-old-versions 0))
239 (find-backup-file-name
240 (nndraft-article-filename article
))))
241 (when (file-exists-p backup
)
242 (funcall nnmail-delete-file-function backup
)))))
245 (deffoo nndraft-request-accept-article
(group &optional server last noinsert
)
246 (nndraft-possibly-change-group group
)
247 (let ((gnus-verbose-backends nil
))
248 (nnoo-parent-function 'nndraft
'nnmh-request-accept-article
249 (list group server last noinsert
))))
251 (deffoo nndraft-request-replace-article
(article group buffer
)
252 (nndraft-possibly-change-group group
)
253 (let ((nnmail-file-coding-system
254 (if (member group
'("drafts" "delayed"))
255 message-draft-coding-system
256 mm-text-coding-system
)))
257 (nnoo-parent-function 'nndraft
'nnmh-request-replace-article
258 (list article group buffer
))))
260 (deffoo nndraft-request-create-group
(group &optional server args
)
261 (nndraft-possibly-change-group group
)
262 (if (file-exists-p nndraft-current-directory
)
263 (if (file-directory-p nndraft-current-directory
)
268 (gnus-make-directory nndraft-current-directory
)
273 ;;; Low-Level Interface
275 (defun nndraft-possibly-change-group (group)
277 (not (equal group nndraft-current-group
)))
278 (nndraft-open-server "")
279 (setq nndraft-current-group group
)
280 (setq nndraft-current-directory
281 (nnheader-concat nndraft-directory group
))))
283 (defun nndraft-article-filename (article &rest args
)
285 (file-name-as-directory nndraft-current-directory
)
286 (int-to-string article
)
289 (defun nndraft-auto-save-file-name (file)
293 (set-buffer (get-buffer-create " *draft tmp*"))
294 (setq buffer-file-name file
)
295 (make-auto-save-file-name))
296 (kill-buffer (current-buffer)))))
298 (defun nndraft-articles ()
299 "Return the list of messages in the group."
300 (gnus-make-directory nndraft-current-directory
)
302 (mapcar 'string-to-number
303 (directory-files nndraft-current-directory nil
"\\`[0-9]+\\'" t
))
308 nnmh-retrieve-headers
312 nnmh-request-newsgroups
))
316 ;; arch-tag: 3ce26ca0-41cb-48b1-8703-4dad35e188aa
317 ;;; nndraft.el ends here