2004-10-31 09:14:21 -05:00
|
|
|
require "rss/2.0"
|
|
|
|
|
|
|
|
require "rss/maker/0.9"
|
|
|
|
|
|
|
|
module RSS
|
|
|
|
module Maker
|
|
|
|
|
|
|
|
class RSS20 < RSS09
|
|
|
|
|
|
|
|
def initialize(rss_version="2.0")
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
class Channel < RSS09::Channel
|
|
|
|
|
|
|
|
def have_required_values?
|
|
|
|
@title and @link and @description
|
|
|
|
end
|
|
|
|
|
2004-11-28 01:53:41 -05:00
|
|
|
def required_variable_names
|
|
|
|
%w(title link description)
|
|
|
|
end
|
|
|
|
|
2004-11-19 03:25:25 -05:00
|
|
|
class SkipDays < RSS09::Channel::SkipDays
|
|
|
|
class Day < RSS09::Channel::SkipDays::Day
|
|
|
|
end
|
2004-10-31 09:14:21 -05:00
|
|
|
end
|
2004-11-19 03:25:25 -05:00
|
|
|
|
|
|
|
class SkipHours < RSS09::Channel::SkipHours
|
|
|
|
class Hour < RSS09::Channel::SkipHours::Hour
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2004-10-31 09:14:21 -05:00
|
|
|
class Cloud < RSS09::Channel::Cloud
|
2004-11-19 03:25:25 -05:00
|
|
|
def to_rss(rss, channel)
|
2004-10-31 09:14:21 -05:00
|
|
|
cloud = Rss::Channel::Cloud.new
|
|
|
|
set = setup_values(cloud)
|
|
|
|
if set
|
2004-11-19 03:25:25 -05:00
|
|
|
channel.cloud = cloud
|
2004-10-31 09:14:21 -05:00
|
|
|
setup_other_elements(rss)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def have_required_values?
|
|
|
|
@domain and @port and @path and
|
|
|
|
@registerProcedure and @protocol
|
|
|
|
end
|
|
|
|
end
|
2004-11-19 03:25:25 -05:00
|
|
|
|
|
|
|
class Categories < RSS09::Channel::Categories
|
|
|
|
def to_rss(rss, channel)
|
|
|
|
@categories.each do |category|
|
|
|
|
category.to_rss(rss, channel)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class Category < RSS09::Channel::Categories::Category
|
|
|
|
def to_rss(rss, channel)
|
|
|
|
category = Rss::Channel::Category.new
|
|
|
|
set = setup_values(category)
|
|
|
|
if set
|
2004-12-04 04:53:01 -05:00
|
|
|
channel.categories << category
|
2004-11-19 03:25:25 -05:00
|
|
|
setup_other_elements(rss)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def have_required_values?
|
|
|
|
@content
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2004-10-31 09:14:21 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
class Image < RSS09::Image
|
|
|
|
end
|
|
|
|
|
|
|
|
class Items < RSS09::Items
|
|
|
|
|
|
|
|
class Item < RSS09::Items::Item
|
|
|
|
|
|
|
|
def have_required_values?
|
|
|
|
@title or @description
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
def variables
|
|
|
|
super + ["pubDate"]
|
|
|
|
end
|
|
|
|
|
|
|
|
class Guid < RSS09::Items::Item::Guid
|
|
|
|
def to_rss(rss, item)
|
|
|
|
guid = Rss::Channel::Item::Guid.new
|
|
|
|
set = setup_values(guid)
|
|
|
|
if set
|
|
|
|
item.guid = guid
|
|
|
|
setup_other_elements(rss)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def have_required_values?
|
|
|
|
@content
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class Enclosure < RSS09::Items::Item::Enclosure
|
|
|
|
def to_rss(rss, item)
|
|
|
|
enclosure = Rss::Channel::Item::Enclosure.new
|
|
|
|
set = setup_values(enclosure)
|
|
|
|
if set
|
|
|
|
item.enclosure = enclosure
|
|
|
|
setup_other_elements(rss)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def have_required_values?
|
|
|
|
@url and @length and @type
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class Source < RSS09::Items::Item::Source
|
|
|
|
def to_rss(rss, item)
|
|
|
|
source = Rss::Channel::Item::Source.new
|
|
|
|
set = setup_values(source)
|
|
|
|
if set
|
|
|
|
item.source = source
|
|
|
|
setup_other_elements(rss)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def have_required_values?
|
|
|
|
@url and @content
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2004-11-19 03:25:25 -05:00
|
|
|
class Categories < RSS09::Items::Item::Categories
|
2004-10-31 09:14:21 -05:00
|
|
|
def to_rss(rss, item)
|
2004-11-19 03:25:25 -05:00
|
|
|
@categories.each do |category|
|
|
|
|
category.to_rss(rss, item)
|
2004-10-31 09:14:21 -05:00
|
|
|
end
|
|
|
|
end
|
2004-11-19 03:25:25 -05:00
|
|
|
|
|
|
|
class Category < RSS09::Items::Item::Categories::Category
|
|
|
|
def to_rss(rss, item)
|
|
|
|
category = Rss::Channel::Item::Category.new
|
|
|
|
set = setup_values(category)
|
|
|
|
if set
|
2004-12-04 04:53:01 -05:00
|
|
|
item.categories << category
|
2004-11-19 03:25:25 -05:00
|
|
|
setup_other_elements(rss)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def have_required_values?
|
|
|
|
@content
|
|
|
|
end
|
2004-10-31 09:14:21 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
class Textinput < RSS09::Textinput
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
add_maker(filename_to_version(__FILE__), RSS20)
|
|
|
|
end
|
|
|
|
end
|