Class: ForestLiana::SchemaAdapter

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

Instance Method Summary collapse

Constructor Details

#initialize(model) ⇒ SchemaAdapter

Returns a new instance of SchemaAdapter.



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

def initialize(model)
  @model = model
end

Instance Method Details

#performObject



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'app/services/forest_liana/schema_adapter.rb', line 7

def perform
  add_columns
  add_associations

  # ActsAsTaggable attribute
  if @model.respond_to?(:acts_as_taggable) && @model.acts_as_taggable.respond_to?(:to_a)
    @model.acts_as_taggable.to_a.each do |key, value|
      field = collection.fields.find {|x| x[:field] == key.to_s}

      if field
        field[:type] = 'String'
        field[:reference] = nil
        field[:inverse_of] = nil

        collection.fields.delete_if do |f|
          ['taggings', 'base_tags', 'tag_taggings'].include?(f[:field])
        end
      end
    end
  end

  # Devise attributes
  if @model.respond_to?(:devise_modules?)
    collection.fields << {
      field: 'password',
      type: 'String'
    }

    collection.fields.delete_if do |f|
      ['encrypted_password'].include?(f[:field])
    end
  end

  collection
end