org-feed: Switch to lexical binding
[org-mode/org-tableheadings.git] / lisp / org-feed.el
blobd11265e3b5d9a0678542ce1fdd6f0d24c8d8dc48
1 ;;; org-feed.el --- Add RSS feed items to Org files -*- lexical-binding: t; -*-
2 ;;
3 ;; Copyright (C) 2009-2016 Free Software Foundation, Inc.
4 ;;
5 ;; Author: Carsten Dominik <carsten at orgmode dot org>
6 ;; Keywords: outlines, hypermedia, calendar, wp
7 ;; Homepage: http://orgmode.org
8 ;;
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
25 ;;; Commentary:
27 ;; This module allows to create and change entries in an Org mode
28 ;; file triggered by items in an RSS feed. The basic functionality
29 ;; is geared toward simply adding new items found in a feed as
30 ;; outline nodes to an Org file. Using hooks, arbitrary actions can
31 ;; be triggered for new or changed items.
33 ;; Selecting feeds and target locations
34 ;; ------------------------------------
36 ;; This module is configured through a single variable, `org-feed-alist'.
37 ;; Here is an example, using a notes/tasks feed from reQall.com.
39 ;; (setq org-feed-alist
40 ;; '(("ReQall"
41 ;; "http://www.reqall.com/user/feeds/rss/a1b2c3....."
42 ;; "~/org/feeds.org" "ReQall Entries")
44 ;; With this setup, the command `M-x org-feed-update-all' will
45 ;; collect new entries in the feed at the given URL and create
46 ;; entries as subheadings under the "ReQall Entries" heading in the
47 ;; file "~/org/feeds.org". Each feed should normally have its own
48 ;; heading - however see the `:drawer' parameter.
50 ;; Besides these standard elements that need to be specified for each
51 ;; feed, keyword-value pairs can set additional options. For example,
52 ;; to de-select transitional entries with a title containing
54 ;; "reQall is typing what you said",
56 ;; you could use the `:filter' argument:
58 ;; (setq org-feed-alist
59 ;; '(("ReQall"
60 ;; "http://www.reqall.com/user/feeds/rss/a1b2c3....."
61 ;; "~/org/feeds.org" "ReQall Entries"
62 ;; :filter my-reqall-filter)))
64 ;; (defun my-reqall-filter (e)
65 ;; (if (string-match "reQall is typing what you said"
66 ;; (plist-get e :title))
67 ;; nil
68 ;; e))
70 ;; See the docstring for `org-feed-alist' for more details.
73 ;; Keeping track of previously added entries
74 ;; -----------------------------------------
76 ;; Since Org allows you to delete, archive, or move outline nodes,
77 ;; org-feed.el needs to keep track of which feed items have been handled
78 ;; before, so that they will not be handled again. For this, org-feed.el
79 ;; stores information in a special drawer, FEEDSTATUS, under the heading
80 ;; that received the input of the feed.
83 ;; Acknowledgments
84 ;; ---------------
86 ;; org-feed.el is based on ideas by Brad Bozarth who implemented a
87 ;; similar mechanism using shell and awk scripts.
89 ;;; Code:
91 (require 'org)
92 (require 'sha1)
94 (declare-function url-retrieve-synchronously "url" (url))
95 (declare-function xml-node-children "xml" (node))
96 (declare-function xml-get-children "xml" (node child-name))
97 (declare-function xml-get-attribute "xml" (node attribute))
98 (declare-function xml-get-attribute-or-nil "xml" (node attribute))
99 (declare-function xml-substitute-special "xml" (string))
101 (declare-function org-capture-escaped-% "org-capture" ())
102 (declare-function org-capture-expand-embedded-elisp "org-capture" (&optional mark))
103 (declare-function org-capture-inside-embedded-elisp-p "org-capture" ())
105 (defgroup org-feed nil
106 "Options concerning RSS feeds as inputs for Org files."
107 :tag "Org Feed"
108 :group 'org)
110 (defcustom org-feed-alist nil
111 "Alist specifying RSS feeds that should create inputs for Org.
112 Each entry in this list specified an RSS feed tat should be queried
113 to create inbox items in Org. Each entry is a list with the following items:
115 name a custom name for this feed
116 URL the Feed URL
117 file the target Org file where entries should be listed, when
118 nil the target becomes the current buffer (may be an
119 indirect buffer) each time the feed update is invoked
120 headline the headline under which entries should be listed
122 Additional arguments can be given using keyword-value pairs. Many of these
123 specify functions that receive one or a list of \"entries\" as their single
124 argument. An entry is a property list that describes a feed item. The
125 property list has properties for each field in the item, for example `:title'
126 for the `<title>' field and `:pubDate' for the publication date. In addition,
127 it contains the following properties:
129 `:item-full-text' the full text in the <item> tag
130 `:guid-permalink' t when the guid property is a permalink
132 Here are the keyword-value pair allows in `org-feed-alist'.
134 :drawer drawer-name
135 The name of the drawer for storing feed information. The default is
136 \"FEEDSTATUS\". Using different drawers for different feeds allows
137 several feeds to target the same inbox heading.
139 :filter filter-function
140 A function to select interesting entries in the feed. It gets a single
141 entry as parameter. It should return the entry if it is relevant, or
142 nil if it is not.
144 :template template-string
145 The default action on new items in the feed is to add them as children
146 under the headline for the feed. The template describes how the entry
147 should be formatted. If not given, it defaults to
148 `org-feed-default-template'.
150 :formatter formatter-function
151 Instead of relying on a template, you may specify a function to format
152 the outline node to be inserted as a child. This function gets passed
153 a property list describing a single feed item, and it should return a
154 string that is a properly formatted Org outline node of level 1.
156 :new-handler function
157 If adding new items as children to the outline is not what you want
158 to do with new items, define a handler function that is called with
159 a list of all new items in the feed, each one represented as a property
160 list. The handler should do what needs to be done, and org-feed will
161 mark all items given to this handler as \"handled\", i.e. they will not
162 be passed to this handler again in future readings of the feed.
163 When the handler is called, point will be at the feed headline.
165 :changed-handler function
166 This function gets passed a list of all entries that have been
167 handled before, but are now still in the feed and have *changed*
168 since last handled (as evidenced by a different sha1 hash).
169 When the handler is called, point will be at the feed headline.
171 :parse-feed function
172 This function gets passed a buffer, and should return a list
173 of entries, each being a property list containing the
174 `:guid' and `:item-full-text' keys. The default is
175 `org-feed-parse-rss-feed'; `org-feed-parse-atom-feed' is an
176 alternative.
178 :parse-entry function
179 This function gets passed an entry as returned by the parse-feed
180 function, and should return the entry with interesting properties added.
181 The default is `org-feed-parse-rss-entry'; `org-feed-parse-atom-entry'
182 is an alternative."
183 :group 'org-feed
184 :type '(repeat
185 (list :value ("" "http://" "" "")
186 (string :tag "Name")
187 (string :tag "Feed URL")
188 (file :tag "File for inbox")
189 (string :tag "Headline for inbox")
190 (repeat :inline t
191 (choice
192 (list :inline t :tag "Filter"
193 (const :filter)
194 (symbol :tag "Filter Function"))
195 (list :inline t :tag "Template"
196 (const :template)
197 (string :tag "Template"))
198 (list :inline t :tag "Formatter"
199 (const :formatter)
200 (symbol :tag "Formatter Function"))
201 (list :inline t :tag "New items handler"
202 (const :new-handler)
203 (symbol :tag "Handler Function"))
204 (list :inline t :tag "Changed items"
205 (const :changed-handler)
206 (symbol :tag "Handler Function"))
207 (list :inline t :tag "Parse Feed"
208 (const :parse-feed)
209 (symbol :tag "Parse Feed Function"))
210 (list :inline t :tag "Parse Entry"
211 (const :parse-entry)
212 (symbol :tag "Parse Entry Function"))
213 )))))
215 (defcustom org-feed-drawer "FEEDSTATUS"
216 "The name of the drawer for feed status information.
217 Each feed may also specify its own drawer name using the `:drawer'
218 parameter in `org-feed-alist'."
219 :group 'org-feed
220 :type '(string :tag "Drawer Name"))
222 (defcustom org-feed-default-template "\n* %h\n %U\n %description\n %a\n"
223 "Template for the Org node created from RSS feed items.
224 This is just the default, each feed can specify its own.
225 Any fields from the feed item can be interpolated into the template with
226 %name, for example %title, %description, %pubDate etc. In addition, the
227 following special escapes are valid as well:
229 %h The title, or the first line of the description
230 %t The date as a stamp, either from <pubDate> (if present), or
231 the current date
232 %T Date and time
233 %u,%U Like %t,%T, but inactive time stamps
234 %a A link, from <guid> if that is a permalink, else from <link>
235 %(sexp) Evaluate elisp `(sexp)' and replace with the result, the simple
236 %-escapes above can be used as arguments, e.g. %(capitalize \\\"%h\\\")"
237 :group 'org-feed
238 :type '(string :tag "Template"))
240 (defcustom org-feed-save-after-adding t
241 "Non-nil means save buffer after adding new feed items."
242 :group 'org-feed
243 :type 'boolean)
245 (defcustom org-feed-retrieve-method 'url-retrieve-synchronously
246 "The method to be used to retrieve a feed URL.
247 This can be `curl' or `wget' to call these external programs, or it can be
248 an Emacs Lisp function that will return a buffer containing the content
249 of the file pointed to by the URL."
250 :group 'org-feed
251 :type '(choice
252 (const :tag "Internally with url.el" url-retrieve-synchronously)
253 (const :tag "Externally with curl" curl)
254 (const :tag "Externally with wget" wget)
255 (function :tag "Function")))
257 (defcustom org-feed-before-adding-hook nil
258 "Hook that is run before adding new feed items to a file.
259 You might want to commit the file in its current state to version control,
260 for example."
261 :group 'org-feed
262 :type 'hook)
264 (defcustom org-feed-after-adding-hook nil
265 "Hook that is run after new items have been added to a file.
266 Depending on `org-feed-save-after-adding', the buffer will already
267 have been saved."
268 :group 'org-feed
269 :type 'hook)
271 (defvar org-feed-buffer "*Org feed*"
272 "The buffer used to retrieve a feed.")
274 ;;;###autoload
275 (defun org-feed-update-all ()
276 "Get inbox items from all feeds in `org-feed-alist'."
277 (interactive)
278 (let ((nfeeds (length org-feed-alist))
279 (nnew (apply '+ (mapcar 'org-feed-update org-feed-alist))))
280 (message "%s from %d %s"
281 (cond ((= nnew 0) "No new entries")
282 ((= nnew 1) "1 new entry")
283 (t (format "%d new entries" nnew)))
284 nfeeds
285 (if (= nfeeds 1) "feed" "feeds"))))
287 ;;;###autoload
288 (defun org-feed-update (feed &optional retrieve-only)
289 "Get inbox items from FEED.
290 FEED can be a string with an association in `org-feed-alist', or
291 it can be a list structured like an entry in `org-feed-alist'."
292 (interactive (list (org-completing-read "Feed name: " org-feed-alist)))
293 (if (stringp feed) (setq feed (assoc feed org-feed-alist)))
294 (unless feed
295 (error "No such feed in `org-feed-alist"))
296 (catch 'exit
297 (let ((name (car feed))
298 (url (nth 1 feed))
299 (file (or (nth 2 feed) (buffer-file-name (or (buffer-base-buffer)
300 (current-buffer)))))
301 (headline (nth 3 feed))
302 (filter (nth 1 (memq :filter feed)))
303 (formatter (nth 1 (memq :formatter feed)))
304 (new-handler (nth 1 (memq :new-handler feed)))
305 (changed-handler (nth 1 (memq :changed-handler feed)))
306 (template (or (nth 1 (memq :template feed))
307 org-feed-default-template))
308 (drawer (or (nth 1 (memq :drawer feed))
309 org-feed-drawer))
310 (parse-feed (or (nth 1 (memq :parse-feed feed))
311 'org-feed-parse-rss-feed))
312 (parse-entry (or (nth 1 (memq :parse-entry feed))
313 'org-feed-parse-rss-entry))
314 feed-buffer inbox-pos new-formatted
315 entries old-status status new changed guid-alist guid olds)
316 (setq feed-buffer (org-feed-get-feed url))
317 (unless (and feed-buffer (bufferp (get-buffer feed-buffer)))
318 (error "Cannot get feed %s" name))
319 (when retrieve-only
320 (throw 'exit feed-buffer))
321 (setq entries (funcall parse-feed feed-buffer))
322 (ignore-errors (kill-buffer feed-buffer))
323 (save-excursion
324 (save-window-excursion
325 (setq inbox-pos (org-feed-goto-inbox-internal file headline))
326 (setq old-status (org-feed-read-previous-status inbox-pos drawer))
327 ;; Add the "handled" status to the appropriate entries
328 (setq entries (mapcar (lambda (e)
329 (setq e
330 (plist-put e :handled
331 (nth 1 (assoc
332 (plist-get e :guid)
333 old-status)))))
334 entries))
335 ;; Find out which entries are new and which are changed
336 (dolist (e entries)
337 (if (not (plist-get e :handled))
338 (push e new)
339 (setq olds (nth 2 (assoc (plist-get e :guid) old-status)))
340 (if (and olds
341 (not (string= (sha1
342 (plist-get e :item-full-text))
343 olds)))
344 (push e changed))))
346 ;; Parse the relevant entries fully
347 (setq new (mapcar parse-entry new)
348 changed (mapcar parse-entry changed))
350 ;; Run the filter
351 (when filter
352 (setq new (delq nil (mapcar filter new))
353 changed (delq nil (mapcar filter new))))
355 (when (not (or new changed))
356 (message "No new items in feed %s" name)
357 (throw 'exit 0))
359 ;; Get alist based on guid, to look up entries
360 (setq guid-alist
361 (append
362 (mapcar (lambda (e) (list (plist-get e :guid) e)) new)
363 (mapcar (lambda (e) (list (plist-get e :guid) e)) changed)))
365 ;; Construct the new status
366 (setq status
367 (mapcar
368 (lambda (e)
369 (setq guid (plist-get e :guid))
370 (list guid
371 ;; things count as handled if we handle them now,
372 ;; or if they were handled previously
373 (if (assoc guid guid-alist) t (plist-get e :handled))
374 ;; A hash, to detect changes
375 (sha1 (plist-get e :item-full-text))))
376 entries))
378 ;; Handle new items in the feed
379 (when new
380 (if new-handler
381 (progn
382 (goto-char inbox-pos)
383 (funcall new-handler new))
384 ;; No custom handler, do the default adding
385 ;; Format the new entries into an alist with GUIDs in the car
386 (setq new-formatted
387 (mapcar
388 (lambda (e) (org-feed-format-entry e template formatter))
389 new)))
391 ;; Insert the new items
392 (org-feed-add-items inbox-pos new-formatted))
394 ;; Handle changed items in the feed
395 (when (and changed-handler changed)
396 (goto-char inbox-pos)
397 (funcall changed-handler changed))
399 ;; Write the new status
400 ;; We do this only now, in case something goes wrong above, so
401 ;; that would would end up with a status that does not reflect
402 ;; which items truely have been handled
403 (org-feed-write-status inbox-pos drawer status)
405 ;; Normalize the visibility of the inbox tree
406 (goto-char inbox-pos)
407 (outline-hide-subtree)
408 (org-show-children)
409 (org-cycle-hide-drawers 'children)
411 ;; Hooks and messages
412 (when org-feed-save-after-adding (save-buffer))
413 (message "Added %d new item%s from feed %s to file %s, heading %s"
414 (length new) (if (> (length new) 1) "s" "")
415 name
416 (file-name-nondirectory file) headline)
417 (run-hooks 'org-feed-after-adding-hook)
418 (length new))))))
420 ;;;###autoload
421 (defun org-feed-goto-inbox (feed)
422 "Go to the inbox that captures the feed named FEED."
423 (interactive
424 (list (if (= (length org-feed-alist) 1)
425 (car org-feed-alist)
426 (org-completing-read "Feed name: " org-feed-alist))))
427 (if (stringp feed) (setq feed (assoc feed org-feed-alist)))
428 (unless feed
429 (error "No such feed in `org-feed-alist"))
430 (org-feed-goto-inbox-internal (nth 2 feed) (nth 3 feed)))
432 ;;;###autoload
433 (defun org-feed-show-raw-feed (feed)
434 "Show the raw feed buffer of a feed."
435 (interactive
436 (list (if (= (length org-feed-alist) 1)
437 (car org-feed-alist)
438 (org-completing-read "Feed name: " org-feed-alist))))
439 (if (stringp feed) (setq feed (assoc feed org-feed-alist)))
440 (unless feed
441 (error "No such feed in `org-feed-alist"))
442 (org-pop-to-buffer-same-window
443 (org-feed-update feed 'retrieve-only))
444 (goto-char (point-min)))
446 (defun org-feed-goto-inbox-internal (file heading)
447 "Find or create HEADING in FILE.
448 Switch to that buffer, and return the position of that headline."
449 (find-file file)
450 (widen)
451 (goto-char (point-min))
452 (if (re-search-forward
453 (concat "^\\*+[ \t]+" heading "[ \t]*\\(:.*?:[ \t]*\\)?$")
454 nil t)
455 (goto-char (match-beginning 0))
456 (goto-char (point-max))
457 (insert "\n\n* " heading "\n\n")
458 (org-back-to-heading t))
459 (point))
461 (defun org-feed-read-previous-status (pos drawer)
462 "Get the alist of old GUIDs from the entry at POS.
463 This will find DRAWER and extract the alist."
464 (save-excursion
465 (goto-char pos)
466 (let ((end (save-excursion (org-end-of-subtree t t))))
467 (if (re-search-forward
468 (concat "^[ \t]*:" drawer ":[ \t]*\n\\([^\000]*?\\)\n[ \t]*:END:")
469 end t)
470 (read (match-string 1))
471 nil))))
473 (defun org-feed-write-status (pos drawer status)
474 "Write the feed STATUS to DRAWER in entry at POS."
475 (save-excursion
476 (goto-char pos)
477 (let ((end (save-excursion (org-end-of-subtree t t))))
478 (if (re-search-forward (concat "^[ \t]*:" drawer ":[ \t]*\n")
479 end t)
480 (progn
481 (goto-char (match-end 0))
482 (delete-region (point)
483 (save-excursion
484 (and (re-search-forward "^[ \t]*:END:" nil t)
485 (match-beginning 0)))))
486 (outline-next-heading)
487 (insert " :" drawer ":\n :END:\n")
488 (beginning-of-line 0))
489 (insert (pp-to-string status)))))
491 (defun org-feed-add-items (pos entries)
492 "Add the formatted items to the headline as POS."
493 (let (entry level)
494 (save-excursion
495 (goto-char pos)
496 (unless (looking-at org-complex-heading-regexp)
497 (error "Wrong position"))
498 (setq level (org-get-valid-level (length (match-string 1)) 1))
499 (org-end-of-subtree t t)
500 (skip-chars-backward " \t\n")
501 (beginning-of-line 2)
502 (setq pos (point))
503 (while (setq entry (pop entries))
504 (org-paste-subtree level entry 'yank))
505 (org-mark-ring-push pos))))
507 (defun org-feed-format-entry (entry template formatter)
508 "Format ENTRY so that it can be inserted into an Org file.
509 ENTRY is a property list. This function adds a `:formatted-for-org' property
510 and returns the full property list.
511 If that property is already present, nothing changes."
512 (require 'org-capture)
513 (if formatter (funcall formatter entry)
514 (let* ((dlines
515 (org-split-string (or (plist-get entry :description) "???")
516 "\n"))
517 (time (or (if (plist-get entry :pubDate)
518 (org-read-date t t (plist-get entry :pubDate)))
519 (current-time)))
520 (v-h (or (plist-get entry :title) (car dlines) "???"))
521 (v-t (format-time-string (org-time-stamp-format nil nil) time))
522 (v-T (format-time-string (org-time-stamp-format t nil) time))
523 (v-u (format-time-string (org-time-stamp-format nil t) time))
524 (v-U (format-time-string (org-time-stamp-format t t) time))
525 (v-a (let ((tmp (or (and (plist-get entry :guid-permalink)
526 (plist-get entry :guid))
527 (plist-get entry :link))))
528 (if tmp (format "[[%s]]\n" tmp ) ""))))
529 (with-temp-buffer
530 (insert template)
531 (goto-char (point-min))
533 ;; Mark %() embedded elisp for later evaluation.
534 (org-capture-expand-embedded-elisp 'mark)
536 ;; Simple %-escapes. `org-capture-escaped-%' may modify
537 ;; buffer and cripple match-data. Use markers instead.
538 (while (re-search-forward "%\\([a-zA-Z]+\\)" nil t)
539 (let ((key (match-string 1))
540 (beg (copy-marker (match-beginning 0)))
541 (end (copy-marker (match-end 0))))
542 (unless (org-capture-escaped-%)
543 (delete-region beg end)
544 (set-marker beg nil)
545 (set-marker end nil)
546 (let ((replacement
547 (pcase key
548 ("h" v-h)
549 ("t" v-t)
550 ("T" v-T)
551 ("u" v-u)
552 ("U" v-U)
553 ("a" v-a)
554 (name
555 (let ((v (plist-get entry (intern (concat ":" name)))))
556 (save-excursion
557 (save-match-data
558 (beginning-of-line)
559 (if (looking-at
560 (concat "^\\([ \t]*\\)%" name "[ \t]*$"))
561 (org-feed-make-indented-block
562 v (org-get-indentation))
563 v))))))))
564 (when replacement
565 (insert
566 ;; Escape string delimiters within embedded lisp.
567 (if (org-capture-inside-embedded-elisp-p)
568 (replace-regexp-in-string "\"" "\\\\\"" replacement nil t)
569 replacement)))))))
571 ;; %() embedded elisp
572 (org-capture-expand-embedded-elisp)
574 (decode-coding-string
575 (buffer-string) (detect-coding-region (point-min) (point-max) t))))))
577 (defun org-feed-make-indented-block (s n)
578 "Add indentation of N spaces to a multiline string S."
579 (if (not (string-match "\n" s))
581 (mapconcat 'identity
582 (org-split-string s "\n")
583 (concat "\n" (make-string n ?\ )))))
585 (defun org-feed-skip-http-headers (buffer)
586 "Remove HTTP headers from BUFFER, and return it.
587 Assumes headers are indeed present!"
588 (with-current-buffer buffer
589 (widen)
590 (goto-char (point-min))
591 (search-forward "\n\n")
592 (delete-region (point-min) (point))
593 buffer))
595 (defun org-feed-get-feed (url)
596 "Get the RSS feed file at URL and return the buffer."
597 (cond
598 ((eq org-feed-retrieve-method 'url-retrieve-synchronously)
599 (org-feed-skip-http-headers (url-retrieve-synchronously url)))
600 ((eq org-feed-retrieve-method 'curl)
601 (ignore-errors (kill-buffer org-feed-buffer))
602 (call-process "curl" nil org-feed-buffer nil "--silent" url)
603 org-feed-buffer)
604 ((eq org-feed-retrieve-method 'wget)
605 (ignore-errors (kill-buffer org-feed-buffer))
606 (call-process "wget" nil org-feed-buffer nil "-q" "-O" "-" url)
607 org-feed-buffer)
608 ((functionp org-feed-retrieve-method)
609 (funcall org-feed-retrieve-method url))))
611 (defun org-feed-parse-rss-feed (buffer)
612 "Parse BUFFER for RSS feed entries.
613 Returns a list of entries, with each entry a property list,
614 containing the properties `:guid' and `:item-full-text'."
615 (require 'xml)
616 (let ((case-fold-search t)
617 entries beg end item guid entry)
618 (with-current-buffer buffer
619 (widen)
620 (goto-char (point-min))
621 (while (re-search-forward "<item\\>.*?>" nil t)
622 (setq beg (point)
623 end (and (re-search-forward "</item>" nil t)
624 (match-beginning 0)))
625 (setq item (buffer-substring beg end)
626 guid (if (string-match "<guid\\>.*?>\\(.*?\\)</guid>" item)
627 (xml-substitute-special (org-match-string-no-properties 1 item))))
628 (setq entry (list :guid guid :item-full-text item))
629 (push entry entries)
630 (widen)
631 (goto-char end))
632 (nreverse entries))))
634 (defun org-feed-parse-rss-entry (entry)
635 "Parse the `:item-full-text' field for xml tags and create new properties."
636 (require 'xml)
637 (with-temp-buffer
638 (insert (plist-get entry :item-full-text))
639 (goto-char (point-min))
640 (while (re-search-forward "<\\([a-zA-Z]+\\>\\).*?>\\([^\000]*?\\)</\\1>"
641 nil t)
642 (setq entry (plist-put entry
643 (intern (concat ":" (match-string 1)))
644 (xml-substitute-special (match-string 2)))))
645 (goto-char (point-min))
646 (unless (re-search-forward "isPermaLink[ \t]*=[ \t]*\"false\"" nil t)
647 (setq entry (plist-put entry :guid-permalink t))))
648 entry)
650 (defun org-feed-parse-atom-feed (buffer)
651 "Parse BUFFER for Atom feed entries.
652 Returns a list of entries, with each entry a property list,
653 containing the properties `:guid' and `:item-full-text'.
655 The `:item-full-text' property actually contains the sexp
656 formatted as a string, not the original XML data."
657 (require 'xml)
658 (with-current-buffer buffer
659 (widen)
660 (let ((feed (car (xml-parse-region (point-min) (point-max)))))
661 (mapcar
662 (lambda (entry)
663 (list
664 :guid (car (xml-node-children (car (xml-get-children entry 'id))))
665 :item-full-text (prin1-to-string entry)))
666 (xml-get-children feed 'entry)))))
668 (defun org-feed-parse-atom-entry (entry)
669 "Parse the `:item-full-text' as a sexp and create new properties."
670 (let ((xml (car (read-from-string (plist-get entry :item-full-text)))))
671 ;; Get first <link href='foo'/>.
672 (setq entry (plist-put entry :link
673 (xml-get-attribute
674 (car (xml-get-children xml 'link))
675 'href)))
676 ;; Add <title/> as :title.
677 (setq entry (plist-put entry :title
678 (xml-substitute-special
679 (car (xml-node-children
680 (car (xml-get-children xml 'title)))))))
681 (let* ((content (car (xml-get-children xml 'content)))
682 (type (xml-get-attribute-or-nil content 'type)))
683 (when content
684 (cond
685 ((string= type "text")
686 ;; We like plain text.
687 (setq entry (plist-put entry :description
688 (xml-substitute-special
689 (car (xml-node-children content))))))
690 ((string= type "html")
691 ;; TODO: convert HTML to Org markup.
692 (setq entry (plist-put entry :description
693 (xml-substitute-special
694 (car (xml-node-children content))))))
695 ((string= type "xhtml")
696 ;; TODO: convert XHTML to Org markup.
697 (setq entry (plist-put entry :description
698 (prin1-to-string
699 (xml-node-children content)))))
701 (setq entry (plist-put entry :description
702 (format-message
703 "Unknown `%s' content." type)))))))
704 entry))
706 (provide 'org-feed)
708 ;; Local variables:
709 ;; generated-autoload-file: "org-loaddefs.el"
710 ;; End:
712 ;;; org-feed.el ends here