demarches-normaliennes/app/models/champs/departement_champ.rb

95 lines
2.2 KiB
Ruby
Raw Normal View History

2020-08-06 16:35:45 +02:00
# == Schema Information
#
# Table name: champs
#
# id :integer not null, primary key
# data :jsonb
# fetch_external_data_exceptions :string is an Array
2022-12-01 12:00:21 +01:00
# prefilled :boolean default(FALSE)
# private :boolean default(FALSE), not null
# rebased_at :datetime
# type :string
# value :string
2021-10-05 15:37:13 +02:00
# value_json :jsonb
# created_at :datetime
# updated_at :datetime
# dossier_id :integer
# etablissement_id :integer
# external_id :string
# parent_id :bigint
# row_id :string
# type_de_champ_id :integer
2020-08-06 16:35:45 +02:00
#
2018-02-13 18:18:20 +01:00
class Champs::DepartementChamp < Champs::TextChamp
2023-01-20 11:23:52 +01:00
validate :value_in_departement_names, unless: -> { value.nil? }
validate :external_id_in_departement_codes, unless: -> { external_id.nil? }
def for_export
[name, code]
end
def to_s
formatted_value
end
def for_tag
formatted_value
end
def for_api
formatted_value
end
def for_api_v2
formatted_value.tr('', '-')
end
def selected
code
end
def code
external_id || APIGeoService.departement_code(name)
end
def name
maybe_code_and_name = value&.match(/^(\w{2,3}) - (.+)/)
if maybe_code_and_name
maybe_code_and_name[2]
else
value
end
end
def value=(code)
if [2, 3].include?(code&.size)
self.external_id = code
super(APIGeoService.departement_name(code))
elsif code.blank?
self.external_id = nil
super(nil)
2023-01-20 11:23:52 +01:00
else
self.external_id = APIGeoService.departement_code(code)
super(code)
end
end
private
def formatted_value
blank? ? "" : "#{code} #{name}"
end
2023-01-20 11:23:52 +01:00
def value_in_departement_names
return if value.in?(APIGeoService.departements.pluck(:name))
errors.add(:value, :not_in_departement_names)
end
def external_id_in_departement_codes
return if external_id.in?(APIGeoService.departements.pluck(:code))
errors.add(:external_id, :not_in_departement_codes)
end
2018-02-13 18:18:20 +01:00
end