class Users::DossiersController < UsersController include SmartListing::Helper::ControllerExtensions helper SmartListing::Helper before_action :authenticate_user! before_action :check_siret, only: :create before_action only: [:show] do authorized_routes? self.class end def index order = 'DESC' @liste = params[:liste] || 'a_traiter' @dossiers = smart_listing_create :dossiers, dossiers_to_display, partial: "users/dossiers/list", array: true total_dossiers_per_state end def new procedure = Procedure.where(archived: false, published: true).find(params[:procedure_id]) @dossier = Dossier.new(procedure: procedure) @siret = params[:siret] || current_user.siret rescue ActiveRecord::RecordNotFound error_procedure end def show @facade = DossierFacades.new params[:id], current_user.email rescue ActiveRecord::RecordNotFound flash.alert = t('errors.messages.dossier_not_found') redirect_to url_for users_dossiers_path end def create entreprise_adapter = SIADE::EntrepriseAdapter.new(siren) dossier = Dossier.create(user: current_user, state: 'draft', procedure_id: create_params[:procedure_id], mandataire_social: mandataire_social?(entreprise_adapter.mandataires_sociaux)) entreprise = dossier.create_entreprise(entreprise_adapter.to_params) entreprise.create_rna_information(SIADE::RNAAdapter.new(siret).to_params) etablissement = dossier.create_etablissement(SIADE::EtablissementAdapter.new(siret).to_params .merge({entreprise_id: entreprise.id})) etablissement.exercices.create(SIADE::ExercicesAdapter.new(siret).to_params) redirect_to url_for(controller: :dossiers, action: :show, id: dossier.id) rescue RestClient::ResourceNotFound errors_valid_siret rescue ActiveRecord::RecordNotFound flash.alert = t('errors.messages.dossier_not_found') redirect_to url_for(controller: :siret) end def update @facade = DossierFacades.new params[:id], current_user.email if checked_autorisation_donnees? @facade.dossier.update_attributes(update_params) if @facade.dossier.procedure.module_api_carto.use_api_carto redirect_to url_for(controller: :carte, action: :show, dossier_id: @facade.dossier.id) else redirect_to url_for(controller: :description, action: :show, dossier_id: @facade.dossier.id) end else flash.now.alert = 'Les conditions sont obligatoires.' render 'show' end end def self.route_authorization { states: [:draft] } end private def dossiers_to_display {'a_traiter' => waiting_for_user, 'en_attente' => waiting_for_gestionnaire, 'termine' => termine, 'invite' => invite}[@liste] end def waiting_for_user @a_traiter_class = (@liste == 'a_traiter' ? 'active' : '') @waiting_for_user ||= current_user.dossiers.waiting_for_user 'DESC' end def waiting_for_gestionnaire @en_attente_class = (@liste == 'en_attente' ? 'active' : '') @waiting_for_gestionnaire ||= current_user.dossiers.waiting_for_gestionnaire 'DESC' end def termine @termine_class = (@liste == 'termine' ? 'active' : '') @termine ||= current_user.dossiers.termine 'DESC' end def invite @invite_class = (@liste == 'invite' ? 'active' : '') @invite ||= current_user.invites end def total_dossiers_per_state @dossiers_a_traiter_total = waiting_for_user.count @dossiers_en_attente_total = waiting_for_gestionnaire.count @dossiers_termine_total = termine.count @dossiers_invite_total = invite.count end def check_siret errors_valid_siret unless Siret.new(siret: siret).valid? end def errors_valid_siret flash.alert = t('errors.messages.invalid_siret') redirect_to url_for new_users_dossiers_path(procedure_id: create_params[:procedure_id]) end def update_params params.require(:dossier).permit(:autorisation_donnees) end def checked_autorisation_donnees? update_params[:autorisation_donnees] == '1' end def siret create_params[:siret] end def siren siret[0..8] end def create_params params.require(:dossier).permit(:siret, :procedure_id) end def error_procedure flash.alert = t('errors.messages.procedure_not_found') redirect_to url_for users_dossiers_path end def mandataire_social? mandataires_list unless current_user.france_connect_information.nil? mandataires_list.each do |mandataire| return true if mandataire[:nom].upcase == current_user.family_name.upcase && mandataire[:prenom].upcase == current_user.given_name.upcase && mandataire[:date_naissance_timestamp] == current_user.birthdate.to_time.to_i end end false end end