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, forest_user) ⇒ 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, forest_user)
  @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, forest_user)

  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



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

def count
  @records_count = @records.count
end

#performObject



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

def perform
  @records
end

#query_for_batchObject



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

def query_for_batch
  @records
end

#recordsObject



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

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