Class: ForestLiana::LineStatGetter
- Inherits:
-
StatGetter
- Object
- BaseGetter
- StatGetter
- ForestLiana::LineStatGetter
- Defined in:
- app/services/forest_liana/line_stat_getter.rb
Instance Attribute Summary collapse
-
#record ⇒ Object
Returns the value of attribute record.
Instance Method Summary collapse
Methods inherited from StatGetter
#get_resource, #initialize, #validate_params
Methods inherited from BaseGetter
#get_collection, #get_resource, #includes_for_serialization
Constructor Details
This class inherits a constructor from ForestLiana::StatGetter
Instance Attribute Details
#record ⇒ Object
Returns the value of attribute record.
3 4 5 |
# File 'app/services/forest_liana/line_stat_getter.rb', line 3 def record @record end |
Instance Method Details
#client_timezone ⇒ Object
5 6 7 8 9 10 |
# File 'app/services/forest_liana/line_stat_getter.rb', line 5 def client_timezone # As stated here https://github.com/ankane/groupdate#for-sqlite # groupdate does not handle timezone for SQLite return false if 'SQLite' == ActiveRecord::Base.connection.adapter_name @params[:timezone] end |
#get_format ⇒ Object
12 13 14 15 16 17 18 19 20 21 22 23 |
# File 'app/services/forest_liana/line_stat_getter.rb', line 12 def get_format case @params[:timeRange].try(:downcase) when 'day' '%d/%m/%Y' when 'week' 'W%V-%Y' when 'month' '%b %Y' when 'year' '%Y' end end |
#perform ⇒ Object
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'app/services/forest_liana/line_stat_getter.rb', line 25 def perform value = get_resource() filters = ForestLiana::ScopeManager.append_scope_for_user(@params[:filter], @user, @resource.name, @params['contextVariables']) unless filters.blank? value = FiltersParser.new(filters, @resource, @params[:timezone], @params).apply_filters end Groupdate.week_start = :monday value = value.send(timeRange, group_by_date_field, time_zone: client_timezone) value = value.send(@params[:aggregator].downcase, @params[:aggregateFieldName]) .map do |k, v| { label: k.strftime(get_format), values: { value: v }} end @record = Model::Stat.new(value: value) end |