require 'sanitize' require 'erb' require 'rss' COMP_MAP = { '>=' => 'ge', '>' => 'gt', '=' => 'eq', '<=' => 'le', '<' => 'lt', 'revision <' => 'rlt', 'revision <=' => 'rle', 'revision >' => 'rgt', 'revision >=' => 'rge' }.freeze helpers do def h(text) Rack::Utils.escape_html(text) end def u(text) ERB::Util::url_encode(text) end def h2(text) Sanitize.clean(text, Sanitize::Config::BASIC) end def code2pre(text) text.gsub('', '
').gsub('', '
').gsub(/ +/, ' ').chomp end # Returns the comparator in the format needed for the XML def xml_comp(val) COMP_MAP[val] end def reverse_xml_comp(val) COMP_MAP.invert[val] end def feed(type, items) RSS::Maker.make(type) do |maker| maker.channel.author = "Gentoo Security Team" maker.channel.about = "https://security.gentoo.org/glsa" maker.channel.link = "https://security.gentoo.org/glsa" maker.channel.description = "This feed contains new Gentoo Linux Security Advisories. Contact security@gentoo.org with questions." maker.channel.title = "Gentoo Linux Security Advisories" maker.channel.updated = Time.now.to_s items.each do |input_item| maker.items.new_item do |item| item.link = BASE_URL + 'glsa/' + input_item.id item.title = "GLSA %s: %s" % [input_item.id, input_item.title] item.updated = Time.now.to_s end end end.to_s end end