Sha256: cd9d306d56047cc7ba575fd5e07fda58d7dc99a2d400abe3e23516bd77339d43
Contents?: true
Size: 1.48 KB
Versions: 2
Compression:
Stored size: 1.48 KB
Contents
# frozen_string_literal: true require 'delegate' require 'time' require 'peddler/structured_list' module Peddler # @api private class Operation < SimpleDelegator CAPITAL_LETTERS = /[A-Z]/.freeze ALL_CAPS = %w[sku cod].freeze private_constant :CAPITAL_LETTERS, :ALL_CAPS def initialize(action) super('Action' => action) end def structure!(*list_keys) list_key = list_keys.shift keys .find_all { |key| key.end_with?(list_key) } .each do |found_key| builder = StructuredList.new(found_key, *list_keys) vals = delete(found_key) update(builder.build(vals)) end self end def store(key, val, parent: '') key = camelize(key) if key.is_a?(Symbol) key = "#{parent}.#{key}" unless parent.empty? val = val.iso8601 if val.respond_to?(:iso8601) val = val.to_h if val.is_a?(Struct) if val.is_a?(Hash) val.each { |keyval| store(*keyval, parent: key) } else __getobj__.store(key, val) end end def update(hsh) hsh.each { |key, val| store(key, val) } self end alias add update private def camelize(sym) return sym.to_s if sym =~ CAPITAL_LETTERS sym .to_s .split('_') .map { |token| capitalize(token) } .join end def capitalize(word) if ALL_CAPS.any? { |val| val == word } word.upcase else word.capitalize end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
peddler-2.1.1 | lib/peddler/operation.rb |
peddler-2.1.0 | lib/peddler/operation.rb |