Class: ForestLiana::HasManyGetter

Inherits:
BaseGetter show all
Defined in:
app/services/forest_liana/has_many_getter.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from BaseGetter

#get_collection, #get_resource, #includes_for_serialization

Constructor Details

#initialize(resource, association, params) ⇒ HasManyGetter

Returns a new instance of HasManyGetter.



7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'app/services/forest_liana/has_many_getter.rb', line 7

def initialize(resource, association, params)
  @resource = resource
  @association = association
  @params = params
  @collection_name = ForestLiana.name_for(model_association)
  @field_names_requested = field_names_requested
  @collection = get_collection(@collection_name)
  compute_includes()
  includes_symbols = @includes.map { |include| include.to_sym }
  @search_query_builder = SearchQueryBuilder.new(@params, includes_symbols, @collection)

  prepare_query()
end

Instance Attribute Details

#includesObject (readonly)

Returns the value of attribute includes.



4
5
6
# File 'app/services/forest_liana/has_many_getter.rb', line 4

def includes
  @includes
end

#records_countObject (readonly)

Returns the value of attribute records_count.



5
6
7
# File 'app/services/forest_liana/has_many_getter.rb', line 5

def records_count
  @records_count
end

#search_query_builderObject (readonly)

Returns the value of attribute search_query_builder.



3
4
5
# File 'app/services/forest_liana/has_many_getter.rb', line 3

def search_query_builder
  @search_query_builder
end

Instance Method Details

#countObject



26
27
28
# File 'app/services/forest_liana/has_many_getter.rb', line 26

def count
  @records_count = @records.count
end

#performObject



21
22
23
24
# File 'app/services/forest_liana/has_many_getter.rb', line 21

def perform
  @records = search_query
  @records = sort_query
end

#query_for_batchObject



34
35
36
# File 'app/services/forest_liana/has_many_getter.rb', line 34

def query_for_batch
  @records
end

#recordsObject



38
39
40
# File 'app/services/forest_liana/has_many_getter.rb', line 38

def records
  @records.limit(limit).offset(offset)
end

#search_queryObject



30
31
32
# File 'app/services/forest_liana/has_many_getter.rb', line 30

def search_query
  @search_query_builder.perform(@records)
end