*** empty log message ***
[gnus] / lisp / gnus-nocem.el
1 ;;; gnus-nocem.el --- NoCeM pseudo-cancellation treatment
2 ;; Copyright (C) 1995,96 Free Software Foundation, Inc.
3
4 ;; Author: Lars Magne Ingebrigtsen <larsi@ifi.uio.no>
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 'gnus)
29 (require 'nnmail)
30 (eval-when-compile (require 'cl))
31
32 (defvar gnus-nocem-groups 
33   '("alt.nocem.misc" "news.admin.net-abuse.announce")
34   "*List of groups that will be searched for NoCeM messages.")
35
36 (defvar gnus-nocem-issuers 
37   '("Automoose-1" ; The CancelMoose[tm] on autopilot.
38     "clewis@ferret.ocunix.on.ca;" ; Chris Lewis -- Canadian angel & despammer.
39     "jem@xpat.com;"  ; Jem -- Korean despammer.
40     "red@redpoll.mrfs.oh.us (Richard E. Depew)" ; Spew/bincancel guy.
41     )
42   "*List of NoCeM issuers to pay attention to.")
43
44 (defvar gnus-nocem-directory 
45   (concat (file-name-as-directory gnus-article-save-directory) "NoCeM/")
46   "*Directory where NoCeM files will be stored.")
47
48 (defvar gnus-nocem-expiry-wait 15
49   "*Number of days to keep NoCeM headers in the cache.")
50
51 ;;; Internal variables
52
53 (defvar gnus-nocem-active nil)
54 (defvar gnus-nocem-alist nil)
55 (defvar gnus-nocem-touched-alist nil)
56 (defvar gnus-nocem-hashtb nil)
57
58 ;;; Functions
59
60 (defun gnus-nocem-active-file ()
61   (concat (file-name-as-directory gnus-nocem-directory) "active"))
62
63 (defun gnus-nocem-cache-file ()
64   (concat (file-name-as-directory gnus-nocem-directory) "cache"))
65
66 (defun gnus-nocem-scan-groups ()
67   "Scan all NoCeM groups for new NoCeM messages."
68   (interactive)
69   (let ((groups gnus-nocem-groups)
70         group active gactive articles)
71     (or (file-exists-p gnus-nocem-directory)
72         (make-directory gnus-nocem-directory t))
73     ;; Load any previous NoCeM headers.
74     (gnus-nocem-load-cache)
75     ;; Read the active file if it hasn't been read yet.
76     (and (file-exists-p (gnus-nocem-active-file))
77          (not gnus-nocem-active)
78          (condition-case ()
79              (load (gnus-nocem-active-file) t t t)
80            (error nil)))
81     ;; Go through all groups and see whether new articles have
82     ;; arrived.  
83     (while (setq group (pop groups))
84       (if (not (setq gactive (gnus-activate-group group)))
85           () ; This group doesn't exist.
86         (setq active (nth 1 (assoc group gnus-nocem-active)))
87         (when (and (not (< (cdr gactive) (car gactive))) ; Empty group.
88                    (or (not active)
89                        (< (cdr active) (cdr gactive))))
90           ;; Ok, there are new articles in this group, se we fetch the
91           ;; headers.
92           (let ((gnus-newsgroup-dependencies (make-vector 10 nil))
93                 headers)
94             (setq headers
95                   (if (eq 'nov
96                           (gnus-retrieve-headers 
97                            (setq articles
98                                  (gnus-uncompress-range
99                                   (cons 
100                                    (if active (1+ (cdr active)) (car gactive))
101                                    (cdr gactive))))
102                            group))
103                       (gnus-get-newsgroup-headers-xover articles)
104                     (gnus-get-newsgroup-headers)))
105             (while headers
106               ;; We take a closer look on all articles that have
107               ;; "@@NCM" in the subject.  
108               (when (string-match "@@NCM" (mail-header-subject (car headers)))
109                 (gnus-nocem-check-article group (car headers)))
110               (setq headers (cdr headers)))))
111         (setq gnus-nocem-active
112               (cons (list group gactive) 
113                     (delq (assoc group gnus-nocem-active)
114                           gnus-nocem-active)))))
115     ;; Save the results, if any.
116     (gnus-nocem-save-cache)
117     (gnus-nocem-save-active)))
118
119 (defun gnus-nocem-check-article (group header)
120   "Check whether the current article is an NCM article and that we want it."
121   (nnheader-temp-write nil
122     ;; Get the article.
123     (gnus-message 7 "Checking article %d in %s for NoCeM..."
124                   (mail-header-number header) group)
125     (let ((date (mail-header-date header))
126           issuer b e)
127       (when (or (not date)
128                 (nnmail-time-less 
129                  (nnmail-time-since (nnmail-date-to-time date))
130                  (nnmail-days-to-time gnus-nocem-expiry-wait)))
131         (gnus-request-article-this-buffer (mail-header-number header) group)
132         ;; The article has to have proper NoCeM headers.
133         (when (and (setq b (search-forward "\n@@BEGIN NCM HEADERS\n" nil t))
134                    (setq e (search-forward "\n@@BEGIN NCM BODY\n" nil t)))
135           ;; We get the name of the issuer.
136           (narrow-to-region b e)
137           (setq issuer (mail-fetch-field "issuer"))
138           (and (member issuer gnus-nocem-issuers) ; We like her...
139                (gnus-nocem-verify-issuer issuer) ; She is who she says she is..
140                (gnus-nocem-enter-article))))))) ; We gobble the message.
141   
142 (defun gnus-nocem-verify-issuer (person)
143   "Verify using PGP that the canceler is who she says she is."
144   t)
145
146 (defun gnus-nocem-enter-article ()
147   "Enter the current article into the NoCeM cache."
148   (widen)
149   (goto-char (point-min))
150   (let ((b (search-forward "\n@@BEGIN NCM BODY\n" nil t))
151         (e (search-forward "\n@@END NCM BODY\n" nil t))
152         (buf (current-buffer))
153         ncm id)
154     (when (and b e)
155       (narrow-to-region b (1+ (match-beginning 0)))
156       (goto-char (point-min))
157       (while (search-forward "\t" nil t)
158         (when (boundp (let ((obarray gnus-newsrc-hashtb)) (read buf)))
159           (beginning-of-line)
160           (while (= (following-char) ?\t)
161             (forward-line -1))
162           (setq id (buffer-substring (point) (1- (search-forward "\t"))))
163           (push id ncm)
164           (gnus-sethash id t gnus-nocem-hashtb)
165           (forward-line 1)
166           (while (= (following-char) ?\t)
167             (forward-line 1))))
168       (when ncm
169         (setq gnus-nocem-touched-alist t)
170         (push (cons (let ((time (current-time))) (setcdr (cdr time) nil) time)
171                     ncm) 
172               gnus-nocem-alist)))))
173
174 (defun gnus-nocem-load-cache ()
175   "Load the NoCeM cache."
176   (unless gnus-nocem-alist
177     ;; The buffer doesn't exist, so we create it and load the NoCeM
178     ;; cache.  
179     (when (file-exists-p (gnus-nocem-cache-file))
180       (load (gnus-nocem-cache-file) t t t)
181       (gnus-nocem-alist-to-hashtb))))
182       
183 (defun gnus-nocem-save-cache ()
184   "Save the NoCeM cache."
185   (when (and gnus-nocem-alist
186              gnus-nocem-touched-alist)
187     (nnheader-temp-write (gnus-nocem-cache-file)
188       (insert (prin1-to-string
189                `(setq gnus-nocem-alist ',gnus-nocem-alist))))
190     (setq gnus-nocem-touched-alist nil)))
191
192 (defun gnus-nocem-save-active ()
193   "Save the NoCeM active file."
194   (nnheader-temp-write (gnus-nocem-active-file)
195     (insert (prin1-to-string
196              `(setq gnus-nocem-active ',gnus-nocem-active)))))
197
198 (defun gnus-nocem-alist-to-hashtb ()
199   "Create a hashtable from the Message-IDs we have."
200   (let* ((alist gnus-nocem-alist)
201          (pprev (cons nil alist))
202          (prev pprev)
203          (expiry (nnmail-days-to-time gnus-nocem-expiry-wait))
204          entry)
205     (setq gnus-nocem-hashtb (gnus-make-hashtable (* (length alist) 51)))
206     (while (setq entry (car alist))
207       (if (not (nnmail-time-less (nnmail-time-since (car entry)) expiry))
208           ;; This entry has expired, so we remove it.
209           (setcdr prev (cdr alist))
210         (setq prev alist)
211         ;; This is ok, so we enter it into the hashtable.
212         (setq entry (cdr entry))
213         (while entry
214           (gnus-sethash (car entry) t gnus-nocem-hashtb)
215           (setq entry (cdr entry))))
216       (setq alist (cdr alist)))))
217
218 (gnus-add-shutdown 'gnus-nocem-close 'gnus)
219
220 (defun gnus-nocem-close ()
221   "Clear internal NoCeM variables."
222   (setq gnus-nocem-alist nil
223         gnus-nocem-hashtb nil
224         gnus-nocem-active nil
225         gnus-nocem-touched-alist nil))
226
227 (defun gnus-nocem-unwanted-article-p (id)
228   "Say whether article ID in the current group is wanted."
229   (gnus-gethash id gnus-nocem-hashtb))
230
231 (provide 'gnus-nocem)
232
233 ;;; gnus-nocem.el ends here