2018-02-13 18:18:20 +01:00
|
|
|
|
class Champs::AddressChamp < Champs::TextChamp
|
2021-02-17 13:54:24 +01:00
|
|
|
|
def full_address?
|
|
|
|
|
data.present?
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def address
|
|
|
|
|
full_address? ? data : nil
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def address_label
|
|
|
|
|
full_address? ? data['label'] : value
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def search_terms
|
|
|
|
|
if full_address?
|
|
|
|
|
[data['label'], data['departement'], data['region'], data['city']]
|
|
|
|
|
else
|
|
|
|
|
[address_label]
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def to_s
|
2021-04-08 17:43:45 +02:00
|
|
|
|
address_label.presence || ''
|
2021-02-17 13:54:24 +01:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def for_tag
|
|
|
|
|
address_label
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def for_export
|
|
|
|
|
value.present? ? address_label : nil
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def for_api
|
|
|
|
|
address_label
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def fetch_external_data?
|
|
|
|
|
true
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def fetch_external_data
|
|
|
|
|
APIAddress::AddressAdapter.new(external_id).to_params
|
|
|
|
|
end
|
2023-04-05 18:02:42 +02:00
|
|
|
|
|
|
|
|
|
def departement_name
|
|
|
|
|
APIGeoService.departement_name(address.fetch('department_code'))
|
|
|
|
|
end
|
|
|
|
|
|
2023-10-20 11:22:51 +02:00
|
|
|
|
def departement_code_and_name
|
2023-11-17 12:48:25 +01:00
|
|
|
|
if full_address?
|
|
|
|
|
"#{address.fetch('department_code')} – #{departement_name}"
|
|
|
|
|
end
|
2023-10-20 11:22:51 +02:00
|
|
|
|
end
|
|
|
|
|
|
2023-04-05 18:02:42 +02:00
|
|
|
|
def departement
|
|
|
|
|
if full_address?
|
|
|
|
|
{ code: address.fetch('department_code'), name: departement_name }
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2023-11-17 12:48:25 +01:00
|
|
|
|
def commune_name
|
|
|
|
|
if full_address?
|
|
|
|
|
"#{APIGeoService.commune_name(department_code, address['city_code'])} (#{address['postal_code']})"
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2023-04-05 18:02:42 +02:00
|
|
|
|
def commune
|
|
|
|
|
if full_address?
|
2023-06-23 15:46:37 +02:00
|
|
|
|
department_code = address.fetch('department_code')
|
|
|
|
|
city_code = address.fetch('city_code')
|
|
|
|
|
city_name = address.fetch('city_name')
|
|
|
|
|
postal_code = address.fetch('postal_code')
|
|
|
|
|
|
|
|
|
|
commune_name = APIGeoService.commune_name(department_code, city_code)
|
|
|
|
|
commune_code = APIGeoService.commune_code(department_code, city_name)
|
|
|
|
|
|
|
|
|
|
if commune_name.present?
|
|
|
|
|
{
|
|
|
|
|
code: city_code,
|
|
|
|
|
name: commune_name
|
|
|
|
|
}
|
|
|
|
|
elsif commune_code.present?
|
|
|
|
|
{
|
|
|
|
|
code: commune_code,
|
|
|
|
|
name: city_name
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
code: city_code,
|
|
|
|
|
name: city_name
|
|
|
|
|
}
|
|
|
|
|
end.merge(postal_code:)
|
2023-04-05 18:02:42 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
2018-02-13 18:18:20 +01:00
|
|
|
|
end
|