Class: ForestLiana::HasManyGetter

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

Instance Method Summary collapse

Constructor Details

#initialize(resource, association, params) ⇒ HasManyGetter

Returns a new instance of HasManyGetter.



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

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

Instance Method Details

#countObject



40
41
42
# File 'app/services/forest_liana/has_many_getter.rb', line 40

def count
  @records.to_a.length
end

#includesObject



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'app/services/forest_liana/has_many_getter.rb', line 23

def includes
  @association.klass
    .reflect_on_all_associations
    .select do |association|
      inclusion = !association.options[:polymorphic] &&
        SchemaUtils.model_included?(association.klass) &&
        [:belongs_to, :has_and_belongs_to_many].include?(association.macro)

      if @field_names_requested
        inclusion && @field_names_requested.include?(association.name)
      else
        inclusion
      end
    end
    .map { |association| association.name.to_s }
end

#performObject



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

def perform
  @records = @resource
    .unscoped
    .find(@params[:id])
    .send(@params[:association_name])
    .eager_load(includes)
  @records = sort_query
end

#recordsObject



19
20
21
# File 'app/services/forest_liana/has_many_getter.rb', line 19

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