forked from excid3/jumpstart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.rb
249 lines (199 loc) · 7.23 KB
/
template.rb
1
2
3
4
5
6
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
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
require "fileutils"
require "shellwords"
# Copied from: https://github.com/mattbrictson/rails-template
# Add this template directory to source_paths so that Thor actions like
# copy_file and template resolve against our source files. If this file was
# invoked remotely via HTTP, that means the files are not present locally.
# In that case, use `git clone` to download them to a local temporary dir.
def add_template_repository_to_source_path
if __FILE__ =~ %r{\Ahttps?://}
require "tmpdir"
source_paths.unshift(tempdir = Dir.mktmpdir("jumpstart-"))
at_exit { FileUtils.remove_entry(tempdir) }
git clone: [
"--quiet",
"https://github.com/excid3/jumpstart.git",
tempdir
].map(&:shellescape).join(" ")
if (branch = __FILE__[%r{jumpstart/(.+)/template.rb}, 1])
Dir.chdir(tempdir) { git checkout: branch }
end
else
source_paths.unshift(File.dirname(__FILE__))
end
end
def add_gems
gem 'administrate', '~> 0.10.0'
gem 'bootstrap', '~> 4.1', '>= 4.1.1'
gem 'data-confirm-modal', '~> 1.6', '>= 1.6.2'
gem 'devise', '~> 4.4', '>= 4.4.3'
gem 'devise-bootstrapped', github: 'excid3/devise-bootstrapped', branch: 'bootstrap4'
gem 'devise_masquerade', '~> 0.6.2'
gem 'font-awesome-sass', '~> 5.0', '>= 5.0.13'
gem 'foreman', '~> 0.84.0'
gem 'friendly_id', '~> 5.2', '>= 5.2.4'
gem 'gravatar_image_tag', github: 'mdeering/gravatar_image_tag'
gem 'jquery-rails', '~> 4.3.1'
gem 'local_time', '~> 2.0', '>= 2.0.1'
gem 'mini_magick', '~> 4.8'
gem 'omniauth-facebook', '~> 5.0'
gem 'omniauth-github', '~> 1.3'
gem 'omniauth-twitter', '~> 1.4'
gem 'sidekiq', '~> 5.1', '>= 5.1.3'
gem 'sitemap_generator', '~> 6.0', '>= 6.0.1'
gem 'webpacker', '~> 3.5', '>= 3.5.3'
gem 'whenever', require: false
end
def set_application_name
# Add Application Name to Config
environment "config.application_name = Rails.application.class.parent_name"
# Announce the user where he can change the application name in the future.
puts "You can change application name inside: ./config/application.rb"
end
def add_users
# Install Devise
generate "devise:install"
# Configure Devise
environment "config.action_mailer.default_url_options = { host: 'localhost', port: 3000 }",
env: 'development'
route "root to: 'home#index'"
# Devise notices are installed via Bootstrap
generate "devise:views:bootstrapped"
# Create Devise User
generate :devise, "User",
"name",
"announcements_last_read_at:datetime",
"admin:boolean"
# Set admin default to false
in_root do
migration = Dir.glob("db/migrate/*").max_by{ |f| File.mtime(f) }
gsub_file migration, /:admin/, ":admin, default: false"
end
requirement = Gem::Requirement.new("> 5.2")
rails_version = Gem::Version.new(Rails::VERSION::STRING)
if requirement.satisfied_by? rails_version
gsub_file "config/initializers/devise.rb",
/ # config.secret_key = .+/,
" config.secret_key = Rails.application.credentials.secret_key_base"
end
# Add Devise masqueradable to users
inject_into_file("app/models/user.rb", "omniauthable, :masqueradable, :", after: "devise :")
end
def add_bootstrap
# Remove Application CSS
run "rm app/assets/stylesheets/application.css"
# Add Bootstrap JS
insert_into_file(
"app/assets/javascripts/application.js",
"\n//= require jquery\n//= require popper\n//= require bootstrap\n//= require data-confirm-modal\n//= require local-time",
after: "//= require rails-ujs"
)
end
def copy_templates
directory "app", force: true
directory "config", force: true
directory "lib", force: true
route "get '/terms', to: 'home#terms'"
route "get '/privacy', to: 'home#privacy'"
end
def add_webpack
rails_command 'webpacker:install'
end
def add_sidekiq
environment "config.active_job.queue_adapter = :sidekiq"
insert_into_file "config/routes.rb",
"require 'sidekiq/web'\n\n",
before: "Rails.application.routes.draw do"
insert_into_file "config/routes.rb",
" authenticate :user, lambda { |u| u.admin? } do\n mount Sidekiq::Web => '/sidekiq'\n end\n\n",
after: "Rails.application.routes.draw do\n"
end
def add_foreman
copy_file "Procfile"
end
def add_announcements
generate "model Announcement published_at:datetime announcement_type name description:text"
route "resources :announcements, only: [:index]"
end
def add_notifications
generate "model Notification recipient_id:integer actor_id:integer read_at:datetime action:string notifiable_id:integer notifiable_type:string"
route "resources :notifications, only: [:index]"
end
def add_administrate
generate "administrate:install"
gsub_file "app/dashboards/announcement_dashboard.rb",
/announcement_type: Field::String/,
"announcement_type: Field::Select.with_options(collection: Announcement::TYPES)"
gsub_file "app/dashboards/user_dashboard.rb",
/email: Field::String/,
"email: Field::String,\n\t\tpassword: Field::String"
gsub_file "app/dashboards/user_dashboard.rb",
/FORM_ATTRIBUTES = \[/,
"FORM_ATTRIBUTES = [\n\t\t:password,"
gsub_file "app/controllers/admin/application_controller.rb",
/# TODO Add authentication logic here\./,
"redirect_to '/', alert: 'Not authorized.' unless user_signed_in? && current_user.admin?"
end
def add_multiple_authentication
insert_into_file "config/routes.rb",
', controllers: { omniauth_callbacks: "users/omniauth_callbacks" }',
after: " devise_for :users"
generate "model Service user:references provider uid access_token access_token_secret refresh_token expires_at:datetime auth:text"
template = """
if Rails.application.secrets.facebook_app_id.present? && Rails.application.secrets.facebook_app_secret.present?
config.omniauth :facebook, Rails.application.secrets.facebook_app_id, Rails.application.secrets.facebook_app_secret, scope: 'email,user_posts'
end
if Rails.application.secrets.twitter_app_id.present? && Rails.application.secrets.twitter_app_secret.present?
config.omniauth :twitter, Rails.application.secrets.twitter_app_id, Rails.application.secrets.twitter_app_secret
end
if Rails.application.secrets.github_app_id.present? && Rails.application.secrets.github_app_secret.present?
config.omniauth :github, Rails.application.secrets.github_app_id, Rails.application.secrets.github_app_secret
end
""".strip
insert_into_file "config/initializers/devise.rb", " " + template + "\n\n",
before: " # ==> Warden configuration"
end
def add_whenever
run "wheneverize ."
end
def add_friendly_id
generate "friendly_id"
insert_into_file(
Dir["db/migrate/**/*friendly_id_slugs.rb"].first,
"[5.2]",
after: "ActiveRecord::Migration"
)
end
def stop_spring
run "spring stop"
end
def add_sitemap
rails_command "sitemap:install"
end
# Main setup
add_template_repository_to_source_path
add_gems
after_bundle do
set_application_name
stop_spring
add_users
add_bootstrap
add_sidekiq
add_foreman
add_webpack
add_announcements
add_notifications
add_multiple_authentication
add_friendly_id
copy_templates
# Migrate
rails_command "db:create"
rails_command "db:migrate"
# Migrations must be done before this
add_administrate
add_whenever
add_sitemap
git :init
git add: "."
git commit: %Q{ -m 'Initial commit' }
end