2015-10-09 14:43:19 +02:00
|
|
|
class Users::CarteController < UsersController
|
2016-01-26 15:52:05 +01:00
|
|
|
before_action only: [:show] do
|
|
|
|
authorized_routes? self.class
|
|
|
|
end
|
2016-01-25 15:54:21 +01:00
|
|
|
|
2015-08-10 11:05:06 +02:00
|
|
|
def show
|
2015-10-09 17:33:33 +02:00
|
|
|
@dossier = current_user_dossier
|
2015-12-08 11:18:49 +01:00
|
|
|
|
2015-08-18 10:43:22 +02:00
|
|
|
rescue ActiveRecord::RecordNotFound
|
2015-10-09 17:33:33 +02:00
|
|
|
flash.alert = t('errors.messages.dossier_not_found')
|
2015-10-26 18:08:41 +01:00
|
|
|
redirect_to url_for(root_path)
|
2015-08-10 11:05:06 +02:00
|
|
|
end
|
|
|
|
|
2015-11-25 17:05:14 +01:00
|
|
|
def save
|
2018-03-30 15:28:10 +02:00
|
|
|
safe_json_latlngs = clean_json_latlngs(params[:json_latlngs])
|
2015-10-09 17:33:33 +02:00
|
|
|
dossier = current_user_dossier
|
2015-11-25 17:05:14 +01:00
|
|
|
|
2017-04-05 10:00:15 +02:00
|
|
|
dossier.quartier_prioritaires.each(&:destroy)
|
|
|
|
dossier.cadastres.each(&:destroy)
|
2015-11-25 17:05:14 +01:00
|
|
|
|
2018-03-30 15:28:10 +02:00
|
|
|
if safe_json_latlngs.present?
|
|
|
|
ModuleApiCartoService.save_qp! dossier, safe_json_latlngs
|
|
|
|
ModuleApiCartoService.save_cadastre! dossier, safe_json_latlngs
|
2015-11-25 17:05:14 +01:00
|
|
|
end
|
|
|
|
|
2018-03-30 15:28:10 +02:00
|
|
|
dossier.update(json_latlngs: safe_json_latlngs)
|
2015-09-28 18:55:16 +02:00
|
|
|
|
2018-02-21 18:36:06 +01:00
|
|
|
redirect_to modifier_dossier_path(dossier)
|
2015-08-10 11:05:06 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def get_position
|
2017-11-22 16:27:47 +01:00
|
|
|
begin
|
|
|
|
etablissement = current_user_dossier.etablissement
|
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
etablissement = nil
|
|
|
|
end
|
|
|
|
|
2018-01-11 19:04:39 +01:00
|
|
|
point = Carto::Geocodeur.convert_adresse_to_point(etablissement.geo_adresse) if etablissement.present?
|
2016-01-27 15:48:27 +01:00
|
|
|
|
|
|
|
lon = '2.428462'
|
|
|
|
lat = '46.538192'
|
|
|
|
zoom = '13'
|
2015-08-10 11:05:06 +02:00
|
|
|
|
2018-01-11 19:04:39 +01:00
|
|
|
if point.present?
|
2016-01-27 15:48:27 +01:00
|
|
|
lon = point.x.to_s
|
|
|
|
lat = point.y.to_s
|
2015-08-10 11:05:06 +02:00
|
|
|
end
|
2016-01-27 15:48:27 +01:00
|
|
|
|
2018-01-16 13:34:24 +01:00
|
|
|
render json: { lon: lon, lat: lat, zoom: zoom, dossier_id: params[:dossier_id] }
|
2015-08-10 11:05:06 +02:00
|
|
|
end
|
2015-11-25 10:26:55 +01:00
|
|
|
|
|
|
|
def get_qp
|
2018-01-16 13:34:24 +01:00
|
|
|
render json: { quartier_prioritaires: ModuleApiCartoService.generate_qp(JSON.parse(params[:coordinates])) }
|
2015-11-25 10:26:55 +01:00
|
|
|
end
|
|
|
|
|
2016-01-15 11:53:00 +01:00
|
|
|
def get_cadastre
|
2018-01-16 13:34:24 +01:00
|
|
|
render json: { cadastres: ModuleApiCartoService.generate_cadastre(JSON.parse(params[:coordinates])) }
|
2016-01-15 11:53:00 +01:00
|
|
|
end
|
|
|
|
|
2016-01-26 15:52:05 +01:00
|
|
|
def self.route_authorization
|
|
|
|
{
|
2018-01-15 19:02:12 +01:00
|
|
|
states: [:brouillon, :en_construction],
|
|
|
|
api_carto: true
|
2016-01-26 15:52:05 +01:00
|
|
|
}
|
|
|
|
end
|
2018-03-30 15:28:10 +02:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def clean_json_latlngs(json_latlngs)
|
|
|
|
# a polygon must contain at least 4 points
|
|
|
|
# https://tools.ietf.org/html/rfc7946#section-3.1.6
|
|
|
|
if json_latlngs.present?
|
|
|
|
multipolygone = JSON.parse(json_latlngs)
|
|
|
|
multipolygone.reject! { |polygone| polygone.count < 4 }
|
|
|
|
if multipolygone.present?
|
|
|
|
multipolygone.to_json
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2015-08-20 16:34:14 +02:00
|
|
|
end
|