23d5fc11eca1fb6c735ed7e5cc44681e39be3639
[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
409              date rss-ns rdf-ns content-ns dc-ns)
410     (if (and nnrss-use-local
411              (file-exists-p (setq file (expand-file-name
412                                         (nnrss-translate-file-chars
413                                          (concat group ".xml"))
414                                         nnrss-directory))))
415         (nnrss-fetch file t)
416       (setq url (or (nth 2 (assoc group nnrss-server-data))
417                     (second (assoc group nnrss-group-alist))))
418       (unless url
419         (setq url
420               (nnrss-discover-feed
421                (read-string
422                 (format "URL to search for %s: " group) "http://")))
423         (let ((pair (assoc group nnrss-server-data)))
424           (if pair
425               (setcdr (cdr pair) (list url))
426             (push (list group nnrss-group-max url) nnrss-server-data)))
427         (setq changed t))
428       (setq xml (nnrss-fetch url)))
429     ;; See
430     ;; http://feeds.archive.org/validator/docs/howto/declare_namespaces.html
431     ;; for more RSS namespaces.
432     (setq dc-ns (nnrss-get-namespace-prefix xml "http://purl.org/dc/elements/1.1/")
433           rdf-ns (nnrss-get-namespace-prefix xml "http://www.w3.org/1999/02/22-rdf-syntax-ns#")
434           rss-ns (nnrss-get-namespace-prefix xml "http://purl.org/rss/1.0/")
435           content-ns (nnrss-get-namespace-prefix xml "http://purl.org/rss/1.0/modules/content/"))
436     (dolist (item (nreverse (nnrss-find-el (intern (concat rss-ns "item")) xml)))
437       (when (and (listp item)
438                  (eq (intern (concat rss-ns "item")) (car item))
439                  (setq url (nnrss-decode-entities-unibyte-string
440                             (nnrss-node-text rss-ns 'link (cddr item))))
441                  (not (gnus-gethash url nnrss-group-hashtb)))
442         (setq subject (nnrss-node-text rss-ns 'title item))
443         (setq extra (or (nnrss-node-text content-ns 'encoded item)
444                         (nnrss-node-text rss-ns 'description item)))
445         (setq author (or (nnrss-node-text rss-ns 'author item)
446                          (nnrss-node-text dc-ns 'creator item)))
447         (setq date (or (nnrss-node-text dc-ns 'date item)
448                        (nnrss-node-text rss-ns 'pubDate item)
449                        (message-make-date)))
450         (push
451          (list
452           (incf nnrss-group-max)
453           (current-time)
454           url
455           (and subject (nnrss-decode-entities-unibyte-string subject))
456           (and author (nnrss-decode-entities-unibyte-string author))
457           date
458           (and extra (nnrss-decode-entities-unibyte-string extra)))
459          nnrss-group-data)
460         (gnus-sethash url (car nnrss-group-data) nnrss-group-hashtb)
461         (setq changed t)))
462     (when changed
463       (nnrss-save-group-data group server)
464       (let ((pair (assoc group nnrss-server-data)))
465         (if pair
466             (setcar (cdr pair) nnrss-group-max)
467           (push (list group nnrss-group-max) nnrss-server-data)))
468       (nnrss-save-server-data server))))
469
470 (defun nnrss-generate-download-script ()
471   "Generate a download script in the current buffer.
472 It is useful when `(setq nnrss-use-local t)'."
473   (interactive)
474   (insert "#!/bin/sh\n")
475   (insert "WGET=wget\n")
476   (insert "RSSDIR='" (expand-file-name nnrss-directory) "'\n")
477   (dolist (elem nnrss-server-data)
478     (let ((url (or (nth 2 elem)
479                    (second (assoc (car elem) nnrss-group-alist)))))
480       (insert "$WGET -q -O \"$RSSDIR\"/'"
481               (nnrss-translate-file-chars (concat (car elem) ".xml"))
482               "' '" url "'\n"))))
483
484 (defun nnrss-translate-file-chars (name)
485   (let ((nnheader-file-name-translation-alist
486          (append nnheader-file-name-translation-alist '((?' . ?_)))))
487     (nnheader-translate-file-chars name)))
488
489 (defvar nnrss-moreover-url
490   "http://w.moreover.com/categories/category_list_rss.html"
491   "The url of moreover.com categories.")
492
493 (defun nnrss-snarf-moreover-categories ()
494   "Snarf RSS links from moreover.com."
495   (interactive)
496   (let (category name url changed)
497     (with-temp-buffer
498       (nnrss-insert nnrss-moreover-url)
499       (goto-char (point-min))
500       (while (re-search-forward
501               "<a name=\"\\([^\"]+\\)\">\\|<a href=\"\\(http://[^\"]*moreover\\.com[^\"]+page\\?c=\\([^\"&]+\\)&o=rss\\)" nil t)
502         (if (match-string 1)
503             (setq category (match-string 1))
504           (setq url (match-string 2)
505                 name (mm-url-decode-entities-string
506                       (rfc2231-decode-encoded-string
507                        (match-string 3))))
508           (if category
509               (setq name (concat category "." name)))
510           (unless (assoc name nnrss-server-data)
511             (setq changed t)
512             (push (list name 0 url) nnrss-server-data)))))
513     (if changed
514         (nnrss-save-server-data ""))))
515
516 (defun nnrss-format-string (string)
517   (gnus-replace-in-string (nnrss-string-as-multibyte string) " *\n *" " "))
518
519 (defun nnrss-node-text (namespace local-name element)
520   (let* ((node (assq (intern (concat namespace (symbol-name local-name)))
521                      element))
522          (text (if (and node (listp node))
523                    (nnrss-node-just-text node)
524                  node))
525          (cleaned-text (if text (gnus-replace-in-string
526                                  text "^[[:cntrl:]]+\\|^ +\\| +$" ""))))
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