2018-02-13 18:18:20 +01:00
|
|
|
|
class Champs::PieceJustificativeChamp < Champ
|
2021-09-14 18:03:40 +02:00
|
|
|
|
FILE_MAX_SIZE = 200.megabytes
|
2018-06-15 14:27:33 +02:00
|
|
|
|
|
2024-04-01 07:36:14 +02:00
|
|
|
|
# TODO: if: -> { validate_champ_value? || validation_context == :prefill }
|
2020-07-08 14:46:31 +02:00
|
|
|
|
validates :piece_justificative_file,
|
2021-11-24 10:04:20 +01:00
|
|
|
|
size: { less_than: FILE_MAX_SIZE },
|
2020-07-15 16:06:24 +02:00
|
|
|
|
if: -> { !type_de_champ.skip_pj_validation }
|
2020-07-09 11:45:20 +02:00
|
|
|
|
|
2021-01-18 12:34:52 +01:00
|
|
|
|
validates :piece_justificative_file,
|
|
|
|
|
content_type: AUTHORIZED_CONTENT_TYPES,
|
|
|
|
|
if: -> { !type_de_champ.skip_content_type_pj_validation }
|
|
|
|
|
|
2020-03-24 18:05:36 +01:00
|
|
|
|
def main_value_name
|
|
|
|
|
:piece_justificative_file
|
|
|
|
|
end
|
|
|
|
|
|
2018-07-25 19:34:06 +02:00
|
|
|
|
def search_terms
|
|
|
|
|
# We don’t know how to search inside documents yet
|
|
|
|
|
end
|
|
|
|
|
|
2022-10-17 10:38:23 +02:00
|
|
|
|
def mandatory_blank?
|
2022-08-08 17:17:52 +02:00
|
|
|
|
mandatory? && !piece_justificative_file.attached?
|
2018-06-14 17:44:03 +02:00
|
|
|
|
end
|
|
|
|
|
|
2023-06-27 17:38:37 +02:00
|
|
|
|
def blank?
|
|
|
|
|
piece_justificative_file.blank?
|
|
|
|
|
end
|
|
|
|
|
|
2020-05-13 16:24:35 +02:00
|
|
|
|
def for_export
|
2022-12-06 15:05:37 +01:00
|
|
|
|
piece_justificative_file.map { _1.filename.to_s }.join(', ')
|
2020-05-13 16:24:35 +02:00
|
|
|
|
end
|
|
|
|
|
|
2019-05-02 11:37:35 +02:00
|
|
|
|
def for_api
|
2022-10-25 14:14:24 +02:00
|
|
|
|
return nil unless piece_justificative_file.attached?
|
|
|
|
|
|
2022-12-06 14:41:03 +01:00
|
|
|
|
# API v1 don't support multiple PJ
|
|
|
|
|
attachment = piece_justificative_file.first
|
|
|
|
|
return nil if attachment.nil?
|
|
|
|
|
|
|
|
|
|
if attachment.virus_scanner.safe? || attachment.virus_scanner.pending?
|
2023-03-13 09:48:11 +01:00
|
|
|
|
attachment.url
|
2018-05-11 14:59:20 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
2018-02-13 18:18:20 +01:00
|
|
|
|
end
|