summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorlnu <lnu@f70e237a-67f3-0310-a06c-d2b8a7116972>2005-07-22 08:59:13 +0000
committerlnu <lnu@f70e237a-67f3-0310-a06c-d2b8a7116972>2005-07-22 08:59:13 +0000
commit146beb0d171a4158abd4e8f7f39c69013aeea99e (patch)
treeddf49e3946615ea5b392e817c27e9e6e05d82b8a /lib
parent6941a59386d4d7d6de2c505dda54912e9a163f71 (diff)
downloadfeed2imap-146beb0d171a4158abd4e8f7f39c69013aeea99e.tar.gz
feed2imap-146beb0d171a4158abd4e8f7f39c69013aeea99e.tar.bz2
feed2imap-146beb0d171a4158abd4e8f7f39c69013aeea99e.zip
git-svn-id: svn+ssh://svn.gna.org/svn/feed2imap/trunk/feed2imap@39 f70e237a-67f3-0310-a06c-d2b8a7116972
Diffstat (limited to 'lib')
-rw-r--r--lib/feed2imap/config.rb30
-rw-r--r--lib/feed2imap/feed2imap.rb8
2 files changed, 26 insertions, 12 deletions
diff --git a/lib/feed2imap/config.rb b/lib/feed2imap/config.rb
index d61d415..8899ef5 100644
--- a/lib/feed2imap/config.rb
+++ b/lib/feed2imap/config.rb
@@ -37,13 +37,14 @@ class F2IConfig
@conf['feeds'] ||= []
@feeds = []
@imap_accounts = ImapAccounts::new
- @conf['feeds'].each { |f|
- uri = URI::parse(f['target'])
- path = uri.path
- path = path[1..-1] if path[0,1] == '/'
- @feeds.push(ConfigFeed::new(f['name'], f['url'],
- @imap_accounts.add_account(uri), path))
- }
+ @conf['feeds'].each do |f|
+ if f['disable'].nil?
+ uri = URI::parse(f['target'])
+ path = uri.path
+ path = path[1..-1] if path[0,1] == '/'
+ @feeds.push(ConfigFeed::new(f, @imap_accounts.add_account(uri), path))
+ end
+ end
end
def to_s
@@ -72,8 +73,17 @@ class ConfigFeed
attr_reader :name, :url, :imapaccount, :folder
attr_accessor :body
- def initialize(name, url, imapaccount, folder)
- @name, @url, @imapaccount, @folder = name, url, imapaccount, folder
- url.sub!(/^feed:/, '')
+ def initialize(f, imapaccount, folder)
+ @name = f['name']
+ @url = f['url']
+ @url.sub!(/^feed:/, '') if @url =~ /^feed:/
+ @imapaccount, @folder = imapaccount, folder
+ @freq = f['min-frequency']
+ @freq = @freq.to_i if @freq
+ end
+
+ def needfetch(lastcheck)
+ return true if @freq.nil?
+ return (lastcheck + @freq * 3600) < Time::now
end
end
diff --git a/lib/feed2imap/feed2imap.rb b/lib/feed2imap/feed2imap.rb
index 59997e8..1ae946c 100644
--- a/lib/feed2imap/feed2imap.rb
+++ b/lib/feed2imap/feed2imap.rb
@@ -87,9 +87,13 @@ class Feed2Imap
@config.feeds.each do |f|
ths << Thread::new do
begin
- f.body = HTTPFetcher::fetch(f.url, @cache.get_last_check(f.name))
+ lastcheck = @cache.get_last_check(f.name)
+ if f.needfetch(lastcheck)
+ f.body = HTTPFetcher::fetch(f.url, @cache.get_last_check(f.name))
+ @cache.set_last_check(f.name, Time::now)
+ end
# dump if requested
- if @config.dumpdir
+ if @config.dumpdir and f.body
fname = @config.dumpdir + '/' + f.name + '-' + Time::now.xmlschema
File::open(fname, 'w') { |file| file.puts f.body }
end