Sha256: 44a4caf8a9c6beacd0dfa49708b87c8b6af8b867d13e879ec0183de862ff382a

Contents?: true

Size: 994 Bytes

Versions: 7

Compression:

Stored size: 994 Bytes

Contents

class RestModel
  module Source
    module Sender
      def to_source!(options = {})
        to_source(options.merge(fail: true))
      end

      def to_source(options = {})
        source = {}
        root_options = {without_nil: options[:without_nil], fail: options[:fail]}

        keys_to_source(options).each do |key|
          value = __send__(key.name)
          key_options = options.fetch(key.name, {}).merge(root_options)
          source.merge! key.to_source!(value, self, key_options)
        end

        source.with_indifferent_access
      end

      alias :to_input! :to_source!
      alias :to_input  :to_source

      private

      def keys_to_source(options)
        self.class.keys.clone.tap do |keys|
          keys.reject! {|k| k.kind_of?(Relation)}
          keys.reject! {|k| Array(options[:without]).include?(k.name)}

          keys.reject! do |key|
            __send__(key.name).nil? and options[:without_nil]
          end
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
rest_model-0.1.6 lib/rest_model/source/sender.rb
rest_model-0.1.5 lib/rest_model/source/sender.rb
rest_model-0.1.4 lib/rest_model/source/sender.rb
rest_model-0.1.3 lib/rest_model/source/sender.rb
rest_model-0.1.2 lib/rest_model/source/sender.rb
rest_model-0.1.1 lib/rest_model/source/sender.rb
rest_model-0.1.0 lib/rest_model/source/sender.rb