2020-09-17 17:09:16 +02:00
|
|
|
|
# == Schema Information
|
|
|
|
|
#
|
|
|
|
|
# Table name: champs
|
|
|
|
|
#
|
2021-02-04 19:23:40 +01:00
|
|
|
|
# id :integer not null, primary key
|
|
|
|
|
# data :jsonb
|
|
|
|
|
# fetch_external_data_exceptions :string is an Array
|
|
|
|
|
# private :boolean default(FALSE), not null
|
2021-10-20 17:26:09 +02:00
|
|
|
|
# rebased_at :datetime
|
2021-02-04 19:23:40 +01:00
|
|
|
|
# row :integer
|
|
|
|
|
# type :string
|
|
|
|
|
# value :string
|
2021-10-05 15:37:13 +02:00
|
|
|
|
# value_json :jsonb
|
2021-02-04 19:23:40 +01:00
|
|
|
|
# created_at :datetime
|
|
|
|
|
# updated_at :datetime
|
|
|
|
|
# dossier_id :integer
|
|
|
|
|
# etablissement_id :integer
|
|
|
|
|
# external_id :string
|
|
|
|
|
# parent_id :bigint
|
|
|
|
|
# type_de_champ_id :integer
|
2020-09-17 17:09:16 +02:00
|
|
|
|
#
|
|
|
|
|
class Champs::TitreIdentiteChamp < Champ
|
2021-09-20 19:51:20 +02:00
|
|
|
|
include FileValidationConcern
|
2021-09-14 18:03:40 +02:00
|
|
|
|
FILE_MAX_SIZE = 20.megabytes
|
2020-09-17 17:09:16 +02:00
|
|
|
|
|
|
|
|
|
ACCEPTED_FORMATS = [
|
|
|
|
|
"image/png",
|
|
|
|
|
"image/jpeg"
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
# TODO: once we're running on Rails 6, re-enable this validation.
|
|
|
|
|
# See https://github.com/betagouv/demarches-simplifiees.fr/issues/4926
|
|
|
|
|
#
|
|
|
|
|
validates :piece_justificative_file,
|
|
|
|
|
content_type: ACCEPTED_FORMATS,
|
2021-09-20 19:51:20 +02:00
|
|
|
|
size: file_size_validation(FILE_MAX_SIZE)
|
2020-09-17 17:09:16 +02:00
|
|
|
|
|
|
|
|
|
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
|
2020-11-17 16:34:24 +01:00
|
|
|
|
nil
|
2020-09-17 17:09:16 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def for_api
|
2020-11-17 16:34:24 +01:00
|
|
|
|
nil
|
2020-09-17 17:09:16 +02:00
|
|
|
|
end
|
|
|
|
|
end
|