2023-04-13 13:08:47 +02:00
|
|
|
|
namespace :api_geo_data do
|
|
|
|
|
PATH = Rails.root.join('lib', 'data', 'api_geo')
|
|
|
|
|
|
|
|
|
|
desc 'Refresh data from API Geo'
|
|
|
|
|
task refresh: :environment do
|
|
|
|
|
PATH.rmtree if PATH.exist?
|
|
|
|
|
PATH.mkpath
|
|
|
|
|
|
|
|
|
|
get_from_api_geo('regions', 'regions')
|
|
|
|
|
departements = get_from_api_geo('departements?zone=metro,drom,com', 'departements')
|
|
|
|
|
departements.each do |departement|
|
|
|
|
|
departement_code = departement[:code]
|
2023-10-23 10:31:52 +02:00
|
|
|
|
epci_filename = "epcis-#{departement_code}"
|
|
|
|
|
if departement_code.start_with?('98')
|
|
|
|
|
PATH.join("#{epci_filename}.json").write(JSON.dump([]))
|
|
|
|
|
else
|
|
|
|
|
get_from_api_geo("epcis?codeDepartement=#{departement_code}", epci_filename)
|
2023-04-13 13:08:47 +02:00
|
|
|
|
end
|
|
|
|
|
get_from_api_geo("communes?codeDepartement=#{departement_code}&type=commune-actuelle,arrondissement-municipal", "communes-#{departement_code}")
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def get_from_api_geo(query, filename)
|
|
|
|
|
data = []
|
|
|
|
|
PATH.join("#{filename}.json").open('w') do |f|
|
|
|
|
|
response = Typhoeus.get("#{API_GEO_URL}/#{query}")
|
2023-07-25 12:43:13 +02:00
|
|
|
|
json = JSON.parse(response.body).map(&:symbolize_keys).filter do |result|
|
|
|
|
|
!result[:code].in?(['75056', '13055', '69123'])
|
|
|
|
|
end.flat_map do |result|
|
2023-04-13 13:08:47 +02:00
|
|
|
|
item = {
|
|
|
|
|
name: result[:nom].tr("'", '’'),
|
|
|
|
|
code: result[:code],
|
|
|
|
|
epci_code: result[:codeEpci],
|
2023-11-24 15:51:17 +01:00
|
|
|
|
departement_code: result[:codeDepartement],
|
|
|
|
|
region_code: result[:codeRegion]
|
2023-04-13 13:08:47 +02:00
|
|
|
|
}.compact
|
|
|
|
|
|
|
|
|
|
if result[:codesPostaux].present?
|
|
|
|
|
result[:codesPostaux].map { item.merge(postal_code: _1) }
|
|
|
|
|
else
|
|
|
|
|
[item]
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
data = json
|
|
|
|
|
f << JSON.dump(json)
|
|
|
|
|
end
|
|
|
|
|
data
|
|
|
|
|
end
|
|
|
|
|
end
|