Sha256: d776bc0b502d9856b73b39b323738c2fb062c9c33800333b8775818324c37cf8

Contents?: true

Size: 1.71 KB

Versions: 3

Compression:

Stored size: 1.71 KB

Contents

module ActiveHashRelation
  class Aggregation
    include Helpers

    attr_reader :configuration, :params, :resource, :model

    def initialize(resource, params, model: nil)
      @configuration = Module.nesting.last.configuration
      @resource = resource
      @params = HashWithIndifferentAccess.new(params)
      @model = model

      unless @model
        @model = model_class_name(@resource)
        if @model.nil? || engine_name == @model.to_s
          @model = model_class_name(@resource, true)
        end
      end
    end

    def apply
      if params[:aggregate].is_a? Hash
        meta_attributes = HashWithIndifferentAccess.new

        @model.columns.each do |c|
          next unless params[:aggregate][c.name.to_s].is_a? Hash

          case c.type
          when :integer, :float, :decimal
            meta_attributes[c.name.to_s] = apply_aggregations(
              {avg: :average, sum: :sum, max: :maximum, min: :minimum},
              params[:aggregate][c.name.to_s],
              c.name.to_s
            )
          when :date, :datetime, :timestamp
            meta_attributes[c.name.to_s] = apply_aggregations(
              {max: :maximum, min: :minimum},
              params[:aggregate][c.name.to_s],
              c.name.to_s
            )
          end
        end
      end

      return meta_attributes
    end

    def apply_aggregations(available_aggr, asked_aggr, column)
      meta_attributes = HashWithIndifferentAccess.new

      available_aggr.each do |k, v|
        if asked_aggr[k]
          meta_attributes[k] = resource.send(v,column)
          meta_attributes[k] = meta_attributes[k].to_f if meta_attributes[k].is_a? BigDecimal
        end
      end

      return meta_attributes
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
active_hash_relation-1.4.1 lib/active_hash_relation/aggregation.rb
active_hash_relation-1.4.0 lib/active_hash_relation/aggregation.rb
active_hash_relation-1.2.0 lib/active_hash_relation/aggregation.rb