1 ;;; nnultimate.el --- interfacing with the Ultimate Bulletin Board system -*- coding: iso-latin-1 -*-
2 ;; Copyright (C) 1999, 2000 Free Software Foundation, Inc.
4 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
7 ;; This file is part of GNU Emacs.
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)
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.
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.
26 ;; Note: You need to have `url' and `w3' installed for this
31 (eval-when-compile (require 'cl
))
42 ;; Report failure to find w3 at load time if appropriate.
43 (eval '(require 'nnweb
))
45 (nnoo-declare nnultimate
)
47 (defvoo nnultimate-directory
(nnheader-concat gnus-directory
"ultimate/")
48 "Where nnultimate will save its files.")
50 (defvoo nnultimate-address
""
51 "The address of the Ultimate bulletin board.")
53 ;;; Internal variables
55 (defvar nnultimate-groups-alist nil
)
56 (defvoo nnultimate-groups nil
)
57 (defvoo nnultimate-headers nil
)
58 (defvoo nnultimate-articles nil
)
59 (defvar nnultimate-table-regexp
60 "postings.*editpost\\|forumdisplay\\|Forum[0-9]+/HTML\\|getbio")
62 ;;; Interface functions
64 (nnoo-define-basics nnultimate
)
66 (deffoo nnultimate-retrieve-headers
(articles &optional group server fetch-old
)
67 (nnultimate-possibly-change-server group server
)
68 (unless gnus-nov-is-evil
69 (let* ((last (car (last articles
)))
72 (entry (assoc group nnultimate-groups
))
74 (topics (nth 4 entry
))
75 (mapping (nth 5 entry
))
76 (old-total (or (nth 6 entry
) 1))
77 (furl "forumdisplay.cgi?action=topics&number=%d&DaysPrune=1000")
78 (furls (list (concat nnultimate-address
(format furl sid
))))
79 (nnultimate-table-regexp
80 "postings.*editpost\\|forumdisplay\\|getbio")
81 headers article subject score from date lines parent point
82 contents tinfo fetchers map elem a href garticles topic old-max
83 inc datel table current-page total-contents pages
84 farticles forum-contents parse furl-fetched mmap farticle
)
86 (while (and (setq article
(car articles
))
88 ;; Skip past the articles in the map until we reach the
89 ;; article we're looking for.
91 (or (> article
(caar map
))
92 (< (cadar map
) (caar map
))))
94 (when (setq mmap
(car map
))
97 (<= article
(nth 1 mmap
)))
98 ;; Do we already have a fetcher for this topic?
99 (if (setq elem
(assq (nth 2 mmap
) fetchers
))
100 ;; Yes, so we just add the spec to the end.
101 (nconc elem
(list (cons article
102 (+ (nth 3 mmap
) (incf farticle
)))))
103 ;; No, so we add a new one.
104 (push (list (nth 2 mmap
)
106 (+ (nth 3 mmap
) (incf farticle
))))
109 (setq article
(car articles
)))))
110 ;; Now we have the mapping from/to Gnus/nnultimate article numbers,
111 ;; so we start fetching the topics that we need to satisfy the
115 (set-buffer nntp-server-buffer
)
117 (setq nnultimate-articles nil
)
118 (mm-with-unibyte-buffer
119 (dolist (elem fetchers
)
123 (while (<= current-page pages
)
125 (setq subject
(nth 2 (assq (car elem
) topics
)))
126 (setq href
(nth 3 (assq (car elem
) topics
)))
127 (if (= current-page
1)
129 (string-match "\\.html$" href
)
130 (nnweb-insert (concat (substring href
0 (match-beginning 0))
131 "-" (number-to-string current-page
)
132 (match-string 0 href
))))
133 (goto-char (point-min))
135 (ignore-errors (w3-parse-buffer (current-buffer))))
136 (setq table
(nnultimate-find-forum-table contents
))
137 (goto-char (point-min))
138 (when (re-search-forward "topic is \\([0-9]+\\) pages" nil t
)
139 (setq pages
(string-to-number (match-string 1))))
140 (setq contents
(cdr (nth 2 (car (nth 2 table
)))))
141 (setq total-contents
(nconc total-contents contents
))
145 (dolist (co total-contents
)
146 (push (list (or (nnultimate-topic-article-to-article
147 group
(car elem
) (incf i
))
150 nnultimate-articles
))))
152 (dolist (art (cdr elem
))
153 (when (nth (1- (cdr art
)) total-contents
)
154 (push (list (car art
)
155 (nth (1- (cdr art
)) total-contents
)
157 nnultimate-articles
))))))
158 (setq nnultimate-articles
159 (sort nnultimate-articles
'car-less-than-car
))
160 ;; Now we have all the articles, conveniently in an alist
161 ;; where the key is the Gnus article number.
162 (dolist (articlef nnultimate-articles
)
163 (setq article
(nth 0 articlef
)
164 contents
(nth 1 articlef
)
165 subject
(nth 2 articlef
))
166 (setq from
(mapconcat 'identity
167 (nnweb-text (car (nth 2 contents
)))
169 datel
(nnweb-text (nth 2 (car (cdr (nth 2 contents
))))))
171 (when (string-match "Posted" (car datel
))
172 (setq date
(substring (car datel
) (match-end 0))
176 (setq date
(delete "" (split-string
177 date
"[-, \n\t\r ]")))
178 (if (or (member "AM" date
)
183 (if (and (>= (length (nth 0 date
)) 3)
185 (substring (nth 0 date
) 0 3))
187 (substring (nth 0 date
) 0 3)
188 (car (rassq (string-to-number (nth 0 date
))
190 (nth 2 date
) (nth 3 date
)))
191 (setq date
(format "%s %s %s %s"
192 (car (rassq (string-to-number (nth 1 date
))
194 (nth 0 date
) (nth 2 date
) (nth 3 date
)))))
198 (make-full-mail-header
201 (concat "<" (number-to-string sid
) "%"
202 (number-to-string article
)
203 "@ultimate." server
">")
205 (/ (length (mapconcat
208 (cdr (nth 2 (nth 1 (nth 2 contents
)))))
213 (setq nnultimate-headers
(sort headers
'car-less-than-car
))
215 (set-buffer nntp-server-buffer
)
216 (mm-with-unibyte-current-buffer
218 (dolist (header nnultimate-headers
)
219 (nnheader-insert-nov (cdr header
))))))
222 (defun nnultimate-topic-article-to-article (group topic article
)
224 (dolist (elem (nth 5 (assoc group nnultimate-groups
)))
225 (when (and (= topic
(nth 2 elem
))
226 (>= article
(nth 3 elem
))
227 (< article
(+ (- (nth 1 elem
) (nth 0 elem
)) 1
230 (+ (nth 0 elem
) (- article
(nth 3 elem
))))))))
232 (deffoo nnultimate-request-group
(group &optional server dont-check
)
233 (nnultimate-possibly-change-server nil server
)
234 (when (not nnultimate-groups
)
235 (nnultimate-request-list))
237 (nnultimate-create-mapping group
))
238 (let ((elem (assoc group nnultimate-groups
)))
241 (nnheader-report 'nnultimate
"Group does not exist"))
243 (nnheader-report 'nnultimate
"Opened group %s" group
)
245 "211 %d %d %d %s\n" (cadr elem
) 1 (cadr elem
)
246 (prin1-to-string group
))))))
248 (deffoo nnultimate-request-close
()
249 (setq nnultimate-groups-alist nil
250 nnultimate-groups nil
))
252 (deffoo nnultimate-request-article
(article &optional group server buffer
)
253 (nnultimate-possibly-change-server group server
)
254 (let ((contents (cdr (assq article nnultimate-articles
))))
255 (setq contents
(cddr (nth 2 (nth 1 (nth 2 (car contents
))))))
258 (set-buffer (or buffer nntp-server-buffer
))
260 (nnweb-insert-html (cons 'p
(cons nil
(list contents
))))
261 (goto-char (point-min))
262 (insert "Content-Type: text/html\nMIME-Version: 1.0\n")
263 (let ((header (cdr (assq article nnultimate-headers
))))
264 (mm-with-unibyte-current-buffer
265 (nnheader-insert-header header
)))
266 (nnheader-report 'nnultimate
"Fetched article %s" article
)
267 (cons group article
)))))
269 (deffoo nnultimate-request-list
(&optional server
)
270 (nnultimate-possibly-change-server nil server
)
271 (mm-with-unibyte-buffer
273 (if (string-match "/$" nnultimate-address
)
274 (concat nnultimate-address
"Ultimate.cgi")
276 (let ((contents (nth 2 (car (nth 2
277 (nnultimate-find-forum-table
278 (w3-parse-buffer (current-buffer)))))))
279 sid elem description articles a href group forum
281 (dolist (row contents
)
282 (setq row
(nth 2 row
))
283 (when (setq a
(nnweb-parse-find 'a row
))
284 (setq group
(car (last (nnweb-text a
)))
285 href
(cdr (assq 'href
(nth 1 a
))))
286 (setq description
(car (last (nnweb-text (nth 1 row
)))))
287 (setq a1
(car (last (nnweb-text (nth 2 row
)))))
288 (setq a2
(car (last (nnweb-text (nth 3 row
)))))
289 (when (string-match "^[0-9]+$" a1
)
290 (setq articles
(string-to-number a1
)))
291 (when (and a2
(string-match "^[0-9]+$" a2
))
292 (setq articles
(max articles
(string-to-number a2
))))
294 (string-match "number=\\([0-9]+\\)" href
)
295 (setq forum
(string-to-number (match-string 1 href
)))
296 (if (setq elem
(assoc group nnultimate-groups
))
297 (setcar (cdr elem
) articles
)
298 (push (list group articles forum description nil nil nil nil
)
299 nnultimate-groups
))))))
300 (nnultimate-write-groups)
301 (nnultimate-generate-active)
304 (deffoo nnultimate-request-newgroups
(date &optional server
)
305 (nnultimate-possibly-change-server nil server
)
306 (nnultimate-generate-active)
309 (nnoo-define-skeleton nnultimate
)
311 ;;; Internal functions
313 (defun nnultimate-prune-days (group time
)
314 "Compute the number of days to fetch info for."
315 (let ((old-time (nth 7 (assoc group nnultimate-groups
))))
318 (- (time-to-days time
) (time-to-days old-time
)))))
320 (defun nnultimate-create-mapping (group)
321 (let* ((entry (assoc group nnultimate-groups
))
323 (topics (nth 4 entry
))
324 (mapping (nth 5 entry
))
325 (old-total (or (nth 6 entry
) 1))
326 (current-time (current-time))
328 (concat "forumdisplay.cgi?action=topics&number=%d&DaysPrune="
330 (nnultimate-prune-days group current-time
))))
331 (furls (list (concat nnultimate-address
(format furl sid
))))
332 contents forum-contents furl-fetched a subject href
333 garticles topic tinfo old-max inc parse
)
334 (mm-with-unibyte-buffer
337 (nnweb-insert (pop furls
))
338 (goto-char (point-min))
339 (setq parse
(w3-parse-buffer (current-buffer)))
341 (cdr (nth 2 (car (nth 2 (nnultimate-find-forum-table
343 (setq forum-contents
(nconc contents forum-contents
))
345 (setq furl-fetched t
)
346 ;; On the first time through this loop, we find all the
348 (dolist (a (nnweb-parse-find-all 'a parse
))
349 (let ((href (cdr (assq 'href
(nth 1 a
)))))
351 (string-match "forumdisplay.*startpoint" href
))
353 (setq furls
(nreverse furls
))))
354 ;; The main idea here is to map Gnus article numbers to
355 ;; nnultimate article numbers. Say there are three topics in
356 ;; this forum, the first with 4 articles, the seconds with 2,
357 ;; and the third with 1. Then this will translate into 7 Gnus
358 ;; article numbers, where 1-4 comes from the first topic, 5-6
359 ;; from the second and 7 from the third. Now, then next time
360 ;; the group is entered, there's 2 new articles in topic one
361 ;; and 1 in topic three. Then Gnus article number 8-9 be 5-6
362 ;; in topic one and 10 will be the 2 in topic three.
363 (dolist (row (nreverse forum-contents
))
364 (setq row
(nth 2 row
))
365 (when (setq a
(nnweb-parse-find 'a row
))
366 (setq subject
(car (last (nnweb-text a
)))
367 href
(cdr (assq 'href
(nth 1 a
))))
368 (let ((artlist (nreverse (nnweb-text row
)))
370 (while (and (not art
)
372 (when (string-match "^[0-9]+$" (car artlist
))
373 (setq art
(1+ (string-to-number (car artlist
)))))
375 (setq garticles art
))
377 (string-match "/\\([0-9]+\\).html" href
)
378 (setq topic
(string-to-number (match-string 1 href
)))
379 (if (setq tinfo
(assq topic topics
))
381 (setq old-max
(cadr tinfo
))
382 (setcar (cdr tinfo
) garticles
))
384 (push (list topic garticles subject href
) topics
)
385 (setcar (nthcdr 4 entry
) topics
))
386 (when (not (= old-max garticles
))
387 (setq inc
(- garticles old-max
))
388 (setq mapping
(nconc mapping
391 old-total
(1- (incf old-total inc
))
392 topic
(1+ old-max
)))))
394 (setcar (nthcdr 5 entry
) mapping
)
395 (setcar (nthcdr 6 entry
) old-total
))))))
396 (setcar (nthcdr 7 entry
) current-time
)
397 (setcar (nthcdr 1 entry
) (1- old-total
))
398 (nnultimate-write-groups)
401 (defun nnultimate-possibly-change-server (&optional group server
)
402 (nnultimate-init server
)
404 (not (nnultimate-server-opened server
)))
405 (nnultimate-open-server server
))
406 (unless nnultimate-groups-alist
407 (nnultimate-read-groups)
408 (setq nnultimate-groups
(cdr (assoc nnultimate-address
409 nnultimate-groups-alist
)))))
411 (deffoo nnultimate-open-server
(server &optional defs connectionless
)
412 (nnheader-init-server-buffer)
413 (if (nnultimate-server-opened server
)
415 (unless (assq 'nnultimate-address defs
)
416 (setq defs
(append defs
(list (list 'nnultimate-address server
)))))
417 (nnoo-change-server 'nnultimate server defs
)))
419 (defun nnultimate-read-groups ()
420 (setq nnultimate-groups-alist nil
)
421 (let ((file (expand-file-name "groups" nnultimate-directory
)))
422 (when (file-exists-p file
)
423 (mm-with-unibyte-buffer
424 (insert-file-contents file
)
425 (goto-char (point-min))
426 (setq nnultimate-groups-alist
(read (current-buffer)))))))
428 (defun nnultimate-write-groups ()
429 (setq nnultimate-groups-alist
430 (delq (assoc nnultimate-address nnultimate-groups-alist
)
431 nnultimate-groups-alist
))
432 (push (cons nnultimate-address nnultimate-groups
)
433 nnultimate-groups-alist
)
434 (with-temp-file (expand-file-name "groups" nnultimate-directory
)
435 (prin1 nnultimate-groups-alist
(current-buffer))))
437 (defun nnultimate-init (server)
438 "Initialize buffers and such."
439 (unless (file-exists-p nnultimate-directory
)
440 (gnus-make-directory nnultimate-directory
)))
442 (defun nnultimate-generate-active ()
444 (set-buffer nntp-server-buffer
)
446 (dolist (elem nnultimate-groups
)
447 (insert (prin1-to-string (car elem
))
448 " " (number-to-string (cadr elem
)) " 1 y\n"))))
450 (defun nnultimate-find-forum-table (contents)
452 (nnultimate-find-forum-table-1 contents
)))
454 (defun nnultimate-find-forum-table-1 (contents)
455 (dolist (element contents
)
456 (unless (stringp element
)
457 (when (and (eq (car element
) 'table
)
458 (nnultimate-forum-table-p element
))
459 (throw 'found element
))
460 (when (nth 2 element
)
461 (nnultimate-find-forum-table-1 (nth 2 element
))))))
463 (defun nnultimate-forum-table-p (parse)
464 (when (not (apply 'gnus-or
467 (nnweb-parse-find 'table p
))
469 (let ((href (cdr (assq 'href
(nth 1 (nnweb-parse-find 'a parse
20)))))
471 (when (and href
(string-match nnultimate-table-regexp href
))
474 (provide 'nnultimate
)
477 ;; coding: iso-8859-1
480 ;;; nnultimate.el ends here