Class: ForestLiana::ResourcesGetter

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from BaseGetter

#get_collection, #get_resource

Constructor Details

#initialize(resource, params) ⇒ ResourcesGetter

Returns a new instance of ResourcesGetter.



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

def initialize(resource, params)
  @resource = resource
  @params = params
  @count_needs_includes = false
  @collection_name = ForestLiana.name_for(@resource)
  @collection = get_collection(@collection_name)
  @fields_to_serialize = get_fields_to_serialize
  @field_names_requested = field_names_requested
  get_segment()
  compute_includes()
  @search_query_builder = SearchQueryBuilder.new(@params, @includes, @collection)

  prepare_query()
end

Instance Attribute Details

#includesObject (readonly)

Returns the value of attribute includes.



4
5
6
# File 'app/services/forest_liana/resources_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/resources_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/resources_getter.rb', line 3

def search_query_builder
  @search_query_builder
end

Instance Method Details

#compute_includesObject



41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# File 'app/services/forest_liana/resources_getter.rb', line 41

def compute_includes
  associations_has_one = ForestLiana::QueryHelper.get_one_associations(@resource)

  includes = associations_has_one.map(&:name)
  includes_for_smart_search = []

  if @collection && @collection.search_fields
    includes_for_smart_search = @collection.search_fields
      .select { |field| field.include? '.' }
      .map { |field| field.split('.').first.to_sym }

    includes_has_many = SchemaUtils.many_associations(@resource)
      .select { |association| SchemaUtils.model_included?(association.klass) }
      .map(&:name)

    includes_for_smart_search = includes_for_smart_search & includes_has_many
  end

  if @field_names_requested
    @includes = (includes & @field_names_requested).concat(includes_for_smart_search)
  else
    @includes = includes
  end
end

#countObject



27
28
29
30
31
# File 'app/services/forest_liana/resources_getter.rb', line 27

def count
  # NOTICE: For performance reasons, do not eager load the data if there is  no search or
  #         filters on associations.
  @records_count = @count_needs_includes ? @records.eager_load(@includes).count : @records.count
end

#includes_for_serializationObject



66
67
68
# File 'app/services/forest_liana/resources_getter.rb', line 66

def includes_for_serialization
  super & @fields_to_serialize.map(&:to_s)
end

#performObject



22
23
24
25
# File 'app/services/forest_liana/resources_getter.rb', line 22

def perform
  @records = @records.eager_load(@includes)
  @records_sorted = sort_query
end

#query_for_batchObject



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

def query_for_batch
  @records
end

#recordsObject



37
38
39
# File 'app/services/forest_liana/resources_getter.rb', line 37

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