demarches-normaliennes/app/controllers/description_controller.rb

76 lines
2.5 KiB
Ruby
Raw Normal View History

2015-08-10 11:05:06 +02:00
class DescriptionController < ApplicationController
def show
@dossier = Dossier.find(params[:dossier_id])
@dossier = @dossier.decorate
2015-08-17 11:42:41 +02:00
@formulaire = @dossier.formulaire
2015-08-18 10:43:36 +02:00
rescue ActiveRecord::RecordNotFound
redirect_to url_for(controller: :start, action: :error_dossier)
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 = Dossier.find(params[:dossier_id])
@dossier.update_attributes(create_params)
2015-08-10 11:05:06 +02:00
if params[:cerfa_pdf] != nil
PieceJointe.destroy_all(dossier_id: @dossier.id, type_piece_jointe_id: 0)
@piece_jointe = PieceJointe.new
@piece_jointe.content = params[:cerfa_pdf]
@piece_jointe.type_piece_jointe_id = 0
@piece_jointe.dossier = @dossier
@piece_jointe.save
end
2015-08-10 11:05:06 +02:00
2015-08-17 11:42:41 +02:00
@dossier.types_piece_jointe.each do |pj|
if params["piece_jointe_#{pj.id}"] != nil
PieceJointe.destroy_all(dossier_id: @dossier.id, type_piece_jointe_id: pj.id)
2015-08-10 11:05:06 +02:00
@piece_jointe = PieceJointe.new
@piece_jointe.content = params["piece_jointe_#{pj.id}"]
@piece_jointe.type_piece_jointe_id = pj.id
@piece_jointe.dossier = @dossier
@piece_jointe.save
end
end
2015-08-10 11:05:06 +02:00
if check_missing_attributes(params)||check_format_email(@dossier.mail_contact) == nil
redirect_to url_for({controller: :description, action: :error})
else
if params[:back_url] == 'recapitulatif'
@commentaire = Commentaire.create
@commentaire.email = 'Modification détails'
@commentaire.body = 'Les informations détaillées de la demande ont été modifiées. Merci de le prendre en compte.'
@commentaire.dossier = @dossier
@commentaire.save
end
redirect_to url_for({controller: :recapitulatif, action: :show, dossier_id: @dossier.id})
end
end
private
def create_params
params.permit(:nom_projet, :description, :montant_projet, :montant_aide_demande, :date_previsionnelle, :lien_plus_infos, :mail_contact)
end
#TODO dans un validateur, dans le model
2015-08-10 11:05:06 +02:00
def check_missing_attributes params
params[:nom_projet].strip == '' || params[:description].strip == '' || params[:montant_projet].strip == '' || params[:montant_aide_demande].strip == '' || params[:date_previsionnelle].strip == '' || params[:mail_contact].strip == ''
end
#TODO dans un validateur, dans le model
2015-08-10 11:05:06 +02:00
def check_format_email email
/\A[\w+\-.]+@[a-z\d\-]+(\.[a-z]+)*\.[a-z]+\z/.match(email)
end
end