Sha256: fbc512848b4d1f82bf200538237434293cdc54d90ca4c13711700b94678c1e75

Contents?: true

Size: 1.36 KB

Versions: 7

Compression:

Stored size: 1.36 KB

Contents

module ForestLiana
  class PieStatGetter
    attr_accessor :record

    def initialize(resource, params)
      @resource = resource
      @params = params
    end

    def perform
      if @params[:group_by_field]
        value = @resource
        conditions = []
        filter_operator = ''

        if @params[:filterType] && @params[:filters]
          filter_operator = " #{@params[:filterType]} ".upcase

          @params[:filters].try(:each) do |filter|
            operator, filter_value = OperatorValueParser.parse(filter[:value])
            conditions <<  OperatorValueParser.get_condition(filter[:field],
              operator, filter_value, @resource)
          end
        end

        # NOTICE: The generated alias for a count is "count_all", for a sum the
        #         alias looks like "sum_#{aggregate_field}"
        field = 'all'
        if @params[:aggregate].downcase == 'sum'
          field = @params[:aggregate_field].downcase
        end

        value = value
          .unscoped
          .where(conditions.join(filter_operator))
          .group(@params[:group_by_field])
          .order("#{@params[:aggregate].downcase}_#{field} DESC")
          .send(@params[:aggregate].downcase, @params[:aggregate_field])
          .map do |k, v|
            { key: k, value: v }
          end

        @record = Model::Stat.new(value: value)
      end
    end

  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
forest_liana-1.3.47 app/services/forest_liana/pie_stat_getter.rb
forest_liana-1.3.46 app/services/forest_liana/pie_stat_getter.rb
forest_liana-1.3.45 app/services/forest_liana/pie_stat_getter.rb
forest_liana-1.3.44 app/services/forest_liana/pie_stat_getter.rb
forest_liana-1.3.43 app/services/forest_liana/pie_stat_getter.rb
forest_liana-1.3.42 app/services/forest_liana/pie_stat_getter.rb
forest_liana-1.3.41 app/services/forest_liana/pie_stat_getter.rb