Sha256: 7300518c6f097e9ac50c0be9a16e066120ef1a4b6e56cd8b2cac366bc924036b

Contents?: true

Size: 1.4 KB

Versions: 17

Compression:

Stored size: 1.4 KB

Contents

module ForestLiana
  class ValueStatGetter < StatGetter
    attr_accessor :record

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

      filters = ForestLiana::ScopeManager.append_scope_for_user(@params[:filters], @user, @resource.name)

      unless filters.blank?
        filter_parser = FiltersParser.new(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

17 entries across 17 versions & 1 rubygems

Version Path
forest_liana-7.8.1 app/services/forest_liana/value_stat_getter.rb
forest_liana-7.8.0 app/services/forest_liana/value_stat_getter.rb
forest_liana-7.7.3 app/services/forest_liana/value_stat_getter.rb
forest_liana-7.7.2 app/services/forest_liana/value_stat_getter.rb
forest_liana-7.7.1 app/services/forest_liana/value_stat_getter.rb
forest_liana-7.7.0 app/services/forest_liana/value_stat_getter.rb
forest_liana-7.6.14 app/services/forest_liana/value_stat_getter.rb
forest_liana-7.6.13 app/services/forest_liana/value_stat_getter.rb
forest_liana-7.6.12 app/services/forest_liana/value_stat_getter.rb
forest_liana-7.6.11 app/services/forest_liana/value_stat_getter.rb
forest_liana-7.6.10 app/services/forest_liana/value_stat_getter.rb
forest_liana-7.6.9 app/services/forest_liana/value_stat_getter.rb
forest_liana-7.6.8 app/services/forest_liana/value_stat_getter.rb
forest_liana-7.6.7 app/services/forest_liana/value_stat_getter.rb
forest_liana-7.6.6 app/services/forest_liana/value_stat_getter.rb
forest_liana-7.6.5 app/services/forest_liana/value_stat_getter.rb
forest_liana-7.6.4 app/services/forest_liana/value_stat_getter.rb