71 lines
2 KiB
Ruby
71 lines
2 KiB
Ruby
|
module Administrateurs
|
|||
|
class ExportsController < AdministrateurController
|
|||
|
before_action :retrieve_procedure, only: [:download]
|
|||
|
|
|||
|
def download
|
|||
|
export = Export.find_or_create_export(export_format, all_groupe_instructeurs, **export_options)
|
|||
|
|
|||
|
if export.ready? && export.old? && force_export?
|
|||
|
export.destroy
|
|||
|
export = Export.find_or_create_export(export_format, all_groupe_instructeurs, **export_options)
|
|||
|
end
|
|||
|
|
|||
|
if export.ready?
|
|||
|
respond_to do |format|
|
|||
|
format.turbo_stream do
|
|||
|
@dossiers_count = export.count
|
|||
|
assign_exports
|
|||
|
flash.notice = "L’export au format \"#{export_format}\" est prêt. Vous pouvez le <a href=\"#{export.file.service_url}\">télécharger</a>"
|
|||
|
end
|
|||
|
|
|||
|
format.html do
|
|||
|
redirect_to export.file.service_url
|
|||
|
end
|
|||
|
end
|
|||
|
else
|
|||
|
respond_to do |format|
|
|||
|
notice_message = "Nous générons cet export. Veuillez revenir dans quelques minutes pour le télécharger."
|
|||
|
|
|||
|
format.turbo_stream do
|
|||
|
@dossiers_count = export.count
|
|||
|
assign_exports
|
|||
|
if !params[:no_progress_notification]
|
|||
|
flash.notice = notice_message
|
|||
|
end
|
|||
|
end
|
|||
|
|
|||
|
format.html do
|
|||
|
redirect_to admin_procedure_archives_url(@procedure), notice: notice_message
|
|||
|
end
|
|||
|
end
|
|||
|
end
|
|||
|
end
|
|||
|
|
|||
|
private
|
|||
|
|
|||
|
def export_format
|
|||
|
@export_format ||= params[:export_format]
|
|||
|
end
|
|||
|
|
|||
|
def force_export?
|
|||
|
@force_export ||= params[:force_export].present?
|
|||
|
end
|
|||
|
|
|||
|
def export_options
|
|||
|
@export_options ||= {
|
|||
|
time_span_type: params[:time_span_type],
|
|||
|
statut: params[:statut],
|
|||
|
procedure_presentation: nil
|
|||
|
}.compact
|
|||
|
end
|
|||
|
|
|||
|
def all_groupe_instructeurs
|
|||
|
@procedure.groupe_instructeurs
|
|||
|
end
|
|||
|
|
|||
|
def assign_exports
|
|||
|
@exports = Export.find_for_groupe_instructeurs(all_groupe_instructeurs.map(&:id), nil)
|
|||
|
end
|
|||
|
end
|
|||
|
end
|