class PiecesJustificativesService def self.liste_documents(dossiers, with_bills:, with_champs_private:) bill_ids = [] docs = dossiers.in_batches.flat_map do |batch| pjs = pjs_for_champs(batch, with_champs_private:) + pjs_for_commentaires(batch) + pjs_for_dossier(batch) if with_bills # some bills are shared among operations # so first, all the bill_ids are fetched operation_logs, some_bill_ids = operation_logs_and_signature_ids(batch) pjs += operation_logs bill_ids += some_bill_ids end pjs end if with_bills # then the bills are retrieved without duplication docs += signatures(bill_ids.uniq) end docs end def self.serialize_types_de_champ_as_type_pj(revision) tdcs = revision.types_de_champ_public.filter { |type_champ| type_champ.old_pj.present? } tdcs.map.with_index do |type_champ, order_place| description = type_champ.description if /^(?.*?)(?:[\r\n]+)Récupérer le formulaire vierge pour mon dossier : (?http.*)$/m =~ description description = original_description end { id: type_champ.old_pj[:stable_id], libelle: type_champ.libelle, description: description, order_place: order_place, lien_demarche: lien_demarche } end end def self.serialize_champs_as_pjs(dossier) dossier.champs_public.filter { |champ| champ.type_de_champ.old_pj }.map do |champ| { created_at: champ.created_at&.in_time_zone('UTC'), type_de_piece_justificative_id: champ.type_de_champ.old_pj[:stable_id], content_url: champ.for_api, user: champ.dossier.user } end.flatten end def self.clone_attachments(original, kopy) case original when Champs::PieceJustificativeChamp, Champs::TitreIdentiteChamp original.piece_justificative_file.attachments.each do |attachment| kopy.piece_justificative_file.attach(attachment.blob) end when TypeDeChamp clone_attachment(original, kopy, :piece_justificative_template) when Procedure clone_attachment(original, kopy, :logo) clone_attachment(original, kopy, :notice) clone_attachment(original, kopy, :deliberation) when AttestationTemplate clone_attachment(original, kopy, :logo) clone_attachment(original, kopy, :signature) when Etablissement clone_attachment(original, kopy, :entreprise_attestation_sociale) clone_attachment(original, kopy, :entreprise_attestation_fiscale) end end def self.clone_attachment(original, kopy, attachment_name) attachment = original.public_send(attachment_name) if attachment.attached? kopy.public_send(attachment_name).attach(attachment.blob) end end def self.generate_dossier_export(dossiers, include_infos_administration: false, include_avis_for_expert: false) return [] if dossiers.empty? pdfs = [] procedure = dossiers.first.procedure dossiers = dossiers.includes(:individual, :traitement, :etablissement, user: :france_connect_information, avis: :expert, commentaires: [:instructeur, :expert]) dossiers = DossierPreloader.new(dossiers).in_batches dossiers.each do |dossier| dossier.association(:procedure).target = procedure pdf = ApplicationController .render(template: 'dossiers/show', formats: [:pdf], assigns: { include_infos_administration:, include_avis_for_expert:, dossier: dossier }) a = ActiveStorage::FakeAttachment.new( file: StringIO.new(pdf), filename: "export-#{dossier.id}.pdf", name: 'pdf_export_for_instructeur', id: dossier.id, created_at: dossier.updated_at ) pdfs << ActiveStorage::DownloadableFile.pj_and_path(dossier.id, a) end pdfs end private def self.pjs_for_champs(dossiers, with_champs_private:) champs = Champ .joins(:piece_justificative_file_attachments) .where(type: "Champs::PieceJustificativeChamp", dossier: dossiers) if !with_champs_private champs = champs.where(private: false) end champ_id_dossier_id = champs .pluck(:id, :dossier_id) .to_h ActiveStorage::Attachment .includes(:blob) .where(record_type: "Champ", record_id: champ_id_dossier_id.keys) .filter { |a| safe_attachment(a) } .map do |a| dossier_id = champ_id_dossier_id[a.record_id] ActiveStorage::DownloadableFile.pj_and_path(dossier_id, a) end end def self.pjs_for_commentaires(dossiers) commentaire_id_dossier_id = Commentaire .joins(:piece_jointe_attachment) .where(dossier: dossiers) .pluck(:id, :dossier_id) .to_h ActiveStorage::Attachment .includes(:blob) .where(record_type: "Commentaire", record_id: commentaire_id_dossier_id.keys) .filter { |a| safe_attachment(a) } .map do |a| dossier_id = commentaire_id_dossier_id[a.record_id] ActiveStorage::DownloadableFile.pj_and_path(dossier_id, a) end end def self.pjs_for_dossier(dossiers) motivations(dossiers) + attestations(dossiers) + etablissements(dossiers) end def self.etablissements(dossiers) etablissement_id_dossier_id = Etablissement .where(dossier: dossiers) .pluck(:id, :dossier_id) .to_h ActiveStorage::Attachment .includes(:blob) .where(record_type: "Etablissement", record_id: etablissement_id_dossier_id.keys) .map do |a| dossier_id = etablissement_id_dossier_id[a.record_id] ActiveStorage::DownloadableFile.pj_and_path(dossier_id, a) end end def self.motivations(dossiers) ActiveStorage::Attachment .includes(:blob) .where(record_type: "Dossier", name: "justificatif_motivation", record_id: dossiers) .filter { |a| safe_attachment(a) } .map do |a| dossier_id = a.record_id ActiveStorage::DownloadableFile.pj_and_path(dossier_id, a) end end def self.attestations(dossiers) attestation_id_dossier_id = Attestation .joins(:pdf_attachment) .where(dossier: dossiers) .pluck(:id, :dossier_id) .to_h ActiveStorage::Attachment .includes(:blob) .where(record_type: "Attestation", record_id: attestation_id_dossier_id.keys) .map do |a| dossier_id = attestation_id_dossier_id[a.record_id] ActiveStorage::DownloadableFile.pj_and_path(dossier_id, a) end end def self.operation_logs_and_signature_ids(dossiers) dol_id_dossier_id_bill_id = DossierOperationLog .where(dossier: dossiers, data: nil) .pluck(:bill_signature_id, :id, :dossier_id) dol_id_data_bill_id = DossierOperationLog .where(dossier: dossiers) .with_data .pluck(:bill_signature_id, :id, :dossier_id, :data, :digest, :created_at) dol_id_dossier_id = dol_id_dossier_id_bill_id .map { |_, dol_id, dossier_id| [dol_id, dossier_id] } .to_h bill_ids = (dol_id_dossier_id_bill_id + dol_id_data_bill_id) .map(&:first) .uniq .compact serialized_dols = ActiveStorage::Attachment .includes(:blob) .where(record_type: "DossierOperationLog", record_id: dol_id_dossier_id.keys) .map do |a| dossier_id = dol_id_dossier_id[a.record_id] ActiveStorage::DownloadableFile.pj_and_path(dossier_id, a) end serialized_dols += dol_id_data_bill_id.map do |_, id, dossier_id, data, digest, created_at| a = ActiveStorage::FakeAttachment.new( file: StringIO.new(data.to_json), filename: "operation-#{digest}.json", name: 'serialized', id: id, created_at: created_at, record_type: 'DossierOperationLog' ) ActiveStorage::DownloadableFile.pj_and_path(dossier_id, a) end [serialized_dols, bill_ids] end def self.signatures(bill_ids) ActiveStorage::Attachment .includes(:blob) .where(record_type: "BillSignature", record_id: bill_ids) .map { |bill| ActiveStorage::DownloadableFile.bill_and_path(bill) } end def self.safe_attachment(attachment) attachment .blob .virus_scan_result == ActiveStorage::VirusScanner::SAFE end end