Class: Brick::SeedsBuilder

Inherits:
Object show all
Extended by:
FancyGets
Defined in:
lib/generators/brick/seeds_builder.rb

Defined Under Namespace

Classes: AirtableObject, SeedModel

Class Method Summary collapse

Class Method Details

.generate_seeds(relations = nil) ⇒ Object



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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
# File 'lib/generators/brick/seeds_builder.rb', line 15

def generate_seeds(relations = nil)
  if File.exist?(seed_file_path = "#{::Rails.root}/db/seeds.rb")
    puts "WARNING: seeds file #{seed_file_path} appears to already be present.\nOverwrite?"
    return unless gets_list(list: ['No', 'Yes']) == 'Yes'

    puts "\n"
  end

  if relations
    is_airtable = true # So far the only thing that feeds us relations is Airtable
    require 'generators/brick/airtable_api_caller'
    # include ::Brick::MigrationsBuilder
    chosen = relations.map { |k, v| SeedModel.new(k, nil, false, v[:airtable_table]) }
  else
    ::Brick.mode = :on
    ActiveRecord::Base.establish_connection
    relations = ::Brick.relations

    # Load all models
    ::Brick.eager_load_classes

    # Generate a list of viable models that can be chosen
    # First start with any existing models that have been defined ...
    existing_models = ActiveRecord::Base.descendants.each_with_object({}) do |m, s|
      s[m.table_name] = SeedModel.new(m.table_name, m, false) if !m.abstract_class? && !m.is_view? && m.table_exists?
    end
    models = (existing_models.values +
              # ... then add models which can be auto-built by Brick
              relations.reject do |k, v|
                k.is_a?(Symbol) || (v.key?(:isView) && v[:isView] == true) || existing_models.key?(k)
              end.map { |k, v| SeedModel.new(k, v[:class_name].constantize, true) }
             ).sort { |a, b| a.to_s <=> b.to_s }
    if models.empty?
      puts "No viable models found for database #{ActiveRecord::Base.connection.current_database}."
      return
    end

    chosen = gets_list(list: models, chosen: models.dup)
    schemas = chosen.each_with_object({}) do |v, s|
      if (v_parts = v.table_name.split('.')).length > 1
        s[v_parts.first] = nil unless [::Brick.default_schema, 'public'].include?(v_parts.first)
      end
    end
  end
  seeds = +'# Seeds file for '
  if (arbc = ActiveRecord::Base.connection).respond_to?(:current_database) # SQLite3 can't do this!
    seeds << "#{arbc.current_database}:\n"
  elsif (filename = arbc.instance_variable_get(:@connection_parameters)&.fetch(:database, nil))
    seeds << "#{filename}:\n"
  end
  done = []
  fks = {}
  stuck = {}
  indexes = {} # Track index names to make sure things are unique
  ar_base = Object.const_defined?(:ApplicationRecord) ? ApplicationRecord : Class.new(ActiveRecord::Base)
  atrt_idx = 0    # ActionText::RichText unique index number
  airtable_assoc_recids = Hash.new { |h, k| h[k] = {} }
  @has_atrts = nil # Any ActionText::RichText present?
  # Start by making entries for fringe models (those with no foreign keys).
  # Continue layer by layer, creating entries for models that reference ones already done, until
  # no more entries can be created.  (At that point hopefully all models are accounted for.)
  while (fringe = chosen.reject do |seed_model|
                    tbl = seed_model.table_name
                    snag_fks = []
                    snags = relations.fetch(tbl, nil)&.fetch(:fks, nil)&.select do |_k, v|
                      # Skip any foreign keys which should be deferred ...
                      !Brick.drfgs[tbl]&.any? do |drfg|
                        drfg[0] == v.fetch(:fk, nil) && drfg[1] == v.fetch(:inverse_table, nil)
                      end &&
                      v[:is_bt] && !v[:polymorphic] && # ... and polymorphics ...
                      tbl != v[:inverse_table] && # ... and self-referencing associations (stuff like "parent_id")
                      !done.any? { |done_seed_model| done_seed_model.table_name == v[:inverse_table] } &&
                      ::Brick.config.ignore_migration_fks.exclude?(snag_fk = "#{tbl}.#{v[:fk]}") &&
                      snag_fks << snag_fk
                    end
                    if snags&.present?
                      # puts snag_fks.inspect
                      stuck[tbl] = snags
                    end
                  end
        ).present?
    seeds << "\n"
    unless is_airtable
      # Search through the fringe to see if we should bump special dependent classes forward to the next fringe.
      # (Currently only ActiveStorage::Attachment if there's also an ActiveStorage::VariantRecord in the same
      # fringe, and always have ActionText::EncryptedRichText at the very end.)
      fringe_classes = fringe.map { |f| f.klass.name }
      unless (asa_idx = fringe_classes.index('ActiveStorage::Attachment')).nil?
        fringe.slice!(asa_idx) if fringe_classes.include?('ActiveStorage::VariantRecord')
      end
      unless (atert_idx = fringe_classes.index('ActionText::EncryptedRichText')).nil?
        fringe.slice!(atert_idx) if fringe_classes.length > 1
      end
    end
    fringe.each do |seed_model|
      tbl = seed_model.table_name
      next unless ::Brick.config.exclude_tables.exclude?(tbl) &&
                  (relation = relations.fetch(tbl, nil))&.fetch(:cols, nil)&.present? &&
                  (is_airtable || (klass = seed_model.klass).table_exists?)

      pkey_cols = (rpk = relation[:pkey].values.flatten) & (arpk = [ar_base.primary_key].flatten.sort)
      # In case things aren't as standard
      if pkey_cols.empty?
        pkey_cols = if rpk.empty? # && relation[:cols][arpk.first]&.first == key_type
                      arpk
                    elsif rpk.first
                      rpk
                    end
      end
      schema = if (tbl_parts = tbl.split('.')).length > 1
                 if tbl_parts.first == (::Brick.default_schema || 'public')
                   tbl_parts.shift
                   nil
                 else
                   tbl_parts.first
                 end
               end

      # # Had considered doing this for non-Airtable:
      # # For the moment we're skipping polymorphics
      # fkeys = klass.reflect_on_all_associations.select { |a| a.belongs_to? && !a.polymorphic? }.map do |fk|
      #   { fk: fk.foreign_key, assoc_name: fk.name.to_s, inverse_table: fk.table_name }
      # end
      # For the moment we're skipping polymorphics
      fkeys = relation[:fks].values.select { |assoc| assoc[:is_bt] && !assoc[:polymorphic] }

      # Refer to this table name as a symbol or dotted string as appropriate
      # tbl_code = tbl_parts.length == 1 ? ":#{tbl_parts.first}" : "'#{tbl}'"

      has_rows = false
      is_empty = true
      klass_name = is_airtable ? ::Brick::AirtableApiCaller.sane_table_name(relation[:airtable_table]&.name)&.singularize&.camelize : klass.name
      # Pull the records
      collection = if is_airtable
        if (airtable_table = relation[:airtable_table])
          ::Brick::AirtableApiCaller.https_get("https://api.airtable.com/v0/#{airtable_table.base_id}/#{airtable_table.id}").fetch('records', nil)
        end
      else
        klass.order(*pkey_cols)
      end
      collection&.each do |obj|
        if is_airtable
          fields = obj['fields'].each_with_object({}) do |field, s|
            if relation[:cols].keys.include?(col_name = ::Brick::AirtableApiCaller.sane_name(field.first))
              s[col_name] = obj['fields'][field.first]
            else # Consider N:M fks
              hm_fk = relation[:fks].find { |_k, fk1| !fk1[:is_bt] && fk1[:assoc_name] == ::Brick::AirtableApiCaller.sane_name(field.first) }&.last
              if (assoc_table = hm_fk&.fetch(:inverse_table, nil))
                associative_fks = relations[assoc_table][:fks]
                # near_side_fk = associative_fks.find { |_k, fk1| fk1[:is_bt] && fk1[:assoc_name] == ::Brick::AirtableApiCaller.sane_name(field.first) }&.last
                far_side_fk = associative_fks.find { |_k, fk1| fk1[:is_bt] && fk1[:assoc_name] != ::Brick::AirtableApiCaller.sane_name(field.first) }&.last
                field.last.each do |nm_rec|
                  # Can trade out:  hm_fk[:fk]  for:  near_side_fk[:inverse_table]
                  airtable_assoc_recids[assoc_table][[nm_rec[3..-1], obj['id'][3..-1]].sort.join] =
                    "#{hm_fk[:fk]}: #{hm_fk[:fk].singularize}_#{nm_rec[3..-1]}, " \
                    "#{far_side_fk[:assoc_name]}: #{far_side_fk[:inverse_table].singularize}_#{obj['id'][3..-1]}"
                end
              end
            end
          end
          objects = relation[:airtable_table].objects
          obj = objects[airtable_id = obj['id']] = AirtableObject.new(seed_model, obj['fields'], obj['createdTime'])
        end
        unless has_rows
          has_rows = true
          seeds << "  puts 'Seeding: #{klass_name}'\n"
        end
        is_empty = false
        # For Airtable, take off the "rec___" prefix
        pk_val = is_airtable ? airtable_id[3..-1] : brick_escape(orig_pk_val = obj.attributes_before_type_cast[pkey_cols.first])
        var_name = "#{tbl.singularize.gsub('.', '__')}_#{pk_val}"
        fk_vals = []
        data = []
        updates = []
        relation[:cols].each do |col, _col_type|
          # Skip primary key columns, unless they are part of a foreign key.
          # (But always add all columns if it's Airtable!)
          next if !(fk = fkeys.find { |assoc| col == assoc[:fk] }) &&
                  !is_airtable &&
                  pkey_cols.include?(col) && orig_pk_val.is_a?(Integer)

          # Used to be:  obj.send(col)
          # (and with that it was possible to raise ActiveRecord::Encryption::Errors::Configuration...)
          #  %%% should test further and see if that is possible with this code!)
          if (val = obj.attributes_before_type_cast[col]) && (val.is_a?(Time) || val.is_a?(Date))
            val = val.to_s
          end
          if fk
            fk_val = if is_airtable
              # The (3..-1) is to take off the "rec___" prefix
              obj.attributes_before_type_cast[fk[:assoc_name]]&.first&.[](3..-1)
            else
              brick_escape(val)
            end
            fk_vals << "#{fk[:assoc_name]}: #{fk[:inverse_table].singularize.gsub('.', '__')}_#{fk_val}" if fk_val
          else
            val = case val.class.name
                  when 'ActiveStorage::Filename'
                    val.to_s.inspect
                  when 'ActionText::RichText'
                    ensure_has_atrts(updates)
                    atrt_var = "atrt#{atrt_idx += 1}"
                    atrt_create = "(#{atrt_var} = #{val.class.name}.create(name: #{val.name.inspect}, body: #{val.to_trix_html.inspect
                                  }, record_type: #{val.record_type.inspect}, record_id: #{var_name}.#{pkey_cols.first
                                  }, created_at: DateTime.parse('#{val.created_at.inspect}'), updated_at: DateTime.parse('#{val.updated_at.inspect}')))"
                    updates << "#{var_name}.update(#{col}: #{atrt_create})\n"
                    # obj.send(col)&.embeds_blobs&.each do |blob|
                      updates << "atrt_ids[[#{val.id}, '#{val.class.name}']] = #{atrt_var}.id\n"
                    # end
                    next
                  else
                    val.inspect
                  end
            data << "#{col}: #{val}" unless val == 'nil'
          end
        end
        case klass_name
        when 'ActiveStorage::VariantRecord'
          ensure_has_atrts(updates)
          updates << "atrt_ids[[#{obj.id}, '#{klass_name}']] = #{var_name}.id\n"
        end
        # Make sure that ActiveStorage::Attachment and ActionText::EncryptedRichText get
        # wired up to the proper record_id
        if klass_name == 'ActiveStorage::Attachment' || klass_name == 'ActionText::EncryptedRichText'
          record_class = data.find { |d| d.start_with?('record_type: ') }[14..-2]
          record_id = data.find { |d| d.start_with?('record_id: ') }[11..-1]
          data.reject! { |d| d.start_with?('record_id: ') || d.start_with?('created_at: ') || d.start_with?('updated_at: ') }
          data << "record_id: atrt_ids[[#{record_id}, '#{record_class}']]"
          seeds << "#{var_name} = #{klass_name}.find_or_create_by(#{(fk_vals + data).join(', ')}) do |asa|
  asa.created_at = DateTime.parse('#{obj.created_at.inspect}')#{"
  asa.updated_at = DateTime.parse('#{obj.updated_at.inspect}')" if obj.respond_to?(:updated_at)}
