demarches-normaliennes/app/controllers/users/description_controller.rb

107 lines
3 KiB
Ruby
Raw Normal View History

class Users::DescriptionController < UsersController
2016-01-26 15:52:05 +01:00
before_action only: [:show] do
authorized_routes? self.class
end
2015-08-10 11:05:06 +02:00
def show
@dossier = current_user_dossier.decorate
@procedure = @dossier.procedure
@champs = @dossier.ordered_champs
2015-08-18 10:43:36 +02:00
rescue ActiveRecord::RecordNotFound
flash.alert = t('errors.messages.dossier_not_found')
redirect_to url_for(root_path)
2015-08-10 11:05:06 +02:00
end
def error
show
flash.now.alert = 'Un ou plusieurs attributs obligatoires sont manquants ou incorrects.'
render 'show'
end
def create
@dossier = current_user_dossier
2016-02-02 18:37:38 +01:00
@procedure = @dossier.procedure
@champs = @dossier.ordered_champs
mandatory = true
mandatory = !(params[:submit].keys.first == 'brouillon') unless params[:submit].nil?
unless @dossier.update_attributes(create_params)
2015-08-21 11:37:13 +02:00
@dossier = @dossier.decorate
flash.now.alert = @dossier.errors.full_messages.join('<br />').html_safe
return render 'show'
end
2016-02-04 14:08:35 +01:00
2016-02-02 18:37:38 +01:00
if @procedure.cerfa_flag?
unless params[:cerfa_pdf].nil?
cerfa = Cerfa.new(content: params[:cerfa_pdf], dossier: @dossier, user: current_user)
2016-02-18 15:46:59 +01:00
unless cerfa.save
flash.now.alert = cerfa.errors.full_messages.join('<br />').html_safe
return render 'show'
end
2016-02-02 18:37:38 +01:00
end
end
2015-08-10 11:05:06 +02:00
unless params[:champs].nil?
champs_service_errors = ChampsService.save_formulaire @dossier.champs, params, mandatory
unless champs_service_errors.empty?
flash.now.alert = (champs_service_errors.inject('') { |acc, error| acc+= error[:message]+'<br>' }).html_safe
return render 'show'
end
end
unless (errors_upload = PiecesJustificativesService.upload!(@dossier, current_user, params)).empty?
2016-04-15 15:32:15 +02:00
flash.alert = errors_upload.html_safe
return render 'show'
end
2015-08-10 11:05:06 +02:00
if mandatory
if @dossier.draft?
@dossier.initiated!
end
2016-10-27 14:02:38 +02:00
flash.notice = 'Félicitations, votre demande a bien été enregistrée.'
redirect_to url_for(controller: :recapitulatif, action: :show, dossier_id: @dossier.id)
else
flash.notice = 'Votre brouillon a bien été sauvegardé.'
redirect_to url_for(controller: :dossiers, action: :index, liste: :brouillon)
end
2015-08-10 11:05:06 +02:00
end
def pieces_justificatives
invite = current_user.invite? params[:dossier_id]
@dossier ||= Dossier.find(params[:dossier_id]) if invite
@dossier ||= current_user_dossier
if !((errors_upload = PiecesJustificativesService.upload!(@dossier, current_user, params)).empty?)
flash.alert = errors_upload.html_safe
else
flash.notice = 'Nouveaux fichiers envoyés'
@dossier.next_step! 'user', 'update'
end
return redirect_to users_dossiers_invite_path(id: current_user.invites.find_by_dossier_id(@dossier.id).id) if invite
redirect_to users_dossier_recapitulatif_path
end
2016-01-26 15:52:05 +01:00
def self.route_authorization
{
states: [:draft, :initiated, :replied, :updated]
}
end
2015-08-10 11:05:06 +02:00
private
def create_params
params.permit()
end
2015-08-10 11:05:06 +02:00
end