52 lines
1.6 KiB
Ruby
52 lines
1.6 KiB
Ruby
# == Schema Information
|
||
#
|
||
# Table name: champs
|
||
#
|
||
# id :integer not null, primary key
|
||
# data :jsonb
|
||
# fetch_external_data_exceptions :string is an Array
|
||
# private :boolean default(FALSE), not null
|
||
# row :integer
|
||
# type :string
|
||
# value :string
|
||
# created_at :datetime
|
||
# updated_at :datetime
|
||
# dossier_id :integer
|
||
# etablissement_id :integer
|
||
# external_id :string
|
||
# parent_id :bigint
|
||
# type_de_champ_id :integer
|
||
#
|
||
class Champs::PieceJustificativeChamp < Champ
|
||
MAX_SIZE = 200.megabytes
|
||
|
||
validates :piece_justificative_file,
|
||
size: { less_than: MAX_SIZE },
|
||
if: -> { !type_de_champ.skip_pj_validation }
|
||
|
||
validates :piece_justificative_file,
|
||
content_type: AUTHORIZED_CONTENT_TYPES,
|
||
if: -> { !type_de_champ.skip_content_type_pj_validation }
|
||
|
||
def main_value_name
|
||
:piece_justificative_file
|
||
end
|
||
|
||
def search_terms
|
||
# We don’t know how to search inside documents yet
|
||
end
|
||
|
||
def mandatory_and_blank?
|
||
mandatory? && !piece_justificative_file.attached?
|
||
end
|
||
|
||
def for_export
|
||
piece_justificative_file.filename.to_s if piece_justificative_file.attached?
|
||
end
|
||
|
||
def for_api
|
||
if piece_justificative_file.attached? && (piece_justificative_file.virus_scanner.safe? || piece_justificative_file.virus_scanner.pending?)
|
||
piece_justificative_file.service_url
|
||
end
|
||
end
|
||
end
|