astro-feedzirra 0.0.8.20090419

Sign up to get free protection for your applications and to get access to all the features.
data/README.textile ADDED
@@ -0,0 +1,187 @@
1
+ h1. Feedzirra
2
+
3
+ "http://github.com/pauldix/feedzirra/tree/master":http://github.com/pauldix/feedzirra/tree/master
4
+
5
+ I'd like feedback on the api and any bugs encountered on feeds in the wild. I've set up a "google group here":http://groups.google.com/group/feedzirra.
6
+
7
+ h2. Summary
8
+
9
+ A feed fetching and parsing library that treats the internet like Godzilla treats Japan: it dominates and eats all.
10
+
11
+ h2. Description
12
+
13
+ Feedzirra is a feed library that is designed to get and update many feeds as quickly as possible. This includes using libcurl-multi through the "taf2-curb":http://github.com/taf2/curb/tree/master gem for faster http gets, and libxml through "nokogiri":http://github.com/tenderlove/nokogiri/tree/master and "sax-machine":http://github.com/pauldix/sax-machine/tree/master for faster parsing.
14
+
15
+ Once you have fetched feeds using Feedzirra, they can be updated using the feed objects. Feedzirra automatically inserts etag and last-modified information from the http response headers to lower bandwidth usage, eliminate unnecessary parsing, and make things speedier in general.
16
+
17
+ Another feature present in Feedzirra is the ability to create callback functions that get called "on success" and "on failure" when getting a feed. This makes it easy to do things like log errors or update data stores.
18
+
19
+ The fetching and parsing logic have been decoupled so that either of them can be used in isolation if you'd prefer not to use everything that Feedzirra offers. However, the code examples below use helper methods in the Feed class that put everything together to make things as simple as possible.
20
+
21
+ The final feature of Feedzirra is the ability to define custom parsing classes. In truth, Feedzirra could be used to parse much more than feeds. Microformats, page scraping, and almost anything else are fair game.
22
+
23
+ h2. Installation
24
+
25
+ For now Feedzirra exists only on github. It also has a few gem requirements that are only on github. Before you start you need to have "libcurl":http://curl.haxx.se/ and "libxml":http://xmlsoft.org/ installed. If you're on Leopard you have both. Otherwise, you'll need to grab them. Once you've got those libraries, these are the gems that get used: nokogiri, pauldix-sax-machine, taf2-curb (note that this is a fork that lives on github and not the Ruby Forge version of curb), and pauldix-feedzirra. The feedzirra gemspec has all the dependencies so you should be able to get up and running with the standard github gem install routine:
26
+ <pre>
27
+ gem sources -a http://gems.github.com # if you haven't already
28
+ gem install pauldix-feedzirra
29
+ </pre>
30
+ <b>NOTE:</b>Some people have been reporting a few issues related to installation. First, the Ruby Forge version of curb is not what you want. It will not work. Nor will the curl-multi gem that lives on Ruby Forge. You have to get the "taf2-curb":http://github.com/taf2/curb/tree/master fork installed.
31
+
32
+ If you see this error when doing a require:
33
+ <pre>
34
+ /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require': no such file to load -- curb_core (LoadError)
35
+ </pre>
36
+ It means that the taf2-curb gem didn't build correctly. To resolve this you can do a git clone git://github.com/taf2/curb.git then run rake gem in the curb directory, then sudo gem install pkg/curb-0.2.4.0.gem. After that you should be good.
37
+
38
+ If you see something like this when trying to run it:
39
+ <pre>
40
+ NoMethodError: undefined method `on_success' for #<Curl::Easy:0x1182724>
41
+ from ./lib/feedzirra/feed.rb:88:in `add_url_to_multi'
42
+ </pre>
43
+ This means that you are requiring curl-multi or the Ruby Forge version of Curb somewhere. You can't use those and need to get the taf2 version up and running.
44
+
45
+ If you're on Debian or Ubuntu and getting errors while trying to install the taf2-curb gem, it could be because you don't have the latest version of libcurl installed. Do this to fix:
46
+ <pre>
47
+ sudo apt-get install libcurl4-gnutls-dev
48
+ </pre>
49
+
50
+ Another problem could be if you are running Mac Ports and you have libcurl installed through there. You need to uninstall it for curb to work! The version in Mac Ports is old and doesn't play nice with curb. If you're running Leopard, you can just uninstall and you should be golden. If you're on an older version of OS X, you'll then need to "download curl":http://curl.haxx.se/download.html and build from source. Then you'll have to install the taf2-curb gem again. You might have to perform the step above.
51
+
52
+ If you're still having issues, please let me know on the mailing list. Also, "Todd Fisher (taf2)":http://github.com/taf2 is working on fixing the gem install. Please send him a full error report.
53
+
54
+ h2. Usage
55
+
56
+ "A gist of the following code":http://gist.github.com/57285
57
+ <pre>
58
+ require 'feedzirra'
59
+
60
+ # fetching a single feed
61
+ feed = Feedzirra::Feed.fetch_and_parse("http://feeds.feedburner.com/PaulDixExplainsNothing")
62
+
63
+ # feed and entries accessors
64
+ feed.title # => "Paul Dix Explains Nothing"
65
+ feed.url # => "http://www.pauldix.net"
66
+ feed.feed_url # => "http://feeds.feedburner.com/PaulDixExplainsNothing"
67
+ feed.etag # => "GunxqnEP4NeYhrqq9TyVKTuDnh0"
68
+ feed.last_modified # => Sat Jan 31 17:58:16 -0500 2009 # it's a Time object
69
+
70
+ entry = feed.entries.first
71
+ entry.title # => "Ruby Http Client Library Performance"
72
+ entry.url # => "http://www.pauldix.net/2009/01/ruby-http-client-library-performance.html"
73
+ entry.author # => "Paul Dix"
74
+ entry.summary # => "..."
75
+ entry.content # => "..."
76
+ entry.published # => Thu Jan 29 17:00:19 UTC 2009 # it's a Time object
77
+ entry.categories # => ["...", "..."]
78
+
79
+ # sanitizing an entry's content
80
+ entry.title.sanitize # => returns the title with harmful stuff escaped
81
+ entry.author.sanitize # => returns the author with harmful stuff escaped
82
+ entry.content.sanitize # => returns the content with harmful stuff escaped
83
+ entry.content.sanitize! # => returns content with harmful stuff escaped and replaces original (also exists for author and title)
84
+ entry.sanitize! # => sanitizes the entry's title, author, and content in place (as in, it changes the value to clean versions)
85
+ feed.sanitize_entries! # => sanitizes all entries in place
86
+
87
+ # updating a single feed
88
+ updated_feed = Feedzirra::Feed.update(feed)
89
+
90
+ # an updated feed has the following extra accessors
91
+ updated_feed.updated? # returns true if any of the feed attributes have been modified. will return false if only new entries
92
+ updated_feed.new_entries # a collection of the entry objects that are newer than the latest in the feed before update
93
+
94
+ # fetching multiple feeds
95
+ feed_urls = ["http://feeds.feedburner.com/PaulDixExplainsNothing", "http://feeds.feedburner.com/trottercashion"]
96
+ feeds = Feedzirra::Feed.fetch_and_parse(feeds_urls)
97
+
98
+ # feeds is now a hash with the feed_urls as keys and the parsed feed objects as values. If an error was thrown
99
+ # there will be a Fixnum of the http response code instead of a feed object
100
+
101
+ # updating multiple feeds. it expects a collection of feed objects
102
+ updated_feeds = Feedzirra::Feed.update(feeds.values)
103
+
104
+ # defining custom behavior on failure or success. note that a return status of 304 (not updated) will call the on_success handler
105
+ feed = Feedzirra::Feed.fetch_and_parse("http://feeds.feedburner.com/PaulDixExplainsNothing",
106
+ :on_success => lambda {|feed| puts feed.title },
107
+ :on_failure => lambda {|url, response_code, response_header, response_body| puts response_body })
108
+ # if a collection was passed into fetch_and_parse, the handlers will be called for each one
109
+
110
+ # the behavior for the handlers when using Feedzirra::Feed.update is slightly different. The feed passed into on_success will be
111
+ # the updated feed with the standard updated accessors. on failure it will be the original feed object passed into update
112
+
113
+ # You can add custom parsing to the feed entry classes. Say you want the wfw:comments fields in an entry
114
+ Feedzirra::Feed.add_common_feed_entry_element("wfw:commentRss", :as => :comment_rss)
115
+ # The arguments are the same as the SAXMachine arguments for the element method. For more example usage look at the RSSEntry and
116
+ # AtomEntry classes. Now you can access those in an atom feed:
117
+ Feedzirra::Feed.parse(some_atom_xml).entries.first.comment_rss_ # => wfw:commentRss is now parsed!
118
+
119
+ # You can also access http basic auth feeds. Unfortunately, you can't get to these inside of a bulk get of a bunch of feeds.
120
+ # You'll have to do it on its own like so:
121
+ Feedzirra::Feed.fetch_and_parse(some_url, :http_authentication => ["myusername", "mypassword"])
122
+
123
+ # Defining custom parsers
124
+ # TODO: the functionality is here, just write some good examples that show how to do this
125
+ </pre>
126
+
127
+ h2. Benchmarks
128
+
129
+ One of the goals of Feedzirra is speed. This includes not only parsing, but fetching multiple feeds as quickly as possible. I ran a benchmark getting 20 feeds 10 times using Feedzirra, rFeedParser, and FeedNormalizer. For more details the "benchmark code can be found in the project in spec/benchmarks/feedzirra_benchmarks.rb":http://github.com/pauldix/feedzirra/blob/7fb5634c5c16e9c6ec971767b462c6518cd55f5d/spec/benchmarks/feedzirra_benchmarks.rb
130
+ <pre>
131
+ feedzirra 5.170000 1.290000 6.460000 ( 18.917796)
132
+ rfeedparser 104.260000 12.220000 116.480000 (244.799063)
133
+ feed-normalizer 66.250000 4.010000 70.260000 (191.589862)
134
+ </pre>
135
+ The result of that benchmark is a bit sketchy because of the network variability. Running 10 times against the same 20 feeds was meant to smooth some of that out. However, there is also a "benchmark comparing parsing speed in spec/benchmarks/parsing_benchmark.rb":http://github.com/pauldix/feedzirra/blob/7fb5634c5c16e9c6ec971767b462c6518cd55f5d/spec/benchmarks/parsing_benchmark.rb on an atom feed.
136
+ <pre>
137
+ feedzirra 0.500000 0.030000 0.530000 ( 0.658744)
138
+ rfeedparser 8.400000 1.110000 9.510000 ( 11.839827)
139
+ feed-normalizer 5.980000 0.160000 6.140000 ( 7.576140)
140
+ </pre>
141
+ There's also a "benchmark that shows the results of using Feedzirra to perform updates on feeds":http://github.com/pauldix/feedzirra/blob/45d64319544c61a4c9eb9f7f825c73b9f9030cb3/spec/benchmarks/updating_benchmarks.rb you've already pulled in. I tested against 179 feeds. The first is the initial pull and the second is an update 65 seconds later. I'm not sure how many of them support etag and last-modified, so performance may be better or worse depending on what feeds you're requesting.
142
+ <pre>
143
+ feedzirra fetch and parse 4.010000 0.710000 4.720000 ( 15.110101)
144
+ feedzirra update 0.660000 0.280000 0.940000 ( 5.152709)
145
+ </pre>
146
+
147
+ h2. Next Steps
148
+
149
+ This thing needs to hammer on many different feeds in the wild. I'm sure there will be bugs. I want to find them and crush them. I didn't bother using the test suite for feedparser. i wanted to start fresh.
150
+
151
+ Here are some more specific TODOs.
152
+ * Fix the iTunes parser so things are normalized again
153
+ * Fix the Zlib deflate error
154
+ * Fork taf2-curb and require that in feedzirra
155
+ * Make the entries parse all link fields
156
+ * Make a feedzirra-rails gem to integrate feedzirra seamlessly with Rails and ActiveRecord.
157
+ * Create a super sweet DSL for defining new parsers.
158
+ * Test against Ruby 1.9.1 and fix any bugs.
159
+ * Clean up the fetching code inside feed.rb so it doesn't suck so hard.
160
+ * Readdress how feeds determine if they can parse a document. Maybe I should use namespaces instead?
161
+
162
+ h2. LICENSE
163
+
164
+ (The MIT License)
165
+
166
+ Copyright (c) 2009:
167
+
168
+ "Paul Dix":http://pauldix.net
169
+
170
+ Permission is hereby granted, free of charge, to any person obtaining
171
+ a copy of this software and associated documentation files (the
172
+ 'Software'), to deal in the Software without restriction, including
173
+ without limitation the rights to use, copy, modify, merge, publish,
174
+ distribute, sublicense, and/or sell copies of the Software, and to
175
+ permit persons to whom the Software is furnished to do so, subject to
176
+ the following conditions:
177
+
178
+ The above copyright notice and this permission notice shall be
179
+ included in all copies or substantial portions of the Software.
180
+
181
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
182
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
183
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
184
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
185
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
186
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
187
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Rakefile ADDED
@@ -0,0 +1,53 @@
1
+ require "spec"
2
+ require "spec/rake/spectask"
3
+ require 'rake/rdoctask'
4
+ require 'lib/feedzirra.rb'
5
+
6
+ # Grab recently touched specs
7
+ def recent_specs(touched_since)
8
+ recent_specs = FileList['app/**/*'].map do |path|
9
+
10
+ if File.mtime(path) > touched_since
11
+ spec = File.join('spec', File.dirname(path).split("/")[1..-1].join('/'),
12
+ "#{File.basename(path, ".*")}_spec.rb")
13
+ spec if File.exists?(spec)
14
+ end
15
+ end.compact
16
+
17
+ recent_specs += FileList['spec/**/*_spec.rb'].select do |path|
18
+ File.mtime(path) > touched_since
19
+ end
20
+ recent_specs.uniq
21
+ end
22
+
23
+ # Tasks
24
+ Spec::Rake::SpecTask.new do |t|
25
+ t.spec_opts = ['--options', "\"#{File.dirname(__FILE__)}/spec/spec.opts\""]
26
+ t.spec_files = FileList['spec/**/*_spec.rb']
27
+ end
28
+
29
+ desc 'Run recent specs'
30
+ Spec::Rake::SpecTask.new("spec:recent") do |t|
31
+ t.spec_opts = ["--format","specdoc","--color"]
32
+ t.spec_files = recent_specs(Time.now - 600) # 10 min.
33
+ end
34
+
35
+ Spec::Rake::SpecTask.new('spec:rcov') do |t|
36
+ t.spec_opts = ['--options', "\"#{File.dirname(__FILE__)}/spec/spec.opts\""]
37
+ t.spec_files = FileList['spec/**/*_spec.rb']
38
+ t.rcov = true
39
+ t.rcov_opts = ['--exclude', 'spec,/usr/lib/ruby,/usr/local,/var/lib,/Library', '--text-report']
40
+ end
41
+
42
+ Rake::RDocTask.new do |rd|
43
+ rd.title = 'Feedzirra'
44
+ rd.rdoc_dir = 'rdoc'
45
+ rd.rdoc_files.include('README.rdoc', 'lib/feedzirra.rb', 'lib/feedzirra/**/*.rb')
46
+ rd.options = ["--quiet", "--opname", "index.html", "--line-numbers", "--inline-source", '--main', 'README.rdoc']
47
+ end
48
+
49
+ task :install do
50
+ rm_rf "*.gem"
51
+ puts `gem build feedzirra.gemspec`
52
+ puts `sudo gem install feedzirra-#{Feedzirra::VERSION}.gem`
53
+ end
@@ -0,0 +1,21 @@
1
+ # Date code pulled from:
2
+ # Ruby Cookbook by Lucas Carlson and Leonard Richardson
3
+ # Published by O'Reilly
4
+ # ISBN: 0-596-52369-6
5
+ class Date
6
+ def feed_utils_to_gm_time
7
+ feed_utils_to_time(new_offset, :gm)
8
+ end
9
+
10
+ def feed_utils_to_local_time
11
+ feed_utils_to_time(new_offset(DateTime.now.offset-offset), :local)
12
+ end
13
+
14
+ private
15
+ def feed_utils_to_time(dest, method)
16
+ #Convert a fraction of a day to a number of microseconds
17
+ usec = (dest.sec_fraction * 60 * 60 * 24 * (10**6)).to_i
18
+ Time.send(method, dest.year, dest.month, dest.day, dest.hour, dest.min,
19
+ dest.sec, usec)
20
+ end
21
+ end
@@ -0,0 +1,9 @@
1
+ class String
2
+ def sanitize!
3
+ self.replace(sanitize)
4
+ end
5
+
6
+ def sanitize
7
+ Dryopteris.sanitize(self)
8
+ end
9
+ end
@@ -0,0 +1,22 @@
1
+ module Feedzirra
2
+ # == Summary
3
+ # Parser for dealing with Atom feeds.
4
+ #
5
+ # == Attributes
6
+ # * title
7
+ # * feed_url
8
+ # * url
9
+ # * entries
10
+ class Atom
11
+ include SAXMachine
12
+ include FeedUtilities
13
+ element :title
14
+ element :link, :as => :url, :value => :href, :with => {:type => "text/html"}
15
+ element :link, :as => :feed_url, :value => :href, :with => {:type => "application/atom+xml"}
16
+ elements :entry, :as => :entries, :class => AtomEntry
17
+
18
+ def self.able_to_parse?(xml) #:nodoc:
19
+ xml =~ /(Atom)|(#{Regexp.escape("http://purl.org/atom")})/
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,29 @@
1
+ module Feedzirra
2
+ # == Summary
3
+ # Parser for dealing with Atom feed entries.
4
+ #
5
+ # == Attributes
6
+ # * title
7
+ # * url
8
+ # * author
9
+ # * content
10
+ # * summary
11
+ # * published
12
+ # * categories
13
+ class AtomEntry
14
+ include SAXMachine
15
+ include FeedEntryUtilities
16
+ element :title
17
+ element :link, :as => :url, :value => :href, :with => {:type => "text/html", :rel => "alternate"}
18
+ element :name, :as => :author
19
+ element :content
20
+ element :summary
21
+ element :published
22
+ element :id
23
+ element :created, :as => :published
24
+ element :issued, :as => :published
25
+ element :updated
26
+ element :modified, :as => :updated
27
+ elements :category, :as => :categories, :value => :term
28
+ end
29
+ end
@@ -0,0 +1,22 @@
1
+ module Feedzirra
2
+ # == Summary
3
+ # Parser for dealing with Feedburner Atom feeds.
4
+ #
5
+ # == Attributes
6
+ # * title
7
+ # * feed_url
8
+ # * url
9
+ # * entries
10
+ class AtomFeedBurner
11
+ include SAXMachine
12
+ include FeedUtilities
13
+ element :title
14
+ element :link, :as => :url, :value => :href, :with => {:type => "text/html"}
15
+ element :link, :as => :feed_url, :value => :href, :with => {:type => "application/atom+xml"}
16
+ elements :entry, :as => :entries, :class => AtomFeedBurnerEntry
17
+
18
+ def self.able_to_parse?(xml) #:nodoc:
19
+ (xml =~ /Atom/ && xml =~ /feedburner/) || false
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,30 @@
1
+ module Feedzirra
2
+ # == Summary
3
+ # Parser for dealing with Feedburner Atom feed entries.
4
+ #
5
+ # == Attributes
6
+ # * title
7
+ # * url
8
+ # * author
9
+ # * content
10
+ # * summary
11
+ # * published
12
+ # * categories
13
+ class AtomFeedBurnerEntry
14
+ include SAXMachine
15
+ include FeedEntryUtilities
16
+ element :title
17
+ element :name, :as => :author
18
+ element :link, :as => :url, :value => :href, :with => {:type => "text/html", :rel => "alternate"}
19
+ element :"feedburner:origLink", :as => :url
20
+ element :summary
21
+ element :content
22
+ element :published
23
+ element :id
24
+ element :issued, :as => :published
25
+ element :created, :as => :published
26
+ element :updated
27
+ element :modified, :as => :updated
28
+ elements :category, :as => :categories, :value => :term
29
+ end
30
+ end