1c1e990d2a
Co-authored-by: Christophe Robillard <christophe.robillard@beta.gouv.fr>
55 lines
2.1 KiB
Ruby
55 lines
2.1 KiB
Ruby
module Instructeurs
|
||
class ArchivesController < InstructeurController
|
||
before_action :ensure_procedure_enabled
|
||
|
||
def index
|
||
@procedure = procedure
|
||
@average_dossier_weight = procedure.average_dossier_weight
|
||
@archivable_months = archivable_months
|
||
@count_dossiers_termines_by_month = Traitement.count_dossiers_termines_by_month(@procedure)
|
||
@nb_dossiers = @count_dossiers_termines_by_month.sum { |count_by_month| count_by_month["count"] }
|
||
@poids_total = @nb_dossiers * @average_dossier_weight
|
||
groupe_instructeur = current_instructeur.groupe_instructeurs.where(procedure: @procedure.id).first
|
||
@archives = Archive.for_groupe_instructeur(groupe_instructeur).to_a
|
||
end
|
||
|
||
def create
|
||
type = params[:type]
|
||
month = Date.strptime(params[:month], '%Y-%m') if params[:month].present?
|
||
|
||
archive = ProcedureArchiveService.new(procedure).create_pending_archive(current_instructeur, type, month)
|
||
if archive.pending?
|
||
ArchiveCreationJob.perform_later(procedure, archive, current_instructeur)
|
||
flash[:notice] = "Votre demande a été prise en compte. Selon le nombre de dossiers, cela peut prendre quelques minutes. Vous recevrez un courriel lorsque le fichier sera disponible."
|
||
else
|
||
flash[:notice] = "Cette archive a déjà été générée."
|
||
end
|
||
redirect_to instructeur_archives_path(procedure)
|
||
end
|
||
|
||
private
|
||
|
||
def ensure_procedure_enabled
|
||
if !procedure.feature_enabled?(:archive_zip_globale) || procedure.brouillon?
|
||
flash[:alert] = "L'accès aux archives n’est pas disponible pour cette démarche, merci d’en faire la demande à l'équipe de démarches simplifiees"
|
||
return redirect_to instructeur_procedure_path(procedure)
|
||
end
|
||
end
|
||
|
||
def archivable_months
|
||
start_date = procedure.published_at.to_date
|
||
end_date = Time.zone.now.to_date
|
||
|
||
(start_date...end_date)
|
||
.map(&:beginning_of_month)
|
||
.uniq
|
||
.reverse
|
||
end
|
||
|
||
def procedure
|
||
current_instructeur
|
||
.procedures
|
||
.find(params[:procedure_id])
|
||
end
|
||
end
|
||
end
|