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
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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
|
# File 'lib/generators/hancock/cms/setup_generator.rb', line 8
def install
generate "devise:install"
gsub_file 'config/initializers/devise.rb', "'[email protected]'", "'noreply@#{app_name.dasherize.downcase}.ru'"
inject_into_file 'config/initializers/devise.rb', after: /^end/ do <<-TEXT
Rails.application.config.to_prepare do
Devise::SessionsController.layout "hancock/devise/sessions"
Devise::RegistrationsController.layout "hancock/devise/registrations"
Devise::ConfirmationsController.layout "hancock/devise/confirmations"
Devise::UnlocksController.layout "hancock/devise/unlocks"
Devise::PasswordsController.layout "hancock/devise/passwords"
end
TEXT
end
generate "devise", "User"
remove_file 'config/routes.rb'
create_file 'config/routes.rb' do <<-TEXT
Rails.application.routes.draw do
devise_for :users, controllers: {sessions: 'hancock/sessions'}
mount RailsAdmin::Engine => '/admin', as: 'rails_admin'
hancock_cms_routes
end
TEXT
end
inject_into_file 'config/initializers/assets.rb', before: /\z/ do <<-TEXT
Rails.application.config.assets.precompile += %w( *.svg )
Rails.application.config.assets.precompile += %w( ckeditor/* )
Rails.application.config.assets.precompile += %w( codemirror.js codemirror.css codemirror/**/* )
TEXT
end
gsub_file 'config/initializers/backtrace_silencers.rb',
"# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }",
"Rails.backtrace_cleaner.add_silencer { |line| line =~ /lib\\/(haml|slim|sass|scss|coffee|compass)/ }"
if mongoid
generate "ckeditor:install", "--orm=mongoid", "--backend=paperclip"
else
generate "ckeditor:install", "--orm=active_record", "--backend=paperclip"
end
gsub_file 'config/initializers/ckeditor.rb', "# config.image_file_types = %w(jpg jpeg png gif tiff)", "config.image_file_types = %w(jpg jpeg png gif tiff svg)"
gsub_file 'config/initializers/ckeditor.rb', "# config.authorize_with :cancan", "config.authorize_with :cancancan"
gsub_file 'config/initializers/ckeditor.rb', "# config.assets_languages = ['en', 'uk']", "config.assets_languages = ['en', 'ru']"
if mongoid
remove_file 'config/initializers/cookies_serializer.rb'
create_file 'config/initializers/cookies_serializer.rb' do <<-TEXT
# Be sure to restart your server when you modify this file.
# json serializer breaks Devise + Mongoid. DO NOT ENABLE
# See https://github.com/plataformatec/devise/pull/2882
# Rails.application.config.action_dispatch.cookies_serializer = :json
Rails.application.config.action_dispatch.cookies_serializer = :marshal
TEXT
end
end
gsub_file 'config/initializers/filter_parameter_logging.rb', "[:password]", "[:password, :password_confirmation]"
generate "hancock:cms:config"
generate "hancock:cms:rack"
generate "hancock:cms:admin"
remove_file 'config/initializers/session_store.rb'
if mongoid
create_file 'config/initializers/session_store.rb' do <<-TEXT
# Be sure to restart your server when you modify this file.
#Rails.application.config.session_store :cookie_store, key: '_#{app_name.tableize.singularize}_session'
Rails.application.config.session_store :mongoid_store
TEXT
end
else
generate 'active_record_store:session_migration'
create_file 'config/initializers/session_store.rb' do <<-TEXT
# Be sure to restart your server when you modify this file.
#Rails.application.config.session_store :cookie_store, key: '_#{app_name.tableize.singularize}_session'
Rails.application.config.session_store :active_record_store
TEXT
end
end
generate "simple_form:install"
remove_file 'app/controllers/application_controller.rb'
create_file 'app/controllers/application_controller.rb' do <<-TEXT
class ApplicationController < ActionController::Base
include Hancock::Controller
end
TEXT
end
generate "hancock:cms:ability"
gsub_file 'app/models/user.rb', '# :confirmable, :lockable, :timeoutable and :omniauthable' do <<-TEXT
include Hancock::Model
include Hancock::Enableable
include Hancock::RailsAdminPatch
def self.manager_can_default_actions
[:show, :read]
end
def self.manager_cannot_actions
[:new, :create, :delete, :destroy]
end
######################### RailsAdminUserAbilities #########################
# def self.rails_admin_user_defined_visible_actions
# [:user_abilities]
# end
# has_one :ability, class_name: "RailsAdminUserAbilities::UserAbility", as: :rails_admin_user_abilitable
# scope :for_rails_admin, -> { where(:roles.in => ['admin', 'manager']) } # could be any you want, just need to
###########################################################################
cattr_accessor :current_user
# Include default devise modules. Others available are:
# :confirmable, :lockable, :timeoutable and :omniauthable
TEXT
end
gsub_file 'app/models/user.rb', ':registerable,', ' :lockable,'
if mongoid
gsub_file 'app/models/user.rb', '# field :failed_attempts', 'field :failed_attempts'
gsub_file 'app/models/user.rb', '# field :unlock_token', 'field :unlock_token'
gsub_file 'app/models/user.rb', '# field :locked_at', 'field :locked_at'
inject_into_file 'app/models/user.rb', before: /^end/ do <<-TEXT
field :name, type: String
field :login, type: String
field :roles, type: Array, default: []
before_save do
self.roles ||= []
self.roles.reject! { |r| r.blank? }
end
AVAILABLE_ROLES = ["admin", "manager", "client"]
AVAILABLE_ROLES.each do |r|
class_eval <<-EVAL
def \#{r}?
self.roles and self.roles.include?("\#{r}")
end
scope :\#{r.pluralize}, -> { any_in(roles: "\#{r}") }
EVAL
end
def self.generate_first_admin_user
if ::User.admins.all.count == 0
_email_pass = 'admin@#{app_name.dasherize.downcase}.ru'
if ::User.new(roles: ["admin"], email: _email_pass, password: _email_pass, password_confirmation: _email_pass).save
puts "#################################################################################"
puts "#################################################################################"
puts "AdminUser with email and password '\#{_email_pass}' was created!"
puts "#################################################################################"
puts "#################################################################################"
else
puts 'Creating AdminUser error'
end
else
puts 'AdminUsers are here already'
end
end
def self.generate_first_manager_user
if ::User.managers.all.count == 0
_email_pass = 'manager@#{app_name.dasherize.downcase}.ru'
if ::User.create(roles: ["manager"], email: _email_pass, password: _email_pass, password_confirmation: _email_pass)
puts "ManagerUser with email and password '\#{_email_pass}' was created!"
else
puts 'Creating ManagerUser error'
end
else
puts 'ManagerUsers are here already'
end
end
rails_admin do
list do
field :email
field :name
field :login
field :roles do
pretty_value do
render_object = (bindings[:controller] || bindings[:view])
render_object.content_tag(:p, bindings[:object].roles.join(", ")) if render_object
end
end
end
edit do
group :login do
active false
field :email, :string do
visible do
render_object = (bindings[:controller] || bindings[:view])
render_object and (render_object.current_user.admin? or (render_object.current_user.manager? and render_object.current_user == bindings[:object]))
end
end
field :name, :string
field :login, :string do
visible do
render_object = (bindings[:controller] || bindings[:view])
render_object and render_object.current_user.admin?
end
end
end
group :roles do
active false
field :roles, :enum do
enum do
AVAILABLE_ROLES
end
multiple do
true
end
visible do
render_object = (bindings[:controller] || bindings[:view])
render_object and render_object.current_user.admin?
end
end
end
group :password do
active false
field :password do
visible do
render_object = (bindings[:controller] || bindings[:view])
render_object and (render_object.current_user.admin? or render_object.current_user == bindings[:object])
end
end
field :password_confirmation do
visible do
render_object = (bindings[:controller] || bindings[:view])
render_object and (render_object.current_user.admin? or render_object.current_user == bindings[:object])
end
end
end
end
end
TEXT
end
end
unless mongoid
generate "hancock:cms:migration"
generate "rails_admin_settings:migration"
end
remove_file 'app/views/layouts/application.html.erb'
generate "hancock:cms:layout"
unless mongoid
rake "db:migrate"
end
run 'rails r "User.generate_first_admin_user"'
remove_file 'app/assets/stylesheets/application.css'
remove_file 'app/assets/javascripts/application.js'
generate "hancock:cms:assets", app_name
remove_file 'public/robots.txt'
generate "hancock:cms:robots", app_name
generate "hancock:cms:unicorn_god", app_name
generate "hancock:cms:scripts", app_name
FileUtils.cp(Pathname.new(destination_root).join('config', 'secrets.yml').to_s, Pathname.new(destination_root).join('config', 'secrets.yml.example').to_s)
unless mongoid
generate "paper_trail:install"
generate "friendly_id"
rake "db:migrate"
end
generate "rspec:install"
remove_file '.gitignore'
create_file '.gitignore' do <<-TEXT
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
#
# If you find yourself ignoring temporary files generated by your text editor
# or operating system, you probably want to add a global ignore instead:
# git config --global core.excludesfile '~/.gitignore_global'
.idea
.idea/*
/.bundle
/log/*.log
/tmp/*
/public/assets
/public/ckeditor_assets
Gemfile.lock
TEXT
end
create_file 'extra/.gitkeep', ''
git :init
git add: "."
git commit: %Q{ -m 'Initial commit' }
end
|