2020-08-06 16:35:45 +02:00
|
|
|
|
# == Schema Information
|
|
|
|
|
#
|
|
|
|
|
# Table name: champs
|
|
|
|
|
#
|
|
|
|
|
# id :integer not null, primary key
|
|
|
|
|
# private :boolean default(FALSE), not null
|
|
|
|
|
# row :integer
|
|
|
|
|
# type :string
|
|
|
|
|
# value :string
|
|
|
|
|
# created_at :datetime
|
|
|
|
|
# updated_at :datetime
|
|
|
|
|
# dossier_id :integer
|
|
|
|
|
# etablissement_id :integer
|
|
|
|
|
# parent_id :bigint
|
|
|
|
|
# type_de_champ_id :integer
|
|
|
|
|
#
|
2018-02-13 18:18:20 +01:00
|
|
|
|
class Champs::PieceJustificativeChamp < Champ
|
2020-03-26 17:28:24 +01:00
|
|
|
|
MAX_SIZE = 200.megabytes
|
2018-06-15 14:27:33 +02:00
|
|
|
|
|
2020-03-26 17:28:24 +01:00
|
|
|
|
ACCEPTED_FORMATS = [
|
|
|
|
|
"text/plain",
|
2018-06-15 14:27:33 +02:00
|
|
|
|
"application/pdf",
|
|
|
|
|
"application/msword",
|
|
|
|
|
"application/vnd.openxmlformats-officedocument.wordprocessingml.document",
|
|
|
|
|
"application/vnd.ms-excel",
|
|
|
|
|
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
|
|
|
|
|
"application/vnd.ms-powerpoint",
|
|
|
|
|
"application/vnd.openxmlformats-officedocument.presentationml.presentation",
|
|
|
|
|
"application/vnd.oasis.opendocument.text",
|
|
|
|
|
"application/vnd.oasis.opendocument.presentation",
|
|
|
|
|
"application/vnd.oasis.opendocument.spreadsheet",
|
|
|
|
|
"image/png",
|
|
|
|
|
"image/jpeg"
|
|
|
|
|
]
|
|
|
|
|
|
2020-03-26 17:28:24 +01:00
|
|
|
|
# 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,
|
|
|
|
|
# size: { less_than: MAX_SIZE }
|
|
|
|
|
|
2020-07-09 11:45:20 +02:00
|
|
|
|
before_save :update_skip_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
|
|
|
|
|
|
2018-06-14 17:44:03 +02:00
|
|
|
|
def mandatory_and_blank?
|
|
|
|
|
mandatory? && !piece_justificative_file.attached?
|
|
|
|
|
end
|
|
|
|
|
|
2020-05-13 16:24:35 +02:00
|
|
|
|
def for_export
|
|
|
|
|
piece_justificative_file.filename.to_s if piece_justificative_file.attached?
|
|
|
|
|
end
|
|
|
|
|
|
2019-05-02 11:37:35 +02:00
|
|
|
|
def for_api
|
2019-04-25 12:56:25 +02:00
|
|
|
|
if piece_justificative_file.attached? && (piece_justificative_file.virus_scanner.safe? || piece_justificative_file.virus_scanner.pending?)
|
2019-12-19 18:15:37 +01:00
|
|
|
|
piece_justificative_file.service_url
|
2018-05-11 14:59:20 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
2020-07-09 11:45:20 +02:00
|
|
|
|
|
|
|
|
|
def update_skip_pj_validation
|
2020-07-09 16:10:56 +02:00
|
|
|
|
type_de_champ.update(skip_pj_validation: true)
|
2020-07-09 11:45:20 +02:00
|
|
|
|
end
|
2018-02-13 18:18:20 +01:00
|
|
|
|
end
|