Class: Thecore::ThecorizeModelsGenerator
- Inherits:
-
Rails::Generators::NamedBase
- Object
- Rails::Generators::NamedBase
- Thecore::ThecorizeModelsGenerator
- Defined in:
- lib/generators/thecore/thecorize_models/thecorize_models_generator.rb
Instance Method Summary collapse
- #add_has_many ⇒ Object
- #add_has_many_through ⇒ Object
- #add_rails_admin_reference ⇒ Object
- #complete_belongs_to ⇒ Object
- #detect_polymorphic_associations ⇒ Object
- #init_constants ⇒ Object
- #replace_active_record ⇒ Object
Instance Method Details
#add_has_many ⇒ Object
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 |
# File 'lib/generators/thecore/thecorize_models/thecorize_models_generator.rb', line 83 def add_has_many say "Add Has Many Associations", :green # For each model in this gem @model_files.each do |entry| file = File.join(@plugin_models_dir,entry) # It must be an activerecord model class if is_applicationrecord?(file) # say "Looking for belongs_to in #{entry} and adding the relevant has_manies", :green # Polymorphic must be managed manually File.readlines(file).grep(/^(?!.*polymorphic.*)^[ \t]*belongs_to :(.*),.+/).each do |a| target_association = a[/:(.*?),/,1] # look if the file identified by association .rb exists associated_file = File.join(@plugin_models_dir,"#{target_association}.rb") starting_model = entry.split(".").first.pluralize # say "Found belongs_to association: #{target_association} for the model: #{starting_model}", :green # say "- Looking for model file: #{associated_file}", :green if File.exists?(associated_file) # say "The file in which to add has_many, exists and the has_many does not! #{associated_file}", :green # if true, check that the association is non existent and add the association to that file inject_into_file associated_file, after: " < ApplicationRecord\n" do "\n\t\thas_many :#{starting_model}, inverse_of: :#{target_association}, dependent: :destroy\n" end unless has_has_many_association?(associated_file, starting_model) else # otherwise (the file does not exist) check if the initializer for concerns exists, # For each model in this gem initializer_name = "associations_#{target_association}_concern.rb" initializer initializer_name do "require 'active_support/concern' module #{target_association.classify}AssociationsConcern extend ActiveSupport::Concern included do end end # include the extension # #{target_association.classify}.send(:include, #{target_association.classify}AssociationsConcern) " end unless File.exists?(File.join(@plugin_initializers_dir, initializer_name)) # AGGIUNGO L'INCLUDE say "Adding after_initialize file", :green after_initialize_file_name = "#{@name}_after_initialize.rb" after_initialize_file_fullpath = File.join(@plugin_initializers_dir, after_initialize_file_name) initializer after_initialize_file_name do "Rails.application.configure do\n\tconfig.after_initialize do\n\tend\nend" end unless File.exists?(after_initialize_file_fullpath) inject_into_file after_initialize_file_fullpath, after: "config.after_initialize do\n" do "\n\t\t#{target_association.classify}.send(:include, #{target_association.classify}AssociationsConcern)\n" end # then add to it the has_many declaration # TODO: only if it doesn't already exists inject_into_file File.join(@plugin_initializers_dir, initializer_name), after: "included do\n" do "\n\t\thas_many :#{starting_model}, inverse_of: :#{target_association}, dependent: :destroy\n" end end end end end end |
#add_has_many_through ⇒ Object
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 |
# File 'lib/generators/thecore/thecorize_models/thecorize_models_generator.rb', line 147 def add_has_many_through say "Add Has Many Through Associations", :green # I'ts just an approximation, but for now it could work @model_files.each do |model| association_model = model.split(".").first file = File.join(@plugin_models_dir,model) # It must be an activerecord model class model_with_belongs_to = File.readlines(file).grep(/^[ \t]*belongs_to :.*$/) if model_with_belongs_to.size == 2 if yes?("Is #{model} an association model for a has_many through relation?", :red) # getting both the belongs_to models, find their model files, and add the through to each other left_side = model_with_belongs_to.first[/:(.*?),/,1] right_side = model_with_belongs_to.last[/:(.*?),/,1] # This side of the through inject_into_file File.join(@plugin_models_dir, "#{left_side}.rb"), after: " < ApplicationRecord\n" do #has_many :rooms, through: :chosen_rooms, inverse_of: :chosen_decks " has_many :#{right_side.pluralize}, through: :#{association_model.pluralize}, inverse_of: :#{left_side.pluralize} " end unless is_has_many_through? file, right_side.pluralize, association_model.pluralize # Other side of the through inject_into_file File.join(@plugin_models_dir, "#{right_side}.rb"), after: " < ApplicationRecord\n" do #has_many :rooms, through: :chosen_rooms, inverse_of: :chosen_decks " has_many :#{left_side.pluralize}, through: :#{association_model.pluralize}, inverse_of: :#{right_side.pluralize} " end unless is_has_many_through? file, left_side.pluralize, association_model.pluralize end end end end |
#add_rails_admin_reference ⇒ Object
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
# File 'lib/generators/thecore/thecorize_models/thecorize_models_generator.rb', line 40 def add_rails_admin_reference say "Add rails_admin declaration only in files which are ActiveRecords and don't already have that declaration", :green # For each model in this gem @model_files.each do |entry| # It must be a class and don't have rails_admin declaration file = File.join(@plugin_models_dir,entry) # say "Checking file #{file}", :red if is_applicationrecord?(file) && !has_rails_admin_declaration?(file) # say "Adding rails_admin to #{entry}", :green # Add rails admin declaration inject_into_file file, before: /^end/ do " RailsAdmin.config do |config| config.model self.name.underscore.capitalize.classify do navigation_label I18n.t('admin.settings.label') navigation_icon 'fa fa-file' end end " end end end end |
#complete_belongs_to ⇒ Object
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
# File 'lib/generators/thecore/thecorize_models/thecorize_models_generator.rb', line 65 def complete_belongs_to say "Completes Belongs To Associations", :green # For each model in this gem @model_files.each do |entry| # It must be a class and don't have rails_admin declaration file = File.join(@plugin_models_dir,entry) # say "Checking file #{file}", :red if is_applicationrecord?(file) # say "Adding inverse_of to all belongs_to in #{entry}", :green # belongs_to that don't have inverse_of gsub_file file, /^(?!.*inverse_of.*)^[ \t]*belongs_to.*$/ do |match| match << ", inverse_of: :#{entry.split(".").first.pluralize}" end end end end |
#detect_polymorphic_associations ⇒ Object
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 |
# File 'lib/generators/thecore/thecorize_models/thecorize_models_generator.rb', line 180 def detect_polymorphic_associations say "Detect polymorphic Associations", :green # For each model in this gem # say "MODEL FILES: #{@model_files.inspect} " @model_files.each do |model| file = File.join(@plugin_models_dir,model) # It must be an activerecord model class # belongs_to :rowable, polymorphic: true, inverse_of: :rows polymorphics = File.readlines(file).grep(/^[ \t]*belongs_to :.*polymorphic.*/) polymorphics.each do |polymorphic_belongs_to| polymorphic_target_association = polymorphic_belongs_to[/:(.*?),/,1] # Just keeping the models that are not this model, and answers = ask_question_multiple_choice @model_files.reject {|m| m == model || has_polymorphic_has_many?(File.join(@plugin_models_dir,m), polymorphic_target_association)}, "Where do you want to add the polymorphic has_many called #{polymorphic_target_association} found in #{model}?" answers.each do |answer| # Add the polymorphic has_name declaration inject_into_file File.join(@plugin_models_dir, answer), after: " < ApplicationRecord\n" do " has_many :#{model.split(".").first.pluralize}, as: :#{polymorphic_target_association}, inverse_of: :#{answer.split(".").first.singularize}, dependent: :destroy " end end end end end |
#init_constants ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'lib/generators/thecore/thecorize_models/thecorize_models_generator.rb', line 6 def init_constants say "Setting the variables", :green @plugin_path = @destination_stack.first.match(Regexp.new("^.*#{@name}"))[0] @parent_path = File.("..", @plugin_path) @plugin_parent_name = @parent_path.split(File::SEPARATOR).last @plugin_initializers_dir = File.join(@plugin_path, "config", "initializers") @plugin_models_dir = File.join(@plugin_path, "app", "models") @plugin_lib_file = File.join(@plugin_path, "lib", @name, "engine.rb") Dir.chdir @plugin_models_dir do # Getting all the models that are activerecords: @model_files = Dir.glob("*.rb").map do |model| file = File.join(@plugin_models_dir,model) model if is_applicationrecord?(file) end.compact end end |
#replace_active_record ⇒ Object
24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
# File 'lib/generators/thecore/thecorize_models/thecorize_models_generator.rb', line 24 def replace_active_record say "Replace ActiveRecord::Base with ApplicationRecord", :green # For each model in this gem @model_files.each do |entry| # It must be a class and don't have rails_admin declaration file = File.join(@plugin_models_dir, entry) # say "Checking file #{file}", :red if is_activerecord?(file) && !has_rails_admin_declaration?(file) # say "Replacing ActiveRecord::Base into #{entry}", :green # Add rails admin declaration gsub_file file, "ActiveRecord::Base", "ApplicationRecord" end end end |