Sha256: b6f2ef65f41a921f1388ce1e4651f7f2b844610b0a04351215f02a75010c8c47

Contents?: true

Size: 1.98 KB

Versions: 4

Compression:

Stored size: 1.98 KB

Contents

require "builder"

require "gyoku/hash"
require "gyoku/xml_value"

module Gyoku
  class Array

    NESTED_ELEMENT_NAME = "element"

    # Translates a given +array+ to XML. Accepts the XML +key+ to add the elements to,
    # whether to +escape_xml+ and an optional Hash of +attributes+.
    def self.to_xml(array, key, escape_xml = true, attributes = {}, options = {})
      self_closing = options.delete(:self_closing)
      iterate_with_xml array, attributes do |xml, item, attrs, index|
        if self_closing
          xml.tag!(key, attrs)

        else
          case item
            when ::Hash       then xml.tag!(key, attrs) { xml << Hash.to_xml(item, options) }
            when ::Array      then xml.tag!(key, attrs) { xml << Array.to_xml(item, NESTED_ELEMENT_NAME) }
            when NilClass     then xml.tag!(key, "xsi:nil" => "true")
            else              xml.tag!(key, attrs) { xml << XMLValue.create(item, escape_xml) }
          end
        end
      end
    end

  private

    # Iterates over a given +array+ with a Hash of +attributes+ and yields a builder +xml+
    # instance, the current +item+, any XML +attributes+ and the current +index+.
    def self.iterate_with_xml(array, attributes)
      xml = Builder::XmlMarkup.new
      array.each_with_index do |item, index|
        if item.respond_to?(:keys)
          attrs = item.reduce({}) do |st, v|
            k = v[0].to_s
            st[k[1..-1]] = v[1].to_s if k =~ /^@/
            st
          end
        else
          attrs = {}
        end
        yield xml, item, tag_attributes(attributes, index).merge(attrs), index
      end
      xml.target!
    end

    # Takes a Hash of +attributes+ and the +index+ for which to return attributes
    # for duplicate tags.
    def self.tag_attributes(attributes, index)
      return {} if attributes.empty?

      attributes.inject({}) do |hash, (key, value)|
        value = value[index] if value.kind_of? ::Array
        value ? hash.merge(key => value) : hash
      end
    end

  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
gyoku-1.2.2 lib/gyoku/array.rb
gyoku-1.2.0 lib/gyoku/array.rb
vagrant-tiktalik-0.0.3 vendor/bundle/ruby/2.0.0/gems/gyoku-1.1.1/lib/gyoku/array.rb
gyoku-1.1.1 lib/gyoku/array.rb