end\n"
        else
          seeds << "#{var_name} = #{klass_name}.create(#{(fk_vals + data).join(', ')})\n"
          unless is_airtable
            klass.attachment_reflections.each do |k, v|
              if (attached = obj.send(k))
                ensure_has_atrts(updates)
                updates << "atrt_ids[[#{obj.id}, '#{klass_name}']] = #{var_name}.id\n"
              end
            end if klass.respond_to?(:attachment_reflections)
          end
        end
        updates.each { |update| seeds << update } # Anything that needs patching up after-the-fact
      end
      unless has_rows || klass_name.nil?
        seeds << "  # (Skipping #{klass_name} as it has no rows)\n"
      end
    end
    done.concat(fringe)
    chosen -= done
  end
  airtable_assocs_done = {}
  airtable_assoc_recids.each do |table_name, assoc_pairs| # N:M links
    # Make note of any other tables which have exactly duplicated data
    dupes = airtable_assocs_done.select do |dupe_table, dupe_pairs|
      dupe_table != table_name && assoc_pairs.length > 0 && assoc_pairs.length == dupe_pairs.length &&
      dupe_pairs.all? { |pair_name, _v3| assoc_pairs.keys.include?(pair_name) }
    end
    seeds << "  if ActiveRecord::Migration.table_exists?('#{table_name}')\n"
    seeds << "    # Duplicate data found in: #{dupes.keys.join(', ')}\n" unless dupes.empty?
    seeds << "    puts 'Seeding Airtable associations for #{table_name.camelize.singularize}'\n"
    assoc_pairs.each do |_k2, pair_values|
      seeds << "#{table_name.singularize.camelize}.create(#{pair_values})\n"
    end
    seeds << "  end\n"
    airtable_assocs_done[table_name] = assoc_pairs
  end

  File.open(seed_file_path, "w") { |f| f.write seeds }
  stuck_counts = Hash.new { |h, k| h[k] = 0 }
  chosen.each do |leftover|
    puts "Can't do #{leftover.klass.name} because:\n  #{stuck[leftover.table_name].map do |snag|
      stuck_counts[snag.last[:inverse_table]] += 1
      snag.last[:assoc_name]
    end.join(', ')}"
  end
  puts "\n*** Created seeds for #{done.length} models in db/seeds.rb ***"
  if (stuck_sorted = stuck_counts.to_a.sort { |a, b| b.last <=> a.last }).length.positive?
    puts "-----------------------------------------"
    puts "Unable to create seeds for #{stuck_sorted.length} tables#{
      ".  Here's the top 5 blockers" if stuck_sorted.length > 5
    }:"
    pp stuck_sorted[0..4]
  end
end