Sha256: 3d50d83d8f697707b72ed90820c6a979d1a5a6103e988efb322957243a638a19

Contents?: true

Size: 1.43 KB

Versions: 2

Compression:

Stored size: 1.43 KB

Contents

module Html2rss
  class Config
    def initialize(feed_config, global_config = {})
      @global_config = Utils::IndifferentAccessHash.new global_config
      @feed_config = Utils::IndifferentAccessHash.new feed_config
      @channel_config = Utils::IndifferentAccessHash.new @feed_config.fetch('channel', {})
    end

    def author
      channel_config.fetch 'author', 'html2rss'
    end

    def ttl
      channel_config.fetch 'ttl', 3600
    end

    def title
      channel_config.fetch 'title', 'html2rss generated title'
    end

    def language
      channel_config.fetch 'language', 'en'
    end

    def description
      channel_config.fetch 'description', 'A description of my html2rss feed.'
    end

    def url
      channel_config.dig 'url'
    end
    alias link url

    def time_zone
      channel_config.fetch 'time_zone', 'UTC'
    end

    def headers
      global_config.fetch('headers', {})
    end

    def options(name)
      feed_config.dig('selectors').fetch(name, {}).merge('channel' => channel_config)
    end

    def categories
      feed_config.dig('selectors').fetch('categories', [])
    end

    def selector(name)
      feed_config.dig('selectors', name, 'selector')
    end

    def attribute_names
      attribute_names = feed_config.fetch('selectors', {}).keys.map(&:to_s)
      attribute_names.delete('items')
      attribute_names
    end

    private

    attr_reader :feed_config, :channel_config, :global_config
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
html2rss-0.4.1 lib/html2rss/config.rb
html2rss-0.4.0 lib/html2rss/config.rb