Class: Padrino::Generators::AdminApp
- Includes:
- Actions, Padrino::Generators::Admin::Actions, Thor::Actions
- Defined in:
- padrino-admin/lib/padrino-admin/generators/admin_app.rb
Overview
Defines the generator for creating a new admin app.
Class Method Summary collapse
-
.banner ⇒ Object
Defines the “banner” text for the CLI.
-
.source_root ⇒ Object
Define the source template root.
Instance Method Summary collapse
-
#create_admin ⇒ Object
Copies over the Padrino base admin application.
-
#source_paths ⇒ Object
Look for custom template files in a generators folder under the project root.
Methods included from Padrino::Generators::Admin::Actions
#add_project_module, #ext, #fetch_app_name, #orm, #remove_project_module, #supported_ext, #supported_orm
Methods included from Actions
#already_exists?, #app_skeleton, #apply_component_for, #apply_default_fields, #check_app_existence, #destination_root, #empty_directory_with_keep_file, #execute_component_setup, #fetch_app_name, #fetch_component_choice, #fetch_project_name, #in_app_root?, #include_component_module_for, #initializer, #inject_into_file, #insert_hook, #insert_into_gemfile, #insert_middleware, #invalid_fields, #keep_file, #middleware, #recognize_path, #require_contrib, #require_dependencies, #resolve_valid_choice, #retrieve_component_config, #run_bundler, #store_component_choice, #store_component_config, #test?, #tiny?, #valid_choice?, #valid_constant?, #validate_namespace
Class Method Details
.banner ⇒ Object
Defines the “banner” text for the CLI.
15 |
# File 'padrino-admin/lib/padrino-admin/generators/admin_app.rb', line 15 def self.; "padrino-gen admin"; end |
.source_root ⇒ Object
Define the source template root
13 |
# File 'padrino-admin/lib/padrino-admin/generators/admin_app.rb', line 13 def self.source_root; File.(File.dirname(__FILE__)); end |
Instance Method Details
#create_admin ⇒ Object
Copies over the Padrino base admin application.
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 |
# File 'padrino-admin/lib/padrino-admin/generators/admin_app.rb', line 42 def create_admin self.destination_root = [:root] if in_app_root? unless supported_orm.include?(orm) say "<= At the moment, Padrino only supports #{supported_orm.join(" or ")}. Sorry!", :yellow raise SystemExit end tmp_ext = [:renderer] || fetch_component_choice(:renderer) unless supported_ext.include?(tmp_ext.to_sym) say "<= You are using '#{tmp_ext}' and for admin we only support '#{supported_ext.join(', ')}'. Please use #{supported_ext.map { |ext| '-e ' + ext.to_s }.join(' or ')}", :yellow raise SystemExit end # Get the app's namespace. @app_name = fetch_app_name # setup admin app name @admin_name = [:admin_name].classify @admin_path = [:admin_name].underscore store_component_choice(:admin_renderer, tmp_ext) self.behavior = :revoke if [:destroy] empty_directory destination_root(@admin_path) # Setup Admin Model @model_name = [:admin_model].classify @model_singular = @model_name.underscore @model_plural = @model_singular.pluralize directory "templates/app", destination_root(@admin_path) directory "templates/assets", destination_root("public", @admin_path) template "templates/app.rb.tt", destination_root(@admin_path + "/app.rb") inject_into_file destination_root('config/apps.rb'), "\nPadrino.mount(\"#{@app_name}::#{@admin_name}\", :app_file => Padrino.root('#{@admin_path}/app.rb')).to(\"/#{@admin_path}\")\n", :before => /^Padrino.mount.*\.to\('\/'\)$/ unless [:destroy] insert_middleware 'ConnectionPoolManagement', @admin_path if [:minirecord, :activerecord].include?(orm) insert_middleware 'IdentityMap', @admin_path if orm == :datamapper end params = [ @model_singular, "name:string", "surname:string", "email:string", "crypted_password:string", "role:string", "-a=#{[:models_path]}", "-r=#{[:root]}" ] params << "-s" if [:skip_migration] params << "-d" if [:destroy] Padrino::Generators::Model.start(params) column = Struct.new(:name, :type) columns = [:id, :name, :surname, :email].map { |col| column.new(col) } column_fields = [ { :name => :name, :field_type => :text_field }, { :name => :surname, :field_type => :text_field }, { :name => :email, :field_type => :text_field }, { :name => :password, :field_type => :password_field }, { :name => :password_confirmation, :field_type => :password_field }, { :name => :role, :field_type => :text_field } ] unless [:destroy] admin_app = Padrino::Generators::AdminPage.new([@model_singular], :root => [:root], :destroy => [:destroy], :admin_model => @model_singular, :admin_name => @admin_name) admin_app.default_orm = Padrino::Admin::Generators::Orm.new(@model_singular, orm, columns, column_fields) admin_app.invoke_all end # TODO See this, there's something wrong it's not being applied properly or something because test_account_model_generator last test fails. template "templates/account/#{orm}.rb.tt", destination_root("models", "#{@model_singular}.rb"), :force => true if File.exist?(destination_root("db/seeds.rb")) run "mv #{destination_root('db/seeds.rb')} #{destination_root('db/seeds.old')}" end template "templates/account/seeds.rb.tt", destination_root("db/seeds.rb") empty_directory destination_root(@admin_path+"/controllers") empty_directory destination_root(@admin_path+"/views") empty_directory destination_root(@admin_path+"/views/base") empty_directory destination_root(@admin_path+"/views/layouts") empty_directory destination_root(@admin_path+"/views/sessions") empty_directory destination_root(@admin_path+"/views/errors") template "templates/#{ext}/app/base/index.#{ext}.tt", destination_root(@admin_path+"/views/base/index.#{ext}") template "templates/#{ext}/app/layouts/application.#{ext}.tt", destination_root(@admin_path+"/views/layouts/application.#{ext}") template "templates/#{ext}/app/layouts/error.#{ext}.tt", destination_root(@admin_path+"/views/layouts/error.#{ext}") template "templates/#{ext}/app/sessions/new.#{ext}.tt", destination_root(@admin_path+"/views/sessions/new.#{ext}") # Custom error. template "templates/#{ext}/app/errors/403.#{ext}.tt", destination_root(@admin_path+"/views/errors/403.#{ext}") template "templates/#{ext}/app/errors/404.#{ext}.tt", destination_root(@admin_path+"/views/errors/404.#{ext}") template "templates/#{ext}/app/errors/500.#{ext}.tt", destination_root(@admin_path+"/views/errors/500.#{ext}") unless [:destroy] add_project_module @model_plural require_dependencies('bcrypt') end require_dependencies 'activesupport', :version => ">= 3.1" # A nicer select box. # TODO FIXME This doesn't make much sense in here. Review. # gsub_file destination_root("admin/views/#{@model_plural}/_form.#{ext}"), "f.text_field :role, :class => :text_field", "f.select :role, :options => access_control.roles" # Destroy account only if not logged in. gsub_file destination_root(@admin_path+"/controllers/#{@model_plural}.rb"), "if #{@model_singular}.destroy", "if #{@model_singular} != current_account && #{@model_singular}.destroy" return if self.behavior == :revoke instructions = [] instructions << "Run 'bundle'" if [:activerecord, :datamapper, :sequel].include?(orm) instructions << "Run 'bundle exec rake db:create' if you have not created a database yet" instructions << "Run 'bundle exec rake db:migrate'" end instructions << "Now repeat after me... 'ohm mani padme hum', 'ohm mani padme hum'... :)" if orm == :ohm instructions << "Run 'bundle exec rake db:seed'" instructions << "Visit the admin panel in the browser at '/#{@admin_path}'" instructions.map! { |i| " #{instructions.index(i)+1}) #{i}" } say say "="*65, :green say "The admin panel has been mounted! Next, follow these steps:", :green say "="*65, :green say instructions.join("\n") say "="*65, :green say else say "You are not at the root of a Padrino application! (config/boot.rb not found)" end end |
#source_paths ⇒ Object
Look for custom template files in a generators folder under the project root.
23 24 25 26 27 28 29 |
# File 'padrino-admin/lib/padrino-admin/generators/admin_app.rb', line 23 def source_paths if File.exist? destination_root('generators', 'templates') ["#{destination_root('generators')}", File.(File.dirname(__FILE__))] else [File.(File.dirname(__FILE__))] end end |