Sha256: a34c21e7dfceac4e7ee11a8553763344817ec8554e959f1519ce3b807e8943a8

Contents?: true

Size: 1.29 KB

Versions: 7

Compression:

Stored size: 1.29 KB

Contents

module ForestLiana
  class ValueStatGetter < StatGetter
    attr_accessor :record

    def perform
      return if @params[:aggregate].blank?
      resource = get_resource().eager_load(@includes)

      if @params[:filters]
        filter_parser = FiltersParser.new(@params[:filters], resource, @params[:timezone])
        resource = filter_parser.apply_filters
        raw_previous_interval = filter_parser.get_previous_interval_condition

        if raw_previous_interval
          previous_value = filter_parser.apply_filters_on_previous_interval(raw_previous_interval)
        end
      end

      @record = Model::Stat.new(value: {
        countCurrent: count(resource),
        countPrevious: previous_value ? count(previous_value) : nil
      })
    end

    private

    def count(value)
      uniq = @params[:aggregate].downcase == 'count'

      if Rails::VERSION::MAJOR >= 4
        if uniq
          # NOTICE: uniq is deprecated since Rails 5.0
          value = Rails::VERSION::MAJOR >= 5 ? value.distinct : value.uniq
        end
        value.send(@params[:aggregate].downcase, aggregate_field)
      else
        value.send(@params[:aggregate].downcase, aggregate_field, distinct: uniq)
      end
    end

    def aggregate_field
      @params[:aggregate_field] || @resource.primary_key
    end

  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
forest_liana-4.1.1 app/services/forest_liana/value_stat_getter.rb
forest_liana-4.1.0 app/services/forest_liana/value_stat_getter.rb
forest_liana-4.0.2 app/services/forest_liana/value_stat_getter.rb
forest_liana-4.0.1 app/services/forest_liana/value_stat_getter.rb
forest_liana-4.0.0 app/services/forest_liana/value_stat_getter.rb
forest_liana-4.0.0.pre.beta.1 app/services/forest_liana/value_stat_getter.rb
forest_liana-4.0.0.pre.beta.0 app/services/forest_liana/value_stat_getter.rb