engine/app/controllers/admin/installation_controller.rb

87 lines
2.0 KiB
Ruby
Raw Normal View History

module Admin
class InstallationController < BaseController
layout '/admin/layouts/box'
skip_before_filter :require_site
skip_before_filter :authenticate_admin!
skip_before_filter :verify_authenticity_token
skip_before_filter :validate_site_membership
before_filter :is_step_already_done?
before_filter :allow_installation?
def show
request.get? ? self.handle_get : self.handle_post
end
protected
def handle_get
case params[:step].to_i
when 1 then @account = Account.new
when 2 then @site = Site.new
end
render "step_#{params[:step]}"
end
def handle_post
case params[:step].to_i
when 1 # create account
@account = Account.create(params[:account])
if @account.valid?
redirect_to admin_installation_step_url(2)
else
render 'step_1'
end
when 2 # create site
@site = Site.create_first_one(params[:site])
if @site.valid?
begin
unless params[:zipfile].blank?
Locomotive::Import::Job.run!(params[:zipfile], @site, { :samples => true })
end
rescue Exception => e
logger.error "Import failed because of #{e.message}"
2010-12-19 20:34:01 +00:00
end
redirect_to last_url
else
logger.error "Unable to create the first website: #{@site.errors.inspect}"
render 'step_2'
end
end
end
def is_step_already_done?
case params[:step].to_i
when 1 # already an account in db
if Account.count > 0
@step_done = t('admin.installation.step_1.done', Account.first.attributes)
render 'step_1' and return false
end
else
true
end
end
def allow_installation?
redirect_to admin_pages_url if Site.count > 0 && Account.count > 0
end
def last_url
if Locomotive.config.manage_domains?
admin_session_url(:host => Site.first.domains.first, :port => request.port)
else
admin_session_url
end
end
end
end