Skip to content

Instantly share code, notes, and snippets.

@gistlyn
Last active September 20, 2019 19:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gistlyn/69a8c68fb2315acc4cd079e3fe1bba51 to your computer and use it in GitHub Desktop.
Save gistlyn/69a8c68fb2315acc4cd079e3fe1bba51 to your computer and use it in GitHub Desktop.
Simple #Script Lisp RSS Parser
(defn parse-rss [xml]
(let ( (to) (doc) (channel) (items) (el) )
(def doc (System.Xml.Linq.XDocument/Parse xml))
(def to (ObjectDictionary.))
(def items (List<ObjectDictionary>.))
(def channel (first (.Descendants doc "channel")))
(def el (XLinqExtensions/FirstElement channel))
; retrieve all elements up to the first <item> as top-level entries
(while (not= (.LocalName (.Name el)) "item")
(.Add to (.LocalName (.Name el)) (.Value el))
(def el (XLinqExtensions/NextElement el)))
; add all rss item's to items collection
(doseq (elItem (.Descendants channel "item"))
(def item (ObjectDictionary.))
(def el (XLinqExtensions/FirstElement elItem))
(while el
(.Add item (.LocalName (.Name el)) (.Value el))
(def el (XLinqExtensions/NextElement el)))
(.Add items item))
(.Add to "items" items)
to
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment