demarches-normaliennes/app/controllers/start_controller.rb

39 lines
764 B
Ruby
Raw Normal View History

2015-08-10 11:05:06 +02:00
class StartController < ApplicationController
2015-09-23 10:02:01 +02:00
before_action :authenticate_user!
2015-08-10 11:05:06 +02:00
def index
2015-09-22 15:36:44 +02:00
get_procedure_infos
if @procedure.nil?
error_procedure
end
rescue ActiveRecord::RecordNotFound
error_procedure
end
def error_procedure
render :file => "#{Rails.root}/public/404_procedure_not_found.html", :status => 404
2015-08-10 11:05:06 +02:00
end
2015-08-11 15:22:07 +02:00
2015-08-10 11:05:06 +02:00
def error_siret
2015-09-22 15:36:44 +02:00
get_procedure_infos
2015-08-10 11:05:06 +02:00
flash.now.alert = 'Ce SIRET n\'est pas valide'
render 'index'
end
2015-08-11 15:22:07 +02:00
2015-08-10 11:05:06 +02:00
def error_login
flash.now.alert = 'Ce compte n\'existe pas'
render 'index'
end
2015-08-11 15:22:07 +02:00
2015-08-10 11:05:06 +02:00
def error_dossier
flash.now.alert = 'Ce dossier n\'existe pas'
render 'index'
end
2015-09-22 15:36:44 +02:00
private
def get_procedure_infos
@procedure = Procedure.find(params['procedure_id'])
end
2015-08-10 11:05:06 +02:00
end