* nnmail.el (nnmail-split-it): Revoke the change of 1999-08-19.
[elisp/gnus.git-] / 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               (input-coding-system 'binary)
311               emacs-lisp-mode-hook)
312           (insert-file-contents file)
313           (emacs-lisp-mode)
314           (goto-char (point-min))
315           (eval-buffer))))))
316
317 (defun nnrss-save-server-data (server)
318   (gnus-make-directory nnrss-directory)
319   (let ((file (expand-file-name
320                (nnrss-translate-file-chars
321                 (concat "nnrss" (and server
322                                      (not (equal server ""))
323                                      "-")
324                         server ".el"))
325                nnrss-directory)))
326     (let ((coding-system-for-write 'binary)
327           (output-coding-system 'binary)
328           print-level print-length)
329       (with-temp-file file
330         (insert "(setq nnrss-group-alist '"
331                 (prin1-to-string nnrss-group-alist)
332                 ")\n")
333         (insert "(setq nnrss-server-data '"
334                 (prin1-to-string nnrss-server-data)
335                 ")\n")))))
336
337 (defun nnrss-read-group-data (group server)
338   (setq nnrss-group-data nil)
339   (setq nnrss-group-hashtb (gnus-make-hashtable))
340   (let ((pair (assoc group nnrss-server-data)))
341     (setq nnrss-group-max (or (cadr pair) 0))
342     (setq nnrss-group-min (+ nnrss-group-max 1)))
343   (let ((file (expand-file-name
344                (nnrss-translate-file-chars
345                 (concat group (and server
346                                    (not (equal server ""))
347                                    "-")
348                         server ".el"))
349                nnrss-directory)))
350     (when (file-exists-p file)
351       (with-temp-buffer
352         (let ((coding-system-for-read 'binary)
353               (input-coding-system 'binary)
354               emacs-lisp-mode-hook)
355           (insert-file-contents file)
356           (emacs-lisp-mode)
357           (goto-char (point-min))
358           (eval-buffer)))
359       (dolist (e nnrss-group-data)
360         (gnus-sethash (nth 2 e) e nnrss-group-hashtb)
361         (if (and (car e) (> nnrss-group-min (car e)))
362             (setq nnrss-group-min (car e)))
363         (if (and (car e) (< nnrss-group-max (car e)))
364             (setq nnrss-group-max (car e)))))))
365
366 (defun nnrss-save-group-data (group server)
367   (gnus-make-directory nnrss-directory)
368   (let ((file (expand-file-name
369                (nnrss-translate-file-chars
370                 (concat group (and server
371                                    (not (equal server ""))
372                                    "-")
373                         server ".el"))
374                nnrss-directory)))
375     (let ((coding-system-for-write 'binary)
376           (output-coding-system 'binary)
377           print-level print-length)
378       (with-temp-file file
379         (insert "(setq nnrss-group-data '"
380                 (prin1-to-string nnrss-group-data)
381                 ")\n")))))
382
383 ;;; URL interface
384
385 (defun nnrss-no-cache (url)
386   "")
387
388 (defun nnrss-insert-w3 (url)
389   (mm-with-unibyte-current-buffer
390     (mm-url-insert url)))
391
392 (defun nnrss-decode-entities-unibyte-string (string)
393   (if string
394       (mm-with-unibyte-buffer
395         (insert string)
396         (mm-url-decode-entities-nbsp)
397         (buffer-string))))
398
399 (defalias 'nnrss-insert 'nnrss-insert-w3)
400
401 (if (featurep 'xemacs)
402     (defalias 'nnrss-string-as-multibyte 'identity)
403   (defalias 'nnrss-string-as-multibyte 'string-as-multibyte))
404
405 ;;; Snarf functions
406
407 (defun nnrss-check-group (group server)
408   (let (file xml subject url extra changed author date rss-ns rdf-ns content-ns dc-ns)
409     (if (and nnrss-use-local
410              (file-exists-p (setq file (expand-file-name
411                                         (nnrss-translate-file-chars
412                                          (concat group ".xml"))
413                                         nnrss-directory))))
414         (nnrss-fetch file t)
415       (setq url (or (nth 2 (assoc group nnrss-server-data))
416                     (second (assoc group nnrss-group-alist))))
417       (unless url
418         (setq url
419               (nnrss-discover-feed (read-string (format "URL to search for %s: " group) "http://")))
420         (let ((pair (assoc group nnrss-server-data)))
421           (if pair
422               (setcdr (cdr pair) (list url))
423             (push (list group nnrss-group-max url) nnrss-server-data)))
424         (setq changed t))
425       (setq xml (nnrss-fetch url)))
426     ;; See
427     ;; http://feeds.archive.org/validator/docs/howto/declare_namespaces.html
428     ;; for more RSS namespaces.
429     (setq dc-ns (nnrss-get-namespace-prefix xml "http://purl.org/dc/elements/1.1/")
430           rdf-ns (nnrss-get-namespace-prefix xml "http://www.w3.org/1999/02/22-rdf-syntax-ns#")
431           rss-ns (nnrss-get-namespace-prefix xml "http://purl.org/rss/1.0/")
432           content-ns (nnrss-get-namespace-prefix xml "http://purl.org/rss/1.0/modules/content/"))
433     (dolist (item (nreverse (nnrss-find-el (intern (concat rss-ns "item")) xml)))
434       (when (and (listp item)
435                  (eq (intern (concat rss-ns "item")) (car item))
436                  (setq url (nnrss-decode-entities-unibyte-string
437                             (nnrss-node-text rss-ns 'link (cddr item))))
438                  (not (gnus-gethash url nnrss-group-hashtb)))
439         (setq subject (nnrss-node-text rss-ns 'title item))
440         (setq extra (or (nnrss-node-text content-ns 'encoded item)
441                         (nnrss-node-text rss-ns 'description item)))
442         (setq author (or (nnrss-node-text rss-ns 'author item)
443                          (nnrss-node-text dc-ns 'creator item)))
444         (setq date (or (nnrss-node-text dc-ns 'date item)
445                        (nnrss-node-text rss-ns 'pubDate item)
446                        (message-make-date)))
447         (push
448          (list
449           (incf nnrss-group-max)
450           (current-time)
451           url
452           (and subject (nnrss-decode-entities-unibyte-string subject))
453           (and author (nnrss-decode-entities-unibyte-string author))
454           date
455           (and extra (nnrss-decode-entities-unibyte-string extra)))
456          nnrss-group-data)
457         (gnus-sethash url (car nnrss-group-data) nnrss-group-hashtb)
458         (setq changed t)))
459     (when changed
460       (nnrss-save-group-data group server)
461       (let ((pair (assoc group nnrss-server-data)))
462         (if pair
463             (setcar (cdr pair) nnrss-group-max)
464           (push (list group nnrss-group-max) nnrss-server-data)))
465       (nnrss-save-server-data server))))
466
467 (defun nnrss-generate-download-script ()
468   "Generate a download script in the current buffer.
469 It is useful when `(setq nnrss-use-local t)'."
470   (interactive)
471   (insert "#!/bin/sh\n")
472   (insert "WGET=wget\n")
473   (insert "RSSDIR='" (expand-file-name nnrss-directory) "'\n")
474   (dolist (elem nnrss-server-data)
475     (let ((url (or (nth 2 elem)
476                    (second (assoc (car elem) nnrss-group-alist)))))
477       (insert "$WGET -q -O \"$RSSDIR\"/'"
478               (nnrss-translate-file-chars (concat (car elem) ".xml"))
479               "' '" url "'\n"))))
480
481 (defun nnrss-translate-file-chars (name)
482   (let ((nnheader-file-name-translation-alist
483          (append nnheader-file-name-translation-alist '((?' . ?_)))))
484     (nnheader-translate-file-chars name)))
485
486 (defvar nnrss-moreover-url
487   "http://w.moreover.com/categories/category_list_rss.html"
488   "The url of moreover.com categories.")
489
490 (defun nnrss-snarf-moreover-categories ()
491   "Snarf RSS links from moreover.com."
492   (interactive)
493   (let (category name url changed)
494     (with-temp-buffer
495       (nnrss-insert nnrss-moreover-url)
496       (goto-char (point-min))
497       (while (re-search-forward
498               "<a name=\"\\([^\"]+\\)\">\\|<a href=\"\\(http://[^\"]*moreover\\.com[^\"]+page\\?c=\\([^\"&]+\\)&o=rss\\)" nil t)
499         (if (match-string 1)
500             (setq category (match-string 1))
501           (setq url (match-string 2)
502                 name (mm-url-decode-entities-string
503                       (rfc2231-decode-encoded-string
504                        (match-string 3))))
505           (if category
506               (setq name (concat category "." name)))
507           (unless (assoc name nnrss-server-data)
508             (setq changed t)
509             (push (list name 0 url) nnrss-server-data)))))
510     (if changed
511         (nnrss-save-server-data ""))))
512
513 (defun nnrss-format-string (string)
514   (gnus-replace-in-string (nnrss-string-as-multibyte string) " *\n *" " "))
515
516 (defun nnrss-node-text (namespace local-name element)
517   (let* ((node (assq (intern (concat namespace (symbol-name local-name))) element))
518          (text (if (and node (listp node))
519                    (nnrss-node-just-text node)
520                  node))
521          (cleaned-text (if text
522                            (replace-regexp-in-string 
523                             " *$" "" (replace-regexp-in-string
524                                       "^ *" "" (replace-regexp-in-string
525                                                 "^[[:cntrl:]]+" "" text))))))
526     (if (string-equal "" cleaned-text)
527         nil
528       cleaned-text)))
529
530 (defun nnrss-node-just-text (node)
531   (if (and node (listp node))
532       (mapconcat 'nnrss-node-just-text (cddr node) " ")
533     node))
534
535 (defun nnrss-find-el (tag data &optional found-list)
536   "Find the all matching elements in the data.  Careful with this on
537 large documents!"
538   (if (listp data)
539       (mapcar (lambda (bit)
540                 (if (car-safe bit)
541                     (progn (if (equal tag (car bit))
542                                (setq found-list
543                                      (append found-list
544                                              (list bit))))
545                            (if (and (listp (car-safe (caddr bit)))
546                                     (not (stringp (caddr bit))))
547                                (setq found-list
548                                      (append found-list
549                                              (nnrss-find-el
550                                               tag (caddr bit))))
551                              (setq found-list
552                                    (append found-list
553                                            (nnrss-find-el
554                                             tag (cddr bit))))))))
555                 data))
556   found-list)
557
558 (defun nnrss-rsslink-p (el)
559   "Test if the element we are handed is an RSS autodiscovery link."
560   (and (eq (car-safe el) 'link)
561        (string-equal (cdr (assoc 'rel (cadr el))) "alternate")
562        (or (string-equal (cdr (assoc 'type (cadr el))) 
563                          "application/rss+xml")
564            (string-equal (cdr (assoc 'type (cadr el))) "text/xml"))))
565
566 (defun nnrss-get-rsslinks (data)
567   "Extract the <link> elements that are links to RSS from the parsed data."
568   (delq nil (mapcar 
569              (lambda (el)
570                (if (nnrss-rsslink-p el) el))
571              (nnrss-find-el 'link data))))
572
573 (defun nnrss-extract-hrefs (data)
574   "Recursively extract hrefs from a page's source.  DATA should be
575 the output of xml-parse-region or w3-parse-buffer."
576   (mapcar (lambda (ahref)
577             (cdr (assoc 'href (cadr ahref))))
578           (nnrss-find-el 'a data)))
579
580 (defmacro nnrss-match-macro (base-uri item 
581                                            onsite-list offsite-list)
582   `(cond ((or (string-match (concat "^" ,base-uri) ,item)
583                (not (string-match "://" ,item)))
584            (setq ,onsite-list (append ,onsite-list (list ,item))))
585           (t (setq ,offsite-list (append ,offsite-list (list ,item))))))
586
587 (defun nnrss-order-hrefs (base-uri hrefs)
588   "Given a list of hrefs, sort them using the following priorities:
589   1. links ending in .rss
590   2. links ending in .rdf
591   3. links ending in .xml
592   4. links containing the above
593   5. offsite links
594
595 BASE-URI is used to determine the location of the links and
596 whether they are `offsite' or `onsite'."
597   (let (rss-onsite-end  rdf-onsite-end  xml-onsite-end
598         rss-onsite-in   rdf-onsite-in   xml-onsite-in
599         rss-offsite-end rdf-offsite-end xml-offsite-end
600         rss-offsite-in rdf-offsite-in xml-offsite-in)
601     (mapcar (lambda (href)
602               (if (not (null href))
603               (cond ((string-match "\\.rss$" href)
604                      (nnrss-match-macro
605                       base-uri href rss-onsite-end rss-offsite-end))
606                     ((string-match "\\.rdf$" href)
607                      (nnrss-match-macro 
608                       base-uri href rdf-onsite-end rdf-offsite-end))
609                     ((string-match "\\.xml$" href)
610                      (nnrss-match-macro
611                       base-uri href xml-onsite-end xml-offsite-end))
612                     ((string-match "rss" href)
613                      (nnrss-match-macro
614                       base-uri href rss-onsite-in rss-offsite-in))
615                     ((string-match "rdf" href)
616                      (nnrss-match-macro
617                       base-uri href rdf-onsite-in rdf-offsite-in))
618                     ((string-match "xml" href)
619                      (nnrss-match-macro
620                       base-uri href xml-onsite-in xml-offsite-in)))))
621             hrefs)
622     (append 
623      rss-onsite-end  rdf-onsite-end  xml-onsite-end
624      rss-onsite-in   rdf-onsite-in   xml-onsite-in
625      rss-offsite-end rdf-offsite-end xml-offsite-end
626      rss-offsite-in rdf-offsite-in xml-offsite-in)))
627
628 (defun nnrss-discover-feed (url)
629   "Given a page, find an RSS feed using Mark Pilgrim's
630 `ultra-liberal rss locator' (http://diveintomark.org/2002/08/15.html)."
631
632   (let ((parsed-page (nnrss-fetch url)))
633
634 ;;    1. if this url is the rss, use it.
635     (if (nnrss-rss-p parsed-page)
636         (let ((rss-ns (nnrss-get-namespace-prefix parsed-page "http://purl.org/rss/1.0/")))
637           (nnrss-rss-title-description rss-ns parsed-page url))
638
639 ;;    2. look for the <link rel="alternate"
640 ;;    type="application/rss+xml" and use that if it is there.
641       (let ((links (nnrss-get-rsslinks parsed-page)))
642         (if links
643             (let* ((xml (nnrss-fetch
644                          (cdr (assoc 'href (cadar links)))))
645                    (rss-ns (nnrss-get-namespace-prefix xml "http://purl.org/rss/1.0/")))
646               (nnrss-rss-title-description rss-ns xml (cdr (assoc 'href (cadar links)))))
647
648 ;;    3. look for links on the site in the following order:
649 ;;       - onsite links ending in .rss, .rdf, or .xml
650 ;;       - onsite links containing any of the above
651 ;;       - offsite links ending in .rss, .rdf, or .xml
652 ;;       - offsite links containing any of the above
653           (let* ((base-uri (progn (string-match ".*://[^/]+/?" url)
654                                   (match-string 0 url)))
655                  (hrefs (nnrss-order-hrefs 
656                          base-uri (nnrss-extract-hrefs parsed-page)))
657                  (rss-link nil))
658           (while (and (eq rss-link nil) (not (eq hrefs nil)))
659             (let ((href-data (nnrss-fetch (car hrefs))))
660               (if (nnrss-rss-p href-data)
661                   (let* ((rss-ns (nnrss-get-namespace-prefix href-data "http://purl.org/rss/1.0/")))
662                     (setq rss-link (nnrss-rss-title-description
663                                     rss-ns href-data (car hrefs))))
664                 (setq hrefs (cdr hrefs)))))
665           (if rss-link rss-link
666
667 ;;    4. check syndic8
668             (nnrss-find-rss-via-syndic8 url))))))))
669
670 (defun nnrss-find-rss-via-syndic8 (url)
671   "query syndic8 for the rss feeds it has for the url."
672   (condition-case nil
673       (progn (require 'xml-rpc)
674              (let ((feedid (xml-rpc-method-call
675                             "http://www.syndic8.com/xmlrpc.php"
676                             'syndic8.FindSites
677                             url)))
678                (if feedid
679                    (let* ((feedinfo (xml-rpc-method-call 
680                                      "http://www.syndic8.com/xmlrpc.php"
681                                      'syndic8.GetFeedInfo
682                                      feedid))
683                           (urllist
684                            (delq nil 
685                                  (mapcar
686                                   (lambda (listinfo)
687                                     (if (string-equal 
688                                          (cdr (assoc "status" listinfo))
689                                          "Syndicated")
690                                         (cons
691                                          (cdr (assoc "sitename" listinfo))
692                                          (list
693                                           (cons 'title
694                                                 (cdr (assoc 
695                                                       "sitename" listinfo)))
696                                           (cons 'href
697                                                 (cdr (assoc
698                                                       "dataurl" listinfo)))))))
699                                   feedinfo))))
700                      (if (> (length urllist) 1)
701                          (let ((completion-ignore-case t)
702                                (selection 
703                                 (mapcar (lambda (listinfo)
704                                           (cons (cdr (assoc "sitename" listinfo)) 
705                                                 (string-to-int 
706                                                  (cdr (assoc "feedid" listinfo)))))
707                                         feedinfo)))
708                            (cdr (assoc 
709                                  (completing-read
710                                   "Multiple feeds found.  Select one: "
711                                   selection nil t) urllist)))
712                        (cdar urllist))))))
713     (message "XML-RPC is not available... not checking Syndic8.")))
714
715 (defun nnrss-rss-p (data)
716   "Test if data is an RSS feed.  Simply ensures that the first
717 element is rss or rdf."
718   (or (eq (caar data) 'rss)
719       (eq (caar data) 'rdf:RDF)))
720
721 (defun nnrss-rss-title-description (rss-namespace data url)
722   "Return the title of an RSS feed."
723   (if (nnrss-rss-p data)
724       (let ((description (intern (concat rss-namespace "description")))
725             (title (intern (concat rss-namespace "title")))
726             (channel (nnrss-find-el (intern (concat rss-namespace "channel"))
727                                     data)))
728         (list
729          (cons 'description (caddr (nth 0 (nnrss-find-el description channel))))
730          (cons 'title (caddr (nth 0 (nnrss-find-el title channel))))
731          (cons 'href url)))))
732
733 (defun nnrss-get-namespace-prefix (el uri)
734   "Given EL (containing a parsed element) and URI (containing a string
735 that gives the URI for which you want to retrieve the namespace
736 prefix), return the prefix."
737   (let* ((prefix (car (rassoc uri (cadar el))))
738          (nslist (if prefix 
739                      (split-string (symbol-name prefix) ":")))
740          (ns (cond ((eq (length nslist) 1) ; no prefix given
741                     "")
742                    ((eq (length nslist) 2) ; extract prefix
743                     (cadr nslist)))))
744     (if (and ns (not (eq ns "")))
745         (concat ns ":")
746       ns)))
747
748 (provide 'nnrss)
749
750
751 ;;; nnrss.el ends here
752