f5afedece970b5ecec4b5bf76c1caaa9b81dadd5
[gnus] / lisp / nnrss.el
1 ;;; nnrss.el --- interfacing with RSS
2 ;; Copyright (C) 2001, 2002, 2003  Free Software Foundation, Inc.
3
4 ;; Author: Shenghuo Zhu <zsh@cs.rochester.edu>
5 ;; Keywords: RSS
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
11 ;; by the Free Software Foundation; either version 2, or (at your
12 ;; option) any later version.
13
14 ;; GNU Emacs is distributed in the hope that it will be useful, but
15 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 ;; 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 (eval-when-compile (require 'cl))
29
30 (require 'gnus)
31 (require 'nnoo)
32 (require 'nnmail)
33 (require 'message)
34 (require 'mm-util)
35 (require 'gnus-util)
36 (require 'time-date)
37 (require 'rfc2231)
38 (require 'mm-url)
39 (eval-when-compile
40   (ignore-errors
41     (require 'xml)))
42 (eval '(require 'xml))
43
44 (nnoo-declare nnrss)
45
46 (defvoo nnrss-directory (nnheader-concat gnus-directory "rss/")
47   "Where nnrss will save its files.")
48
49 ;; (group max rss-url)
50 (defvoo nnrss-server-data nil)
51
52 ;; (num timestamp url subject author date extra)
53 (defvoo nnrss-group-data nil)
54 (defvoo nnrss-group-max 0)
55 (defvoo nnrss-group-min 1)
56 (defvoo nnrss-group nil)
57 (defvoo nnrss-group-hashtb nil)
58 (defvoo nnrss-status-string "")
59
60 (defconst nnrss-version "nnrss 1.0")
61
62 (defvar nnrss-group-alist '()
63   "List of RSS addresses.")
64
65 (defvar nnrss-use-local nil)
66
67 (defvar nnrss-description-field 'X-Gnus-Description
68   "Field name used for DESCRIPTION.
69 To use the description in headers, put this name into `nnmail-extra-headers'.")
70
71 (defvar nnrss-url-field 'X-Gnus-Url
72   "Field name used for URL.
73 To use the description in headers, put this name into `nnmail-extra-headers'.")
74
75 (defvar nnrss-content-function nil
76   "A function which is called in `nnrss-request-article'.
77 The arguments are (ENTRY GROUP ARTICLE).
78 ENTRY is the record of the current headline. GROUP is the group name.
79 ARTICLE is the article number of the current headline.")
80
81 (nnoo-define-basics nnrss)
82
83 ;;; Interface functions
84
85 (deffoo nnrss-retrieve-headers (articles &optional group server fetch-old)
86   (nnrss-possibly-change-group group server)
87   (let (e)
88     (save-excursion
89       (set-buffer nntp-server-buffer)
90       (erase-buffer)
91       (dolist (article articles)
92         (if (setq e (assq article nnrss-group-data))
93             (insert (number-to-string (car e)) "\t" ;; number
94                     (if (nth 3 e)
95                         (nnrss-format-string (nth 3 e)) "")
96                     "\t" ;; subject
97                     (if (nth 4 e)
98                         (nnrss-format-string (nth 4 e))
99                       "(nobody)")
100                     "\t" ;;from
101                     (or (nth 5 e) "")
102                     "\t" ;; date
103                     (format "<%d@%s.nnrss>" (car e) group)
104                     "\t" ;; id
105                     "\t" ;; refs
106                     "-1" "\t" ;; chars
107                     "-1" "\t" ;; lines
108                     "" "\t" ;; Xref
109                     (if (and (nth 6 e)
110                              (memq nnrss-description-field
111                                    nnmail-extra-headers))
112                         (concat (symbol-name nnrss-description-field)
113                                 ": "
114                                 (nnrss-format-string (nth 6 e))
115                                 "\t")
116                       "")
117                     (if (and (nth 2 e)
118                              (memq nnrss-url-field
119                                    nnmail-extra-headers))
120                         (concat (symbol-name nnrss-url-field)
121                                 ": "
122                                 (nnrss-format-string (nth 2 e))
123                                 "\t")
124                       "")
125                     "\n")))))
126   'nov)
127
128 (deffoo nnrss-request-group (group &optional server dont-check)
129   (nnrss-possibly-change-group group server)
130   (if dont-check
131       t
132     (nnrss-check-group group server)
133     (nnheader-report 'nnrss "Opened group %s" group)
134     (nnheader-insert
135      "211 %d %d %d %s\n" nnrss-group-max nnrss-group-min nnrss-group-max
136      (prin1-to-string group)
137      t)))
138
139 (deffoo nnrss-close-group (group &optional server)
140   t)
141
142 (deffoo nnrss-request-article (article &optional group server buffer)
143   (nnrss-possibly-change-group group server)
144   (let ((e (assq article nnrss-group-data))
145         (nntp-server-buffer (or buffer nntp-server-buffer))
146         post err)
147     (when e
148       (catch 'error
149         (with-current-buffer nntp-server-buffer
150           (erase-buffer)
151           (goto-char (point-min))
152           (insert "Mime-Version: 1.0\nContent-Type: text/html\n")
153           (if group
154               (insert "Newsgroups: " group "\n"))
155           (if (nth 3 e)
156               (insert "Subject: " (nnrss-format-string (nth 3 e)) "\n"))
157           (if (nth 4 e)
158               (insert "From: " (nnrss-format-string (nth 4 e)) "\n"))
159           (if (nth 5 e)
160               (insert "Date: " (nnrss-format-string (nth 5 e)) "\n"))
161           (insert "Message-ID: " (format "<%d@%s.nnrss>" (car e) group) "\n")
162           (insert "\n")
163           (if (nth 6 e)
164               (let ((point (point)))
165                 (insert (nnrss-string-as-multibyte (nth 6 e)))
166                 (goto-char point)
167                 (while (re-search-forward "\n" nil t)
168                   (replace-match " "))
169                 (goto-char (point-max))
170                 (insert "\n\n")
171                 (fill-region point (point))))
172           (if (nth 2 e)
173               (insert "<p><a href='" (nth 2 e) "'>link</a></p>\n"))
174           (if nnrss-content-function
175               (funcall nnrss-content-function e group article)))))
176     (cond
177      (err
178       (nnheader-report 'nnrss err))
179      ((not e)
180       (nnheader-report 'nnrss "no such id: %d" article))
181      (t
182       (nnheader-report 'nnrss "article %s retrieved" (car e))
183       ;; we return the article number.
184       (cons nnrss-group (car e))))))
185
186 (deffoo nnrss-request-list (&optional server)
187   (nnrss-possibly-change-group nil server)
188   (nnrss-generate-active)
189   t)
190
191 (deffoo nnrss-open-server (server &optional defs connectionless)
192   (nnrss-read-server-data server)
193   (nnoo-change-server 'nnrss server defs)
194   t)
195
196 (deffoo nnrss-request-expire-articles
197     (articles group &optional server force)
198   (nnrss-possibly-change-group group server)
199   (let (e days not-expirable changed)
200     (dolist (art articles)
201       (if (and (setq e (assq art nnrss-group-data))
202                (nnmail-expired-article-p
203                 group
204                 (if (listp (setq days (nth 1 e))) days
205                   (days-to-time (- days (time-to-days '(0 0)))))
206                 force))
207           (setq nnrss-group-data (delq e nnrss-group-data)
208                 changed t)
209         (push art not-expirable)))
210     (if changed
211         (nnrss-save-group-data group server))
212     not-expirable))
213
214 (deffoo nnrss-request-delete-group (group &optional force server)
215   (nnrss-possibly-change-group group server)
216   (setq nnrss-server-data
217         (delq (assoc group nnrss-server-data) nnrss-server-data))
218   (nnrss-save-server-data server)
219   (let ((file (expand-file-name
220                (nnrss-translate-file-chars
221                 (concat group (and server
222                                    (not (equal server ""))
223                                    "-")
224                         server ".el")) nnrss-directory)))
225     (ignore-errors
226       (delete-file file)))
227   t)
228
229 (deffoo nnrss-request-list-newsgroups (&optional server)
230   (nnrss-possibly-change-group nil server)
231   (save-excursion
232     (set-buffer nntp-server-buffer)
233     (erase-buffer)
234     (dolist (elem nnrss-group-alist)
235       (if (third elem)
236           (insert (car elem) "\t" (third elem) "\n"))))
237   t)
238
239 (nnoo-define-skeleton nnrss)
240
241 ;;; Internal functions
242 (eval-when-compile (defun xml-rpc-method-call (&rest args)))
243 (defun nnrss-fetch (url &optional local)
244   "Fetch the url and put it in a the expected lisp structure."
245   (with-temp-buffer
246   ;some CVS versions of url.el need this to close the connection quickly
247     (let* (xmlform htmlform)
248       ;; bit o' work necessary for w3 pre-cvs and post-cvs
249       (if local
250           (let ((coding-system-for-read 'binary))
251             (insert-file-contents url))
252         (mm-url-insert url))
253
254 ;; Because xml-parse-region can't deal with anything that isn't
255 ;; xml and w3-parse-buffer can't deal with some xml, we have to
256 ;; parse with xml-parse-region first and, if that fails, parse
257 ;; with w3-parse-buffer.  Yuck.  Eventually, someone should find out
258 ;; why w3-parse-buffer fails to parse some well-formed xml and
259 ;; fix it.
260
261     (condition-case err
262         (setq xmlform (xml-parse-region (point-min) (point-max)))
263       (error (if (fboundp 'w3-parse-buffer)
264                  (setq htmlform (caddar (w3-parse-buffer
265                                          (current-buffer))))
266                (message "nnrss: Not valid XML and w3 parse not available (%s)"
267                         url))))
268     (if htmlform
269         htmlform
270       xmlform))))
271
272 (defun nnrss-possibly-change-group (&optional group server)
273   (when (and server
274              (not (nnrss-server-opened server)))
275     (nnrss-open-server server))
276   (when (and group (not (equal group nnrss-group)))
277     (nnrss-read-group-data group server)
278     (setq nnrss-group group)))
279
280 (defvar nnrss-extra-categories '(nnrss-snarf-moreover-categories))
281
282 (defun nnrss-generate-active ()
283   (if (y-or-n-p "fetch extra categories? ")
284       (dolist (func nnrss-extra-categories)
285         (funcall func)))
286   (save-excursion
287     (set-buffer nntp-server-buffer)
288     (erase-buffer)
289     (dolist (elem nnrss-group-alist)
290       (insert (prin1-to-string (car elem)) " 0 1 y\n"))
291     (dolist (elem nnrss-server-data)
292       (unless (assoc (car elem) nnrss-group-alist)
293         (insert (prin1-to-string (car elem)) " 0 1 y\n")))))
294
295 ;;; data functions
296
297 (defun nnrss-read-server-data (server)
298   (setq nnrss-server-data nil)
299   (let ((file (expand-file-name
300                (nnrss-translate-file-chars
301                 (concat "nnrss" (and server
302                                      (not (equal server ""))
303                                      "-")
304                         server
305                         ".el"))
306                nnrss-directory)))
307     (when (file-exists-p file)
308       (with-temp-buffer
309         (let ((coding-system-for-read 'binary)
310               emacs-lisp-mode-hook)
311           (insert-file-contents file)
312           (emacs-lisp-mode)
313           (goto-char (point-min))
314           (eval-buffer))))))
315
316 (defun nnrss-save-server-data (server)
317   (gnus-make-directory nnrss-directory)
318   (let ((file (expand-file-name
319                (nnrss-translate-file-chars
320                 (concat "nnrss" (and server
321                                      (not (equal server ""))
322                                      "-")
323                         server ".el"))
324                nnrss-directory)))
325     (let ((coding-system-for-write 'binary)
326           print-level print-length)
327       (with-temp-file file
328         (insert "(setq nnrss-group-alist '"
329                 (prin1-to-string nnrss-group-alist)
330                 ")\n")
331         (insert "(setq nnrss-server-data '"
332                 (prin1-to-string nnrss-server-data)
333                 ")\n")))))
334
335 (defun nnrss-read-group-data (group server)
336   (setq nnrss-group-data nil)
337   (setq nnrss-group-hashtb (gnus-make-hashtable))
338   (let ((pair (assoc group nnrss-server-data)))
339     (setq nnrss-group-max (or (cadr pair) 0))
340     (setq nnrss-group-min (+ nnrss-group-max 1)))
341   (let ((file (expand-file-name
342                (nnrss-translate-file-chars
343                 (concat group (and server
344                                    (not (equal server ""))
345                                    "-")
346                         server ".el"))
347                nnrss-directory)))
348     (when (file-exists-p file)
349       (with-temp-buffer
350         (let ((coding-system-for-read 'binary)
351               emacs-lisp-mode-hook)
352           (insert-file-contents file)
353           (emacs-lisp-mode)
354           (goto-char (point-min))
355           (eval-buffer)))
356       (dolist (e nnrss-group-data)
357         (gnus-sethash (nth 2 e) e nnrss-group-hashtb)
358         (if (and (car e) (> nnrss-group-min (car e)))
359             (setq nnrss-group-min (car e)))
360         (if (and (car e) (< nnrss-group-max (car e)))
361             (setq nnrss-group-max (car e)))))))
362
363 (defun nnrss-save-group-data (group server)
364   (gnus-make-directory nnrss-directory)
365   (let ((file (expand-file-name
366                (nnrss-translate-file-chars
367                 (concat group (and server
368                                    (not (equal server ""))
369                                    "-")
370                         server ".el"))
371                nnrss-directory)))
372     (let ((coding-system-for-write 'binary)
373           print-level print-length)
374       (with-temp-file file
375         (insert "(setq nnrss-group-data '"
376                 (prin1-to-string nnrss-group-data)
377                 ")\n")))))
378
379 ;;; URL interface
380
381 (defun nnrss-no-cache (url)
382   "")
383
384 (defun nnrss-insert-w3 (url)
385   (mm-with-unibyte-current-buffer
386     (mm-url-insert url)))
387
388 (defun nnrss-decode-entities-unibyte-string (string)
389   (if string
390       (mm-with-unibyte-buffer
391         (insert string)
392         (mm-url-decode-entities-nbsp)
393         (buffer-string))))
394
395 (defalias 'nnrss-insert 'nnrss-insert-w3)
396
397 (if (featurep 'xemacs)
398     (defalias 'nnrss-string-as-multibyte 'identity)
399   (defalias 'nnrss-string-as-multibyte 'string-as-multibyte))
400
401 ;;; Snarf functions
402
403 (defun nnrss-check-group (group server)
404   (let (file xml subject url extra changed author
405              date rss-ns rdf-ns content-ns dc-ns)
406     (if (and nnrss-use-local
407              (file-exists-p (setq file (expand-file-name
408                                         (nnrss-translate-file-chars
409                                          (concat group ".xml"))
410                                         nnrss-directory))))
411         (nnrss-fetch file t)
412       (setq url (or (nth 2 (assoc group nnrss-server-data))
413                     (second (assoc group nnrss-group-alist))))
414       (unless url
415         (setq url
416               (nnrss-discover-feed
417                (read-string
418                 (format "URL to search for %s: " group) "http://")))
419         (let ((pair (assoc group nnrss-server-data)))
420           (if pair
421               (setcdr (cdr pair) (list url))
422             (push (list group nnrss-group-max url) nnrss-server-data)))
423         (setq changed t))
424       (setq xml (nnrss-fetch url)))
425     ;; See
426     ;; http://feeds.archive.org/validator/docs/howto/declare_namespaces.html
427     ;; for more RSS namespaces.
428     (setq dc-ns (nnrss-get-namespace-prefix xml "http://purl.org/dc/elements/1.1/")
429           rdf-ns (nnrss-get-namespace-prefix xml "http://www.w3.org/1999/02/22-rdf-syntax-ns#")
430           rss-ns (nnrss-get-namespace-prefix xml "http://purl.org/rss/1.0/")
431           content-ns (nnrss-get-namespace-prefix xml "http://purl.org/rss/1.0/modules/content/"))
432     (dolist (item (nreverse (nnrss-find-el (intern (concat rss-ns "item")) xml)))
433       (when (and (listp item)
434                  (eq (intern (concat rss-ns "item")) (car item))
435                  (setq url (nnrss-decode-entities-unibyte-string
436                             (nnrss-node-text rss-ns 'link (cddr item))))
437                  (not (gnus-gethash url nnrss-group-hashtb)))
438         (setq subject (nnrss-node-text rss-ns 'title item))
439         (setq extra (or (nnrss-node-text content-ns 'encoded item)
440                         (nnrss-node-text rss-ns 'description item)))
441         (setq author (or (nnrss-node-text rss-ns 'author item)
442                          (nnrss-node-text dc-ns 'creator item)))
443         (setq date (or (nnrss-node-text dc-ns 'date item)
444                        (nnrss-node-text rss-ns 'pubDate item)
445                        (message-make-date)))
446         (push
447          (list
448           (incf nnrss-group-max)
449           (current-time)
450           url
451           (and subject (nnrss-decode-entities-unibyte-string subject))
452           (and author (nnrss-decode-entities-unibyte-string author))
453           date
454           (and extra (nnrss-decode-entities-unibyte-string extra)))
455          nnrss-group-data)
456         (gnus-sethash url (car nnrss-group-data) nnrss-group-hashtb)
457         (setq changed t)))
458     (when changed
459       (nnrss-save-group-data group server)
460       (let ((pair (assoc group nnrss-server-data)))
461         (if pair
462             (setcar (cdr pair) nnrss-group-max)
463           (push (list group nnrss-group-max) nnrss-server-data)))
464       (nnrss-save-server-data server))))
465
466 (defun nnrss-generate-download-script ()
467   "Generate a download script in the current buffer.
468 It is useful when `(setq nnrss-use-local t)'."
469   (interactive)
470   (insert "#!/bin/sh\n")
471   (insert "WGET=wget\n")
472   (insert "RSSDIR='" (expand-file-name nnrss-directory) "'\n")
473   (dolist (elem nnrss-server-data)
474     (let ((url (or (nth 2 elem)
475                    (second (assoc (car elem) nnrss-group-alist)))))
476       (insert "$WGET -q -O \"$RSSDIR\"/'"
477               (nnrss-translate-file-chars (concat (car elem) ".xml"))
478               "' '" url "'\n"))))
479
480 (defun nnrss-translate-file-chars (name)
481   (let ((nnheader-file-name-translation-alist
482          (append nnheader-file-name-translation-alist '((?' . ?_)))))
483     (nnheader-translate-file-chars name)))
484
485 (defvar nnrss-moreover-url
486   "http://w.moreover.com/categories/category_list_rss.html"
487   "The url of moreover.com categories.")
488
489 (defun nnrss-snarf-moreover-categories ()
490   "Snarf RSS links from moreover.com."
491   (interactive)
492   (let (category name url changed)
493     (with-temp-buffer
494       (nnrss-insert nnrss-moreover-url)
495       (goto-char (point-min))
496       (while (re-search-forward
497               "<a name=\"\\([^\"]+\\)\">\\|<a href=\"\\(http://[^\"]*moreover\\.com[^\"]+page\\?c=\\([^\"&]+\\)&o=rss\\)" nil t)
498         (if (match-string 1)
499             (setq category (match-string 1))
500           (setq url (match-string 2)
501                 name (mm-url-decode-entities-string
502                       (rfc2231-decode-encoded-string
503                        (match-string 3))))
504           (if category
505               (setq name (concat category "." name)))
506           (unless (assoc name nnrss-server-data)
507             (setq changed t)
508             (push (list name 0 url) nnrss-server-data)))))
509     (if changed
510         (nnrss-save-server-data ""))))
511
512 (defun nnrss-format-string (string)
513   (gnus-replace-in-string (nnrss-string-as-multibyte string) " *\n *" " "))
514
515 (defun nnrss-node-text (namespace local-name element)
516   (let* ((node (assq (intern (concat namespace (symbol-name local-name)))
517                      element))
518          (text (if (and node (listp node))
519                    (nnrss-node-just-text node)
520                  node))
521          (cleaned-text (if text (gnus-replace-in-string
522                                  (gnus-replace-in-string
523                                   (gnus-replace-in-string
524                                    text "^[[:cntrl:]]+" "")
525                                   "^ +" "")
526                                  " +$" ""))))
527     (if (string-equal "" cleaned-text)
528         nil
529       cleaned-text)))
530
531 (defun nnrss-node-just-text (node)
532   (if (and node (listp node))
533       (mapconcat 'nnrss-node-just-text (cddr node) " ")
534     node))
535
536 (defun nnrss-find-el (tag data &optional found-list)
537   "Find the all matching elements in the data.  Careful with this on
538 large documents!"
539   (if (listp data)
540       (mapcar (lambda (bit)
541                 (if (car-safe bit)
542                     (progn (if (equal tag (car bit))
543                                (setq found-list
544                                      (append found-list
545                                              (list bit))))
546                            (if (and (listp (car-safe (caddr bit)))
547                                     (not (stringp (caddr bit))))
548                                (setq found-list
549                                      (append found-list
550                                              (nnrss-find-el
551                                               tag (caddr bit))))
552                              (setq found-list
553                                    (append found-list
554                                            (nnrss-find-el
555                                             tag (cddr bit))))))))
556                 data))
557   found-list)
558
559 (defun nnrss-rsslink-p (el)
560   "Test if the element we are handed is an RSS autodiscovery link."
561   (and (eq (car-safe el) 'link)
562        (string-equal (cdr (assoc 'rel (cadr el))) "alternate")
563        (or (string-equal (cdr (assoc 'type (cadr el))) 
564                          "application/rss+xml")
565            (string-equal (cdr (assoc 'type (cadr el))) "text/xml"))))
566
567 (defun nnrss-get-rsslinks (data)
568   "Extract the <link> elements that are links to RSS from the parsed data."
569   (delq nil (mapcar 
570              (lambda (el)
571                (if (nnrss-rsslink-p el) el))
572              (nnrss-find-el 'link data))))
573
574 (defun nnrss-extract-hrefs (data)
575   "Recursively extract hrefs from a page's source.  DATA should be
576 the output of xml-parse-region or w3-parse-buffer."
577   (mapcar (lambda (ahref)
578             (cdr (assoc 'href (cadr ahref))))
579           (nnrss-find-el 'a data)))
580
581 (defmacro nnrss-match-macro (base-uri item 
582                                            onsite-list offsite-list)
583   `(cond ((or (string-match (concat "^" ,base-uri) ,item)
584                (not (string-match "://" ,item)))
585            (setq ,onsite-list (append ,onsite-list (list ,item))))
586           (t (setq ,offsite-list (append ,offsite-list (list ,item))))))
587
588 (defun nnrss-order-hrefs (base-uri hrefs)
589   "Given a list of hrefs, sort them using the following priorities:
590   1. links ending in .rss
591   2. links ending in .rdf
592   3. links ending in .xml
593   4. links containing the above
594   5. offsite links
595
596 BASE-URI is used to determine the location of the links and
597 whether they are `offsite' or `onsite'."
598   (let (rss-onsite-end  rdf-onsite-end  xml-onsite-end
599         rss-onsite-in   rdf-onsite-in   xml-onsite-in
600         rss-offsite-end rdf-offsite-end xml-offsite-end
601         rss-offsite-in rdf-offsite-in xml-offsite-in)
602     (mapcar (lambda (href)
603               (if (not (null href))
604               (cond ((string-match "\\.rss$" href)
605                      (nnrss-match-macro
606                       base-uri href rss-onsite-end rss-offsite-end))
607                     ((string-match "\\.rdf$" href)
608                      (nnrss-match-macro 
609                       base-uri href rdf-onsite-end rdf-offsite-end))
610                     ((string-match "\\.xml$" href)
611                      (nnrss-match-macro
612                       base-uri href xml-onsite-end xml-offsite-end))
613                     ((string-match "rss" href)
614                      (nnrss-match-macro
615                       base-uri href rss-onsite-in rss-offsite-in))
616                     ((string-match "rdf" href)
617                      (nnrss-match-macro
618                       base-uri href rdf-onsite-in rdf-offsite-in))
619                     ((string-match "xml" href)
620                      (nnrss-match-macro
621                       base-uri href xml-onsite-in xml-offsite-in)))))
622             hrefs)
623     (append 
624      rss-onsite-end  rdf-onsite-end  xml-onsite-end
625      rss-onsite-in   rdf-onsite-in   xml-onsite-in
626      rss-offsite-end rdf-offsite-end xml-offsite-end
627      rss-offsite-in rdf-offsite-in xml-offsite-in)))
628
629 (defun nnrss-discover-feed (url)
630   "Given a page, find an RSS feed using Mark Pilgrim's
631 `ultra-liberal rss locator' (http://diveintomark.org/2002/08/15.html)."
632
633   (let ((parsed-page (nnrss-fetch url)))
634
635 ;;    1. if this url is the rss, use it.
636     (if (nnrss-rss-p parsed-page)
637         (let ((rss-ns (nnrss-get-namespace-prefix parsed-page "http://purl.org/rss/1.0/")))
638           (nnrss-rss-title-description rss-ns parsed-page url))
639
640 ;;    2. look for the <link rel="alternate"
641 ;;    type="application/rss+xml" and use that if it is there.
642       (let ((links (nnrss-get-rsslinks parsed-page)))
643         (if links
644             (let* ((xml (nnrss-fetch
645                          (cdr (assoc 'href (cadar links)))))
646                    (rss-ns (nnrss-get-namespace-prefix xml "http://purl.org/rss/1.0/")))
647               (nnrss-rss-title-description rss-ns xml (cdr (assoc 'href (cadar links)))))
648
649 ;;    3. look for links on the site in the following order:
650 ;;       - onsite links ending in .rss, .rdf, or .xml
651 ;;       - onsite links containing any of the above
652 ;;       - offsite links ending in .rss, .rdf, or .xml
653 ;;       - offsite links containing any of the above
654           (let* ((base-uri (progn (string-match ".*://[^/]+/?" url)
655                                   (match-string 0 url)))
656                  (hrefs (nnrss-order-hrefs 
657                          base-uri (nnrss-extract-hrefs parsed-page)))
658                  (rss-link nil))
659           (while (and (eq rss-link nil) (not (eq hrefs nil)))
660             (let ((href-data (nnrss-fetch (car hrefs))))
661               (if (nnrss-rss-p href-data)
662                   (let* ((rss-ns (nnrss-get-namespace-prefix href-data "http://purl.org/rss/1.0/")))
663                     (setq rss-link (nnrss-rss-title-description
664                                     rss-ns href-data (car hrefs))))
665                 (setq hrefs (cdr hrefs)))))
666           (if rss-link rss-link
667
668 ;;    4. check syndic8
669             (nnrss-find-rss-via-syndic8 url))))))))
670
671 (defun nnrss-find-rss-via-syndic8 (url)
672   "query syndic8 for the rss feeds it has for the url."
673   (condition-case nil
674       (progn (require 'xml-rpc)
675              (let ((feedid (xml-rpc-method-call
676                             "http://www.syndic8.com/xmlrpc.php"
677                             'syndic8.FindSites
678                             url)))
679                (if feedid
680                    (let* ((feedinfo (xml-rpc-method-call 
681                                      "http://www.syndic8.com/xmlrpc.php"
682                                      'syndic8.GetFeedInfo
683                                      feedid))
684                           (urllist
685                            (delq nil 
686                                  (mapcar
687                                   (lambda (listinfo)
688                                     (if (string-equal 
689                                          (cdr (assoc "status" listinfo))
690                                          "Syndicated")
691                                         (cons
692                                          (cdr (assoc "sitename" listinfo))
693                                          (list
694                                           (cons 'title
695                                                 (cdr (assoc 
696                                                       "sitename" listinfo)))
697                                           (cons 'href
698                                                 (cdr (assoc
699                                                       "dataurl" listinfo)))))))
700                                   feedinfo))))
701                      (if (> (length urllist) 1)
702                          (let ((completion-ignore-case t)
703                                (selection 
704                                 (mapcar (lambda (listinfo)
705                                           (cons (cdr (assoc "sitename" listinfo)) 
706                                                 (string-to-int 
707                                                  (cdr (assoc "feedid" listinfo)))))
708                                         feedinfo)))
709                            (cdr (assoc 
710                                  (completing-read
711                                   "Multiple feeds found.  Select one: "
712                                   selection nil t) urllist)))
713                        (cdar urllist))))))
714     (message "XML-RPC is not available... not checking Syndic8.")))
715
716 (defun nnrss-rss-p (data)
717   "Test if data is an RSS feed.  Simply ensures that the first
718 element is rss or rdf."
719   (or (eq (caar data) 'rss)
720       (eq (caar data) 'rdf:RDF)))
721
722 (defun nnrss-rss-title-description (rss-namespace data url)
723   "Return the title of an RSS feed."
724   (if (nnrss-rss-p data)
725       (let ((description (intern (concat rss-namespace "description")))
726             (title (intern (concat rss-namespace "title")))
727             (channel (nnrss-find-el (intern (concat rss-namespace "channel"))
728                                     data)))
729         (list
730          (cons 'description (caddr (nth 0 (nnrss-find-el description channel))))
731          (cons 'title (caddr (nth 0 (nnrss-find-el title channel))))
732          (cons 'href url)))))
733
734 (defun nnrss-get-namespace-prefix (el uri)
735   "Given EL (containing a parsed element) and URI (containing a string
736 that gives the URI for which you want to retrieve the namespace
737 prefix), return the prefix."
738   (let* ((prefix (car (rassoc uri (cadar el))))
739          (nslist (if prefix 
740                      (split-string (symbol-name prefix) ":")))
741          (ns (cond ((eq (length nslist) 1) ; no prefix given
742                     "")
743                    ((eq (length nslist) 2) ; extract prefix
744                     (cadr nslist)))))
745     (if (and ns (not (eq ns "")))
746         (concat ns ":")
747       ns)))
748
749 (provide 'nnrss)
750
751
752 ;;; nnrss.el ends here
753