Sha256: 6b8819c9393a13c0146daef70c9ac9efd7e09b81ce9fb0e8254d3db718ea5e2b

Contents?: true

Size: 1.65 KB

Versions: 25

Compression:

Stored size: 1.65 KB

Contents

require "addressable"

module RelatonBib
  # Typed URI
  class TypedUri
    # @return [String, nil]
    attr_reader :type, :language, :script
    # @retutn [Addressable::URI]
    attr_reader :content

    # @param content [String] URL
    # @param type [String, nil] src/obp/rss
    # @param language [String, nil] language code Iso639 (optional) (default: nil)
    # @param script [String, nil] script code Iso15924 (optional) (default: nil)
    def initialize(content:, type: nil, language: nil, script: nil)
      @type     = type
      @language = language
      @script   = script
      @content  = Addressable::URI.parse content if content
    end

    # @param url [String]
    def content=(url)
      @content = Addressable::URI.parse url
    end

    # @param builder [Nokogiri::XML::Builder]
    def to_xml(builder)
      doc = builder.uri content.to_s
      doc[:type] = type if type
      doc[:language] = language if language
      doc[:script] = script if script
    end

    # @return [Hash]
    def to_hash
      hash = { "content" => content.to_s }
      hash["type"] = type.to_s if type
      hash["language"] = language if language
      hash["script"] = script if script
      hash
    end

    # @param prefix [String]
    # @param count [Integer] number of links
    # @return [String]
    def to_asciibib(prefix = "", count = 1)
      pref = prefix.empty? ? "link" : "#{prefix}.link"
      out = count > 1 ? "#{pref}::\n" : ""
      out += "#{pref}.type:: #{type}\n" if type
      out += "#{pref}.content:: #{content}\n"
      out += "#{pref}.language:: #{language}\n" if language
      out += "#{pref}.script:: #{script}\n" if script
      out
    end
  end
end

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
relaton-bib-1.16.0 lib/relaton_bib/typed_uri.rb
relaton-bib-1.14.14 lib/relaton_bib/typed_uri.rb
relaton-bib-1.14.13 lib/relaton_bib/typed_uri.rb
relaton-bib-1.14.12 lib/relaton_bib/typed_uri.rb
relaton-bib-1.14.11 lib/relaton_bib/typed_uri.rb