# frozen_string_literal: true require 'sinclair' module Azeroth # @api public # # Class to be used when decorating outputs # # @example # class DummyModel # include ActiveModel::Model # # attr_accessor :id, :first_name, :last_name, :age, # :favorite_pokemon # # class Decorator < Azeroth::Decorator # expose :name # expose :age # expose :favorite_pokemon, as: :pokemon # # def name # [object.first_name, object.last_name].join(' ') # end # end # end # # model = DummyModel.new( # id: 100, # first_name: 'John', # last_name: 'Wick', # favorite_pokemon: 'Arcanine' # ) # # decorator = DummyModel::Decorator.new(model) # # decorator.as_json # returns { # # 'name' => 'John Wick', # # 'age' => nil, # # 'pokemon' => 'Arcanine' # # } class Decorator autoload :HashBuilder, 'azeroth/decorator/hash_builder' autoload :Options, 'azeroth/decorator/options' class << self # @api private # # All attributes exposed # # @return [Hash] def attributes_map @attributes_map ||= build_attributes_map end private # @api private # @private # # Initialize attributes to be exposed map # # When the class inherity from another # decorator, the new class should expose the # same attributes. # # @return [Hash] def build_attributes_map superclass.try(:attributes_map).dup || {} end # @visibility public # @api public # @private # # Expose attributes on json decorated # # @param attribute [Symbol,String] attribute to be exposed # @param options [Hash] exposing options # @option options as [Symbol,String] custom key # to expose # @option options if [Symbol,Proc] method/block to be called # checking if an attribute should or should not # be exposed # # @return [Array] # # @example # class DummyModel # include ActiveModel::Model # # attr_accessor :id, :first_name, :last_name, :age, # :favorite_pokemon # # class Decorator < Azeroth::Decorator # expose :name # expose :age # expose :favorite_pokemon, as: :pokemon # # def name # [object.first_name, object.last_name].join(' ') # end # end # end def expose(attribute, **options_hash) options = Decorator::Options.new(options_hash) builder = Sinclair.new(self) builder.add_method(attribute, "@object.#{attribute}") builder.build attributes_map[attribute] = options end end # @api private # # @overload initialize(object) # @param [Object] object to be decorated # @overload initialize(array) # @param array [Array] array of objects to be decorated def initialize(object) @object = object end # @api private # # Builds hash / Json from the given object # # When object is an iterator, decoration is applied to each # and an array is returned # # @param args [Hash] options (to be implemented) # # @return [Hash] def as_json(*args) return array_as_json(*args) if enum? HashBuilder.new(self).as_json end private attr_reader :object # @method object # @api private # # Object to be decorated # # @return [Object] # @api private # @private # # Checks if object is an enumerable # # @return [TrueClass,FalseClass] def enum? object.is_a?(Enumerable) end # @api private # @private # # Iterate over enumerable decorating each entry # # @return [Array] def array_as_json(*args) object.map do |item| self.class.new(item).as_json(*args) end end # @api private # @private # Method called when method is missing # # This delegates method calls to the given object # # @param method_name [Symbol] name of the method # called # @param args [Array] arguments of the # method called # # @return [Object] def method_missing(method_name, *args) if object.respond_to?(method_name) object.public_send(method_name, *args) else super end end # @api private # @private # Checks if it would respond to a method # # The decision is delegated to the object # # @param method_name [Symbol] name of the method checked # @param include_private [TrueClass,FalseClass] flag # indicating if private methods should be included # # @return [TrueClass,FalseClass] def respond_to_missing?(method_name, include_private) object.respond_to?(method_name, include_private) end end end