2023-05-15 11:41:38 +02:00
|
|
|
module Recovery
|
|
|
|
class Exporter
|
|
|
|
FILE_PATH = Rails.root.join('lib', 'data', 'export.dump')
|
|
|
|
|
2023-05-15 17:41:53 +02:00
|
|
|
attr_reader :dossiers, :file_path
|
2023-05-15 11:41:38 +02:00
|
|
|
def initialize(dossier_ids:, file_path: FILE_PATH)
|
|
|
|
dossier_with_data = Dossier.where(id: dossier_ids)
|
|
|
|
.preload(:user,
|
|
|
|
:individual,
|
2023-05-15 12:54:20 +02:00
|
|
|
:invites,
|
|
|
|
:traitements,
|
|
|
|
:transfer_logs,
|
|
|
|
commentaires: { piece_jointe_attachment: :blob },
|
|
|
|
avis: { introduction_file_attachment: :blob, piece_justificative_file_attachment: :blob },
|
|
|
|
dossier_operation_logs: { serialized_attachment: :blob },
|
|
|
|
attestation: { pdf_attachment: :blob },
|
|
|
|
justificatif_motivation_attachment: :blob,
|
|
|
|
etablissement: :exercices,
|
2023-05-15 11:41:38 +02:00
|
|
|
revision: :procedure)
|
2023-05-15 17:41:53 +02:00
|
|
|
@dossiers = DossierPreloader.new(dossier_with_data,
|
|
|
|
includes_for_dossier: [:geo_areas, etablissement: :exercices],
|
|
|
|
includes_for_etablissement: [:exercices]).all
|
2023-05-15 11:41:38 +02:00
|
|
|
@file_path = file_path
|
|
|
|
end
|
|
|
|
|
|
|
|
def dump
|
2023-05-15 17:41:53 +02:00
|
|
|
@file_path.binwrite(Marshal.dump(@dossiers))
|
2023-05-15 11:41:38 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|