2021-12-13 14:35:13 +01:00
|
|
|
class ActiveStorage::DownloadableFile
|
2022-04-05 14:20:59 +02:00
|
|
|
def self.create_list_from_dossiers(dossiers, for_expert = false)
|
2022-04-12 19:20:50 +02:00
|
|
|
dossiers
|
|
|
|
.map { |d| pj_and_path(d.id, PiecesJustificativesService.generate_dossier_export(d)) } +
|
|
|
|
PiecesJustificativesService.liste_documents(dossiers, for_expert)
|
2022-04-04 17:45:10 +02:00
|
|
|
end
|
|
|
|
|
2019-07-01 15:55:37 +02:00
|
|
|
private
|
|
|
|
|
2022-04-04 23:40:20 +02:00
|
|
|
def self.bill_and_path(bill)
|
|
|
|
[
|
|
|
|
bill,
|
|
|
|
"bills/#{self.timestamped_filename(bill)}"
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|
2022-04-04 23:00:54 +02:00
|
|
|
def self.pj_and_path(dossier_id, pj)
|
2022-04-04 22:16:33 +02:00
|
|
|
[
|
|
|
|
pj,
|
2022-04-04 23:00:54 +02:00
|
|
|
"dossier-#{dossier_id}/#{self.timestamped_filename(pj)}"
|
2022-04-04 22:16:33 +02:00
|
|
|
]
|
|
|
|
end
|
|
|
|
|
2020-12-08 16:34:38 +01:00
|
|
|
def self.timestamped_filename(attachment)
|
2020-07-20 17:20:12 +02:00
|
|
|
# we pad the original file name with a timestamp
|
|
|
|
# and a short id in order to help identify multiple versions and avoid name collisions
|
2020-12-08 16:34:38 +01:00
|
|
|
folder = self.folder(attachment)
|
|
|
|
extension = File.extname(attachment.filename.to_s)
|
|
|
|
basename = File.basename(attachment.filename.to_s, extension)
|
|
|
|
timestamp = attachment.created_at.strftime("%d-%m-%Y-%H-%M")
|
|
|
|
id = attachment.id % 10000
|
2020-07-20 11:22:56 +02:00
|
|
|
|
2021-04-29 17:29:47 +02:00
|
|
|
[folder, "#{basename}-#{timestamp}-#{id}#{extension}"].join
|
2020-12-08 16:34:38 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.folder(attachment)
|
2021-04-29 17:29:47 +02:00
|
|
|
if attachment.name == 'pdf_export_for_instructeur'
|
|
|
|
return ''
|
|
|
|
end
|
|
|
|
|
2020-12-08 16:34:38 +01:00
|
|
|
case attachment.record_type
|
|
|
|
when 'Dossier'
|
2021-04-29 17:29:47 +02:00
|
|
|
'dossier/'
|
2020-12-08 16:34:38 +01:00
|
|
|
when 'DossierOperationLog', 'BillSignature'
|
2021-04-29 17:29:47 +02:00
|
|
|
'horodatage/'
|
2020-12-08 16:34:38 +01:00
|
|
|
when 'Commentaire'
|
2021-04-29 17:29:47 +02:00
|
|
|
'messagerie/'
|
2020-12-08 16:34:38 +01:00
|
|
|
else
|
2021-04-29 17:29:47 +02:00
|
|
|
'pieces_justificatives/'
|
2020-12-08 16:34:38 +01:00
|
|
|
end
|
2020-07-20 11:22:56 +02:00
|
|
|
end
|
2019-07-01 15:55:37 +02:00
|
|
|
end
|