1 ;;; nnslashdot.el --- interfacing with Slashdot
2 ;; Copyright (C) 1999, 2000, 2001, 2002 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 nnslashdot
)
47 (defvoo nnslashdot-directory
(nnheader-concat gnus-directory
"slashdot/")
48 "Where nnslashdot will save its files.")
50 (defvoo nnslashdot-active-url
"http://slashdot.org/search.pl?section=&min=%d"
51 "Where nnslashdot will fetch the active file from.")
53 (defvoo nnslashdot-comments-url
"http://slashdot.org/comments.pl?sid=%s&threshold=%d&commentsort=%d&mode=flat&startat=%d"
54 "Where nnslashdot will fetch comments from.")
56 (defvoo nnslashdot-article-url
57 "http://slashdot.org/article.pl?sid=%s&mode=nocomment"
58 "Where nnslashdot will fetch the article from.")
60 (defvoo nnslashdot-backslash-url
"http://slashdot.org/slashdot.xml"
61 "Where nnslashdot will fetch the stories from.")
63 (defvoo nnslashdot-threshold -
1
64 "The article threshold.")
66 (defvoo nnslashdot-threaded t
67 "Whether the nnslashdot groups should be threaded or not.")
69 (defvoo nnslashdot-group-number
0
70 "The number of non-fresh groups to keep updated.")
72 (defvoo nnslashdot-login-name
""
73 "The login name to use when posting.")
75 (defvoo nnslashdot-password
""
76 "The password to use when posting.")
78 ;;; Internal variables
80 (defvar nnslashdot-groups nil
)
81 (defvar nnslashdot-buffer nil
)
82 (defvar nnslashdot-headers nil
)
84 ;;; Interface functions
86 (nnoo-define-basics nnslashdot
)
88 (deffoo nnslashdot-retrieve-headers
(articles &optional group server fetch-old
)
89 (nnslashdot-possibly-change-server group server
)
91 (unless gnus-nov-is-evil
92 (nnslashdot-retrieve-headers-1 articles group
))
93 (search-failed (nnslashdot-lose why
))))
95 (deffoo nnslashdot-retrieve-headers-1
(articles group
)
96 (let* ((last (car (last articles
)))
97 (start (if nnslashdot-threaded
1 (pop articles
)))
98 (entry (assoc group nnslashdot-groups
))
101 headers article subject score from date lines parent point cid
104 (set-buffer nnslashdot-buffer
)
105 (let ((case-fold-search t
))
108 (nnweb-insert (format nnslashdot-article-url
109 (nnslashdot-sid-strip sid
)) t
)
110 (goto-char (point-min))
111 (re-search-forward "Posted by[ \t\r\n]+")
112 (when (looking-at "\\(<a[^>]+>\\)?[ \t\r\n]*\\([^<\r\n]+\\)")
113 (setq from
(nnweb-decode-entities-string (match-string 2))))
114 (search-forward "on ")
115 (setq date
(nnslashdot-date-to-date
116 (buffer-substring (point) (1- (search-forward "<")))))
117 (setq lines
(/ (- (point)
118 (progn (forward-line 1) (point)))
123 (make-full-mail-header
125 (concat "<" (nnslashdot-sid-strip sid
) "%1@slashdot>")
128 (setq start
(if nnslashdot-threaded
2 (pop articles
))))
129 (while (and start
(<= start last
))
130 (setq point
(goto-char (point-max)))
132 (format nnslashdot-comments-url
133 (nnslashdot-sid-strip sid
)
134 nnslashdot-threshold
0 (- start
2))
136 (when (and nnslashdot-threaded first-comments
)
137 (setq first-comments nil
)
138 (goto-char (point-max))
139 (while (re-search-backward "startat=\\([0-9]+\\)" nil t
)
140 (setq s
(string-to-number (match-string 1)))
141 (unless (memq s startats
)
143 (setq startats
(sort startats
'<)))
144 (setq article
(if (and article
(< start article
)) article start
))
146 (while (re-search-forward
147 "<a name=\"\\([0-9]+\\)\"><\\(b\\|H4\\)>\\([^<]+\\)</\\(b\\|H4\\)>.*score:\\([^)]+\\))"
149 (setq cid
(match-string 1)
150 subject
(match-string 3)
151 score
(match-string 5))
152 (unless (assq article
(nth 4 entry
))
153 (setcar (nthcdr 4 entry
) (cons (cons article cid
) (nth 4 entry
)))
155 (when (string-match "^Re: *" subject
)
156 (setq subject
(concat "Re: " (substring subject
(match-end 0)))))
157 (setq subject
(nnweb-decode-entities-string subject
))
158 (search-forward "<BR>")
160 "by[ \t\n]+<a[^>]+>\\([^<]+\\)</a>[ \t\n]*(\\(<[^>]+>\\)*\\([^<>)]+\\))")
162 (goto-char (- (match-end 0) 5))
164 (nnweb-decode-entities-string (match-string 1))
165 " <" (match-string 3) ">")))
167 (when (looking-at "by \\([^<>]*\\) on ")
168 (goto-char (- (match-end 0) 5))
169 (setq from
(nnweb-decode-entities-string (match-string 1)))))
170 (search-forward " on ")
172 (nnslashdot-date-to-date
173 (buffer-substring (point) (progn (skip-chars-forward "^()<>\n\r") (point)))))
174 (setq lines
(/ (abs (- (search-forward "<td")
175 (search-forward "</td>")))
178 (re-search-forward ".*cid=\\([0-9]+\\)\">Parent</A>" nil t
))
180 (setq parent
(match-string 1))
181 (when (string= parent
"0")
186 (make-full-mail-header
188 (concat subject
" (" score
")")
190 (concat "<" (nnslashdot-sid-strip sid
) "%" cid
"@slashdot>")
192 (concat "<" (nnslashdot-sid-strip sid
) "%"
197 (while (and articles
(<= (car articles
) article
))
199 (setq article
(1+ article
)))
200 (if nnslashdot-threaded
202 (setq start
(pop startats
))
203 (if start
(setq start
(+ start
2))))
204 (setq start
(pop articles
))))))
205 (if changed
(nnslashdot-write-groups))
206 (setq nnslashdot-headers
(sort headers
'car-less-than-car
))
208 (set-buffer nntp-server-buffer
)
210 (mm-with-unibyte-current-buffer
211 (dolist (header nnslashdot-headers
)
212 (nnheader-insert-nov (cdr header
)))))
215 (deffoo nnslashdot-request-group
(group &optional server dont-check
)
216 (nnslashdot-possibly-change-server nil server
)
217 (let ((elem (assoc group nnslashdot-groups
)))
220 (nnheader-report 'nnslashdot
"Group does not exist"))
222 (nnheader-report 'nnslashdot
"Opened group %s" group
)
224 "211 %d %d %d %s\n" (cadr elem
) 1 (cadr elem
)
225 (prin1-to-string group
))))))
227 (deffoo nnslashdot-close-group
(group &optional server
)
228 (nnslashdot-possibly-change-server group server
)
229 (when (gnus-buffer-live-p nnslashdot-buffer
)
231 (set-buffer nnslashdot-buffer
)
232 (kill-buffer nnslashdot-buffer
)))
235 (deffoo nnslashdot-request-article
(article &optional group server buffer
)
236 (nnslashdot-possibly-change-server group server
)
240 (set-buffer nnslashdot-buffer
)
241 (let ((case-fold-search t
))
242 (goto-char (point-min))
243 (when (and (stringp article
)
244 (string-match "%\\([0-9]+\\)@" article
))
245 (setq cid
(match-string 1 article
))
246 (let ((map (nth 4 (assoc group nnslashdot-groups
))))
248 (if (equal (cdar map
) cid
)
249 (setq article
(caar map
)
251 (setq map
(cdr map
))))))
252 (when (numberp article
)
257 (search-forward "<BR>")
263 "< [ \t\r\n]*<A HREF=\"\\(\\(http:\\)?//slashdot\\.org\\)?/article")
264 (match-beginning 0)))))
265 (setq cid
(cdr (assq article
266 (nth 4 (assoc group nnslashdot-groups
)))))
267 (search-forward (format "<a name=\"%s\">" cid
))
270 (re-search-forward "<td[^>]*>")
271 (search-forward "</td>")))))))
272 (search-failed (nnslashdot-lose why
)))
276 (set-buffer (or buffer nntp-server-buffer
))
278 (mm-with-unibyte-current-buffer
280 (goto-char (point-min))
281 (while (re-search-forward "\\(<br>\r?\\)+" nil t
)
282 (replace-match "<p>" t t
))
283 (goto-char (point-min))
284 (insert "Content-Type: text/html\nMIME-Version: 1.0\n")
285 (insert "Newsgroups: " (caddr (assoc group nnslashdot-groups
))
287 (let ((header (cdr (assq article nnslashdot-headers
))))
288 (nnheader-insert-header header
))
289 (nnheader-report 'nnslashdot
"Fetched article %s" article
))
290 (cons group article
)))))
292 (deffoo nnslashdot-close-server
(&optional server
)
293 (when (and (nnslashdot-server-opened server
)
294 (gnus-buffer-live-p nnslashdot-buffer
))
296 (set-buffer nnslashdot-buffer
)
297 (kill-buffer nnslashdot-buffer
)))
298 (nnoo-close-server 'nnslashdot server
))
300 (deffoo nnslashdot-request-list
(&optional server
)
301 (nnslashdot-possibly-change-server nil server
)
303 sid elem description articles gname
)
305 ;; First we do the Ultramode to get info on all the latest groups.
307 (mm-with-unibyte-buffer
308 (nnweb-insert nnslashdot-backslash-url t
)
309 (goto-char (point-min))
310 (while (search-forward "<story>" nil t
)
311 (narrow-to-region (point) (search-forward "</story>"))
312 (goto-char (point-min))
313 (re-search-forward "<title>\\([^<]+\\)</title>")
315 (nnweb-decode-entities-string (match-string 1)))
316 (re-search-forward "<url>\\([^<]+\\)</url>")
317 (setq sid
(match-string 1))
318 (string-match "sid=\\([0-9/]+\\)\\(.shtml\\|$\\)" sid
)
319 (setq sid
(match-string 1 sid
))
320 (re-search-forward "<comments>\\([^<]+\\)</comments>")
321 (setq articles
(string-to-number (match-string 1)))
322 (setq gname
(concat description
" (" sid
")"))
323 (if (setq elem
(assoc gname nnslashdot-groups
))
324 (setcar (cdr elem
) articles
)
325 (push (list gname articles sid
(current-time) nil
)
327 (goto-char (point-max))
329 ;; Then do the older groups.
330 (while (> (- nnslashdot-group-number number
) 0)
331 (mm-with-unibyte-buffer
332 (let ((case-fold-search t
))
333 (nnweb-insert (format nnslashdot-active-url number
) t
)
334 (goto-char (point-min))
335 (while (re-search-forward
336 "article.pl\\?sid=\\([^&]+\\).*<b>\\([^<]+\\)</b>"
338 (setq sid
(match-string 1)
340 (nnweb-decode-entities-string (match-string 2)))
342 (when (re-search-forward "<b>\\([0-9]+\\)</b>" nil t
)
343 (setq articles
(string-to-number (match-string 1))))
344 (setq gname
(concat description
" (" sid
")"))
345 (if (setq elem
(assoc gname nnslashdot-groups
))
346 (setcar (cdr elem
) articles
)
347 (push (list gname articles sid
(current-time) nil
)
348 nnslashdot-groups
)))))
350 (search-failed (nnslashdot-lose why
)))
351 (nnslashdot-write-groups)
352 (nnslashdot-generate-active)
355 (deffoo nnslashdot-request-newgroups
(date &optional server
)
356 (nnslashdot-possibly-change-server nil server
)
357 (nnslashdot-generate-active)
360 (deffoo nnslashdot-request-post
(&optional server
)
361 (nnslashdot-possibly-change-server nil server
)
362 (let ((sid (nnslashdot-sid-strip (message-fetch-field "newsgroups")))
363 (subject (message-fetch-field "subject"))
364 (references (car (last (split-string
365 (message-fetch-field "references")))))
367 (string-match "%\\([0-9]+\\)@slashdot" references
)
368 (setq pid
(match-string 1 references
))
370 (narrow-to-region (point) (progn (message-goto-signature) (point)))
371 (goto-char (point-min))
373 (if (looking-at "> ")
375 (delete-region (point) (+ (point) 2))
377 (insert "<blockquote>\n"))
380 (insert "</blockquote>\n")
383 (goto-char (point-min))
384 (while (re-search-forward "^ *\n" nil t
)
385 (replace-match "<p>\n"))
387 (when (message-goto-signature)
395 (setq body
(buffer-substring (point) (point-max)))
398 "http://slashdot.org/comments.pl"
401 ("rlogin" .
"userlogin")
402 ("unickname" .
,nnslashdot-login-name
)
403 ("upasswd" .
,nnslashdot-password
)
404 ("postersubj" .
,subject
)
406 ("postercomment" .
,body
)
407 ("posttype" .
"html")))))
409 (deffoo nnslashdot-request-delete-group
(group &optional force server
)
410 (nnslashdot-possibly-change-server group server
)
411 (setq nnslashdot-groups
(delq (assoc group nnslashdot-groups
)
413 (nnslashdot-write-groups))
415 (deffoo nnslashdot-request-close
()
416 (setq nnslashdot-headers nil
417 nnslashdot-groups nil
))
419 (deffoo nnslashdot-request-expire-articles
420 (articles group
&optional server force
)
421 (nnslashdot-possibly-change-server group server
)
422 (let ((item (assoc group nnslashdot-groups
)))
425 (when (and (>= (length articles
) (cadr item
)) ;; All are expirable.
426 (nnmail-expired-article-p
430 (setq nnslashdot-groups
(delq item nnslashdot-groups
))
431 (nnslashdot-write-groups)
432 (setq articles nil
)) ;; all expired.
433 (setcdr (cddr item
) (list (current-time)))
434 (nnslashdot-write-groups))))
437 (nnoo-define-skeleton nnslashdot
)
439 ;;; Internal functions
441 (defun nnslashdot-possibly-change-server (&optional group server
)
442 (nnslashdot-init server
)
444 (not (nnslashdot-server-opened server
)))
445 (nnslashdot-open-server server
))
446 (unless nnslashdot-groups
447 (nnslashdot-read-groups)))
449 (defun nnslashdot-make-tuple (tuple n
)
454 (setcdr tuple
(list nil
)))
455 (setq tuple
(cdr tuple
)
458 (defun nnslashdot-read-groups ()
459 (let ((file (expand-file-name "groups" nnslashdot-directory
)))
460 (when (file-exists-p file
)
461 (mm-with-unibyte-buffer
462 (insert-file-contents file
)
463 (goto-char (point-min))
464 (setq nnslashdot-groups
(read (current-buffer))))
465 (if (and nnslashdot-groups
(< (length (car nnslashdot-groups
)) 5))
466 (let ((groups nnslashdot-groups
))
468 (nnslashdot-make-tuple (car groups
) 5)
469 (setq groups
(cdr groups
))))))))
471 (defun nnslashdot-write-groups ()
472 (with-temp-file (expand-file-name "groups" nnslashdot-directory
)
473 (gnus-prin1 nnslashdot-groups
)))
475 (defun nnslashdot-init (server)
476 "Initialize buffers and such."
477 (unless (file-exists-p nnslashdot-directory
)
478 (gnus-make-directory nnslashdot-directory
))
479 (unless (gnus-buffer-live-p nnslashdot-buffer
)
480 (setq nnslashdot-buffer
482 (nnheader-set-temp-buffer
483 (format " *nnslashdot %s*" server
))))
484 (push nnslashdot-buffer gnus-buffers
)))
486 (defun nnslashdot-date-to-date (sdate)
488 (let ((elem (delete "" (split-string sdate
))))
489 (concat (substring (nth 0 elem
) 0 3) " "
490 (substring (nth 1 elem
) 0 3) " "
491 (substring (nth 2 elem
) 0 2) " "
492 (substring (nth 3 elem
) 1 6) " "
493 (format-time-string "%Y") " "
497 (defun nnslashdot-generate-active ()
499 (set-buffer nntp-server-buffer
)
501 (dolist (elem nnslashdot-groups
)
502 (insert (prin1-to-string (car elem
))
503 " " (number-to-string (cadr elem
)) " 1 y\n"))))
505 (defun nnslashdot-lose (why)
506 (error "Slashdot HTML has changed; please get a new version of nnslashdot"))
508 (defalias 'nnslashdot-sid-strip
'identity
)
510 (provide 'nnslashdot
)
512 ;;; nnslashdot.el ends here