52 lines
1.7 KiB
Ruby
52 lines
1.7 KiB
Ruby
class PiecesJustificativesService
|
||
def self.liste_pieces_justificatives(dossier)
|
||
champs_blocs_repetables = dossier.champs
|
||
.select { |c| c.type_champ == TypeDeChamp.type_champs.fetch(:repetition) }
|
||
.flat_map(&:champs)
|
||
|
||
champs_pieces_justificatives_with_attachments(
|
||
champs_blocs_repetables + dossier.champs
|
||
)
|
||
end
|
||
|
||
def self.pieces_justificatives_total_size(dossier)
|
||
liste_pieces_justificatives(dossier)
|
||
.sum { |pj| pj.piece_justificative_file.byte_size }
|
||
end
|
||
|
||
def self.serialize_types_de_champ_as_type_pj(procedure)
|
||
tdcs = procedure.types_de_champ.select { |type_champ| type_champ.old_pj.present? }
|
||
tdcs.map.with_index do |type_champ, order_place|
|
||
description = type_champ.description
|
||
if /^(?<original_description>.*?)(?:[\r\n]+)Récupérer le formulaire vierge pour mon dossier : (?<lien_demarche>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.select { |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
|
||
end
|
||
|
||
private
|
||
|
||
def self.champs_pieces_justificatives_with_attachments(champs)
|
||
champs
|
||
.select { |c| c.type_champ == TypeDeChamp.type_champs.fetch(:piece_justificative) }
|
||
.filter { |pj| pj.piece_justificative_file.attached? }
|
||
end
|
||
end
|