* nnultimate.el (nnultimate-possibly-change-server): Don't always
[gnus] / lisp / nnultimate.el
1 ;;; nnultimate.el --- interfacing with the Ultimate Bulletin Board system
2 ;; Copyright (C) 1999 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 ;; Note: You need to have `url' and `w3' installed for this
27 ;; backend to work.
28
29 ;;; Code:
30
31 (eval-when-compile (require 'cl))
32
33 (require 'nnoo)
34 (require 'message)
35 (require 'gnus-util)
36 (require 'gnus)
37 (require 'nnmail)
38 (require 'mm-util)
39 (require 'nnweb)
40 (eval-when-compile
41   (ignore-errors
42     (require 'w3)
43     (require 'url)
44     (require 'w3-forms)))
45 ;; Report failure to find w3 at load time if appropriate.
46 (eval '(progn
47          (require 'w3)
48          (require 'url)
49          (require 'w3-forms)))
50
51 (nnoo-declare nnultimate)
52
53 (defvoo nnultimate-directory (nnheader-concat gnus-directory "ultimate/")
54   "Where nnultimate will save its files.")
55
56 (defvoo nnultimate-address ""
57   "The address of the Ultimate bulletin board.")
58
59 ;;; Internal variables
60
61 (defvar nnultimate-groups-alist nil)
62 (defvoo nnultimate-groups nil)
63 (defvoo nnultimate-headers nil)
64 (defvoo nnultimate-articles nil)
65
66 ;;; Interface functions
67
68 (nnoo-define-basics nnultimate)
69
70 (deffoo nnultimate-retrieve-headers (articles &optional group server fetch-old)
71   (nnultimate-possibly-change-server group server)
72   (unless gnus-nov-is-evil
73     (let* ((last (car (last articles)))
74            (did nil)
75            (start 1)
76            (entry (assoc group nnultimate-groups))
77            (sid (nth 2 entry))
78            (topics (nth 4 entry))
79            (mapping (nth 5 entry))
80            (old-total (or (nth 6 entry) 1))
81            (furl "forumdisplay.cgi?action=topics&number=%d&DaysPrune=1000")
82            (furls (list (concat nnultimate-address (format furl sid))))
83            headers article subject score from date lines parent point
84            contents tinfo fetchers map elem a href garticles topic old-max
85            inc datel table string current-page total-contents pages
86            farticles forum-contents parse furl-fetched mmap farticle)
87       (setq map mapping)
88       (while (and (setq article (car articles))
89                   map)
90         (while (and map
91                     (> article (caar map)))
92           (pop map))
93         (when (setq mmap (car map))
94           (setq farticle -1)
95           (while (and article
96                       (<= article (nth 1 mmap)))
97             ;; Do we already have a fetcher for this topic?
98             (if (setq elem (assq (nth 2 mmap) fetchers))
99                 ;; Yes, so we just add the spec to the end.
100                 (nconc elem (list (cons article
101                                         (+ (nth 3 mmap) (incf farticle)))))
102               ;; No, so we add a new one.
103               (push (list (nth 2 mmap)
104                           (cons article
105                                 (+ (nth 3 mmap) (incf farticle))))
106                     fetchers))
107             (pop articles)
108             (setq article (car articles)))))
109       ;; Now we have the mapping from/to Gnus/nnultimate article numbers,
110       ;; so we start fetching the topics that we need to satisfy the
111       ;; request.
112       (if (not fetchers)
113           (save-excursion
114             (set-buffer nntp-server-buffer)
115             (erase-buffer))
116         (setq nnultimate-articles nil)
117         (with-temp-buffer
118           (dolist (elem fetchers)
119             (setq pages 1
120                   current-page 1
121                   total-contents nil)
122             (while (<= current-page pages)
123               (erase-buffer)
124               (setq subject (nth 2 (assq (car elem) topics)))
125               (setq href (nth 3 (assq (car elem) topics)))
126               (if (= current-page 1)
127                   (nnweb-insert href)
128                 (string-match "\\.html$" href)
129                 (nnweb-insert (concat (substring href 0 (match-beginning 0))
130                                       "-" (number-to-string current-page)
131                                       (match-string 0 href))))
132               (goto-char (point-min))
133               (setq contents (w3-parse-buffer (current-buffer)))
134               (setq table (nnultimate-find-forum-table contents))
135               (setq string (mapconcat 'identity (nnweb-text table) ""))
136               (when (string-match "topic is \\([0-9]\\) pages" string)
137                 (setq pages (string-to-number (match-string 1 string)))
138                 (setcdr table nil)
139                 (setq table (nnultimate-find-forum-table contents)))
140               (setq contents (cdr (nth 2 (car (nth 2 table)))))
141               (setq total-contents (nconc total-contents contents))
142               (incf current-page))
143             ;;(setq total-contents (nreverse total-contents))
144             (dolist (art (cdr elem))
145               (if (not (nth (1- (cdr art)) total-contents))
146                   ();(debug)
147                 (push (list (car art)
148                             (nth (1- (cdr art)) total-contents)
149                             subject)
150                       nnultimate-articles)))))
151         (setq nnultimate-articles
152               (sort nnultimate-articles 'car-less-than-car))
153         ;; Now we have all the articles, conveniently in an alist
154         ;; where the key is the Gnus article number.
155         (dolist (articlef nnultimate-articles)
156           (setq article (nth 0 articlef)
157                 contents (nth 1 articlef)
158                 subject (nth 2 articlef))
159           (setq from (mapconcat 'identity
160                                 (nnweb-text (car (nth 2 contents)))
161                                 " ")
162                 datel (nnweb-text (nth 2 (car (cdr (nth 2 contents))))))
163           (while datel
164             (when (string-match "Posted" (car datel))
165               (setq date (substring (car datel) (match-end 0))
166                     datel nil))
167             (pop datel))
168           (setq date (delete "" (split-string date "[- \n\t\r    ]")))
169           (if (or (member "AM" date)
170                   (member "PM" date))
171               (setq date (format "%s %s %s %s"
172                                  (car (rassq (string-to-number (nth 0 date))
173                                              parse-time-months))
174                                  (nth 1 date) (nth 2 date) (nth 3 date)))
175             (setq date (format "%s %s %s %s"
176                                (car (rassq (string-to-number (nth 1 date))
177                                            parse-time-months))
178                                (nth 0 date) (nth 2 date) (nth 3 date))))
179           (push
180            (cons
181             article
182             (make-full-mail-header
183              article subject
184              from (or date "")
185              (concat "<" (number-to-string sid) "%"
186                      (number-to-string article)
187                      "@ultimate>")
188              "" 0
189              (/ (length (mapconcat
190                          'identity
191                          (nnweb-text
192                           (cdr (nth 2 (nth 1 (nth 2 contents)))))
193                          ""))
194                 70)
195              nil nil))
196            headers))
197         (setq nnultimate-headers (sort headers 'car-less-than-car))
198         (save-excursion
199           (set-buffer nntp-server-buffer)
200           (erase-buffer)
201           (dolist (header nnultimate-headers)
202             (nnheader-insert-nov (cdr header)))))
203       'nov)))
204
205 (deffoo nnultimate-request-group (group &optional server dont-check)
206   (nnultimate-possibly-change-server nil server)
207   (when (not nnultimate-groups)
208     (nnultimate-request-list))
209   (unless dont-check
210     (nnultimate-create-mapping group))
211   (let ((elem (assoc group nnultimate-groups)))
212     (cond
213      ((not elem)
214       (nnheader-report 'nnultimate "Group does not exist"))
215      (t
216       (nnheader-report 'nnultimate "Opened group %s" group)
217       (nnheader-insert
218        "211 %d %d %d %s\n" (cadr elem) 1 (cadr elem)
219        (prin1-to-string group))))))
220
221 (deffoo nnultimate-request-article (article &optional group server buffer)
222   (nnultimate-possibly-change-server group server)
223   (let ((contents (cdr (assq article nnultimate-articles))))
224     (setq contents (cddr (nth 2 (nth 1 (nth 2 (car contents))))))
225     (when contents
226       (save-excursion
227         (set-buffer (or buffer nntp-server-buffer))
228         (erase-buffer)
229         (nnweb-insert-html (cons 'p (cons nil (list contents))))
230         (goto-char (point-min))
231         (insert "Content-Type: text/html\nMIME-Version: 1.0\n")
232         (let ((header (cdr (assq article nnultimate-headers))))
233           (nnheader-insert-header header))
234         (nnheader-report 'nnultimate "Fetched article %s" article)
235         (cons group article)))))
236
237 (deffoo nnultimate-request-list (&optional server)
238   (nnultimate-possibly-change-server nil server)
239   (with-temp-buffer
240     (nnweb-insert (concat nnultimate-address "Ultimate.cgi"))
241     (let ((contents (nth 2 (car (nth 2
242                                      (nnultimate-find-forum-table
243                                       (w3-parse-buffer (current-buffer)))))))
244           sid elem description articles a href group forum
245           a1 a2)
246       (dolist (row contents)
247         (setq row (nth 2 row))
248         (when (setq a (nnweb-parse-find 'a row))
249           (setq group (car (last (nnweb-text a)))
250                 href (cdr (assq 'href (nth 1 a))))
251           (setq description (car (last (nnweb-text (nth 1 row)))))
252           (setq a1 (car (last (nnweb-text (nth 2 row)))))
253           (setq a2 (car (last (nnweb-text (nth 3 row)))))
254           (when (string-match "^[0-9]+$" a1)
255             (setq articles (string-to-number a1)))
256           (when (and a2 (string-match "^[0-9]+$" a2))
257             (setq articles (max articles (string-to-number a2))))
258           (when href
259             (string-match "number=\\([0-9]+\\)" href)
260             (setq forum (string-to-number (match-string 1 href)))
261             (if (setq elem (assoc group nnultimate-groups))
262                 (setcar (cdr elem) articles)
263               (push (list group articles forum description nil nil nil nil)
264                     nnultimate-groups))))))
265     (nnultimate-write-groups)
266     (nnultimate-generate-active)
267     t))
268
269 (deffoo nnultimate-request-newgroups (date &optional server)
270   (nnultimate-possibly-change-server nil server)
271   (nnultimate-generate-active)
272   t)
273
274 (nnoo-define-skeleton nnultimate)
275
276 ;;; Internal functions
277
278 (defun nnultimate-prune-days (group time)
279   "Compute the number of days to fetch info for."
280   (let ((old-time (nth 7 (assoc group nnultimate-groups))))
281     (if (null old-time)
282         1000
283       (- (time-to-days time) (time-to-days old-time)))))
284
285 (defun nnultimate-create-mapping (group)
286   (let* ((entry (assoc group nnultimate-groups))
287          (sid (nth 2 entry))
288          (topics (nth 4 entry))
289          (mapping (nth 5 entry))
290          (old-total (or (nth 6 entry) 1))
291          (current-time (current-time))
292          (furl
293           (concat "forumdisplay.cgi?action=topics&number=%d&DaysPrune="
294                   (number-to-string
295                    (nnultimate-prune-days group current-time))))
296          (furls (list (concat nnultimate-address (format furl sid))))
297          contents forum-contents furl-fetched a subject href
298          garticles topic tinfo old-max inc parse)
299     (with-temp-buffer
300       (while furls
301         (erase-buffer)
302         (nnweb-insert (pop furls))
303         (goto-char (point-min))
304         (setq parse (w3-parse-buffer (current-buffer)))
305         (setq contents
306               (cdr (nth 2 (car (nth 2 (nnultimate-find-forum-table
307                                        parse))))))
308         (setq forum-contents (nconc contents forum-contents))
309         (unless furl-fetched
310           (setq furl-fetched t)
311           ;; On the first time through this loop, we find all the
312           ;; forum URLs.
313           (dolist (a (nnweb-parse-find-all 'a parse))
314             (let ((href (cdr (assq 'href (nth 1 a)))))
315               (when (and href
316                          (string-match "forumdisplay.*startpoint" href))
317                 (push href furls))))
318           (setq furls (nreverse furls))))
319       ;; The main idea here is to map Gnus article numbers to
320       ;; nnultimate article numbers.  Say there are three topics in
321       ;; this forum, the first with 4 articles, the seconds with 2,
322       ;; and the third with 1.  Then this will translate into 7 Gnus
323       ;; article numbers, where 1-4 comes from the first topic, 5-6
324       ;; from the second and 7 from the third.  Now, then next time
325       ;; the group is entered, there's 2 new articles in topic one
326       ;; and 1 in topic three.  Then Gnus article number 8-9 be 5-6
327       ;; in topic one and 10 will be the 2 in topic three.
328       (dolist (row (reverse forum-contents))
329         (setq row (nth 2 row))
330         (when (setq a (nnweb-parse-find 'a row))
331           (setq subject (car (last (nnweb-text a)))
332                 href (cdr (assq 'href (nth 1 a))))
333           (let ((artlist (nreverse (nnweb-text row)))
334                 art)
335             (while (and (not art)
336                         artlist)
337               (when (string-match "^[0-9]+$" (car artlist))
338                 (setq art (1+ (string-to-number (car artlist)))))
339               (pop artlist))
340             (setq garticles art))
341           (string-match "/\\([0-9]+\\).html" href)
342           (setq topic (string-to-number (match-string 1 href)))
343           (if (setq tinfo (assq topic topics))
344               (progn
345                 (setq old-max (cadr tinfo))
346                 (setcar (cdr tinfo) garticles))
347             (setq old-max 0)
348             (push (list topic garticles subject href) topics)
349             (setcar (nthcdr 4 entry) topics))
350           (when (not (= old-max garticles))
351             (setq inc (- garticles old-max))
352             (setq mapping (nconc mapping
353                                  (list
354                                   (list
355                                    old-total (1- (incf old-total inc))
356                                    topic (1+ old-max)))))
357             (incf old-max inc)
358             (setcar (nthcdr 5 entry) mapping)
359             (setcar (nthcdr 6 entry) old-total)))))
360     (setcar (nthcdr 7 entry) current-time)
361     (setcar (nthcdr 1 entry) (1- old-total))
362     (nnultimate-write-groups)
363     mapping))
364
365 (defun nnultimate-possibly-change-server (&optional group server)
366   (nnultimate-init server)
367   (when (and server
368              (not (nnultimate-server-opened server)))
369     (nnultimate-open-server server))
370   (unless nnultimate-groups-alist
371     (nnultimate-read-groups)
372   (setq nnultimate-groups (cdr (assoc nnultimate-address
373                                       nnultimate-groups-alist)))))
374
375 (deffoo nnultimate-open-server (server &optional defs connectionless)
376   (nnheader-init-server-buffer)
377   (if (nnultimate-server-opened server)
378       t
379     (unless (assq 'nnultimate-address defs)
380       (setq defs (append defs (list (list 'nnultimate-address server)))))
381     (nnoo-change-server 'nnultimate server defs)))
382
383 (defun nnultimate-read-groups ()
384   (setq nnultimate-groups-alist nil)
385   (let ((file (expand-file-name "groups" nnultimate-directory)))
386     (when (file-exists-p file)
387       (with-temp-buffer
388         (insert-file-contents file)
389         (goto-char (point-min))
390         (setq nnultimate-groups-alist (read (current-buffer)))))))
391
392 (defun nnultimate-write-groups ()
393   (setq nnultimate-groups-alist
394         (delq (assoc nnultimate-address nnultimate-groups-alist)
395               nnultimate-groups-alist))
396   (push (cons nnultimate-address nnultimate-groups)
397         nnultimate-groups-alist)
398   (with-temp-file (expand-file-name "groups" nnultimate-directory)
399     (prin1 nnultimate-groups-alist (current-buffer))))
400     
401 (defun nnultimate-init (server)
402   "Initialize buffers and such."
403   (unless (file-exists-p nnultimate-directory)
404     (gnus-make-directory nnultimate-directory)))
405
406 (defun nnultimate-generate-active ()
407   (save-excursion
408     (set-buffer nntp-server-buffer)
409     (erase-buffer)
410     (dolist (elem nnultimate-groups)
411       (insert (prin1-to-string (car elem))
412               " " (number-to-string (cadr elem)) " 1 y\n"))))
413
414 (defun nnultimate-find-forum-table (contents)
415   (catch 'found
416     (nnultimate-find-forum-table-1 contents)))
417
418 (defun nnultimate-find-forum-table-1 (contents)
419   (dolist (element contents)
420     (unless (stringp element)
421       (when (and (eq (car element) 'table)
422                  (nnultimate-forum-table-p element))
423         (throw 'found element))
424       (when (nth 2 element)
425         (nnultimate-find-forum-table-1 (nth 2 element))))))
426
427 (defun nnultimate-forum-table-p (parse)
428   (when (not (apply 'gnus-or
429                     (mapcar
430                      (lambda (p)
431                        (nnweb-parse-find 'table p))
432                      (nth 2 parse))))
433     (let ((href (cdr (assq 'href (nth 1 (nnweb-parse-find 'a parse 20)))))
434           case-fold-search)
435       (when (and href (string-match
436                        "postings\\|forumdisplay\\|Forum[0-9]+/HTML\\|getbio"
437                                     href))
438         t))))
439
440 (provide 'nnultimate)
441
442 ;;; nnultimate.el ends here