Skip to content

Commit

Permalink
Merge pull request #3098 from betagouv/dev
Browse files Browse the repository at this point in the history
MEP 2018-11-29-01
  • Loading branch information
mmagn authored Nov 29, 2018
2 parents 1f9b84f + c2161fb commit a9fa3f4
Show file tree
Hide file tree
Showing 17 changed files with 138 additions and 22 deletions.
18 changes: 9 additions & 9 deletions app/controllers/champs/carte_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ def show
@selector = ".carte-#{params[:position]}"

if params[:dossier].key?(:champs_attributes)
geo_json = params[:dossier][:champs_attributes][params[:position]][:value]
coordinates = params[:dossier][:champs_attributes][params[:position]][:value]
else
geo_json = params[:dossier][:champs_private_attributes][params[:position]][:value]
coordinates = params[:dossier][:champs_private_attributes][params[:position]][:value]
end

if params[:champ_id].present?
Expand All @@ -30,34 +30,34 @@ def show

geo_areas = []

if geo_json == EMPTY_GEO_JSON
if coordinates == EMPTY_GEO_JSON
@champ.value = nil
@champ.geo_areas = []
elsif geo_json == ERROR_GEO_JSON
elsif coordinates == ERROR_GEO_JSON
@error = true
@champ.value = nil
@champ.geo_areas = []
else
geo_json = JSON.parse(geo_json)
coordinates = JSON.parse(coordinates)

if @champ.cadastres?
cadastres = ModuleApiCartoService.generate_cadastre(geo_json)
cadastres = ModuleApiCartoService.generate_cadastre(coordinates)
geo_areas += cadastres.map do |cadastre|
cadastre[:source] = GeoArea.sources.fetch(:cadastre)
cadastre
end
end

if @champ.quartiers_prioritaires?
quartiers_prioritaires = ModuleApiCartoService.generate_qp(geo_json)
quartiers_prioritaires = ModuleApiCartoService.generate_qp(coordinates)
geo_areas += quartiers_prioritaires.map do |qp|
qp[:source] = GeoArea.sources.fetch(:quartier_prioritaire)
qp
end
end

if @champ.parcelles_agricoles?
parcelles_agricoles = ModuleApiCartoService.generate_rpg(geo_json)
parcelles_agricoles = ModuleApiCartoService.generate_rpg(coordinates)
geo_areas += parcelles_agricoles.map do |parcelle_agricole|
parcelle_agricole[:source] = GeoArea.sources.fetch(:parcelle_agricole)
parcelle_agricole
Expand All @@ -68,7 +68,7 @@ def show
GeoArea.new(geo_area)
end

@champ.value = geo_json.to_json
@champ.value = GeojsonService.to_json_polygon_for_selection_utilisateur(coordinates)
end

if @champ.persisted?
Expand Down
18 changes: 9 additions & 9 deletions app/models/champs/carte_champ.rb
Original file line number Diff line number Diff line change
Expand Up @@ -44,18 +44,18 @@ def position
end

def geo_json
@geo_json ||= value.blank? ? [] : JSON.parse(value)
@geo_json ||= value.blank? ? nil : JSON.parse(value)
end

def user_geometry
{
type: 'Polygon',
coordinates: [
geo_json[0].map do |polygon|
[polygon['lat'], polygon['lng']]
end
]
}
# We used to store in the value column a json array with coordinates.
if geo_json.is_a?(Array)
# If it is a coordinates array, format it as a GEO-JSON
GeojsonService.to_json_polygon_for_selection_utilisateur(geo_json)
else
# It is already a GEO-JSON
geo_json
end
end

def user_geo_area
Expand Down
2 changes: 1 addition & 1 deletion app/models/champs/decimal_number_champ.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
class Champs::DecimalNumberChamp < Champ
validates :value, numericality: { allow_nil: true }
validates :value, numericality: { allow_nil: true, allow_blank: true }

def value_for_export
value.to_f
Expand Down
2 changes: 1 addition & 1 deletion app/models/champs/integer_number_champ.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
class Champs::IntegerNumberChamp < Champ
validates :value, numericality: { only_integer: true, allow_nil: true }
validates :value, numericality: { only_integer: true, allow_nil: true, allow_blank: true }

def value_for_export
value.to_i
Expand Down
7 changes: 7 additions & 0 deletions app/models/procedure.rb
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ def switch_list_order(list, index_of_first_element)
end

def clone(admin, from_library)
populate_champ_stable_ids
procedure = self.deep_clone(include:
{
types_de_piece_justificative: nil,
Expand Down Expand Up @@ -358,6 +359,12 @@ def gestionnaire_for_cron_job
gestionnaire || gestionnaires.first
end

def populate_champ_stable_ids
TypeDeChamp.where(procedure: self, stable_id: nil).find_each do |type_de_champ|
type_de_champ.update_column(:stable_id, type_de_champ.id)
end
end

private

def claim_path_ownership!(path)
Expand Down
7 changes: 7 additions & 0 deletions app/models/type_de_champ.rb
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ class TypeDeChamp < ApplicationRecord
store :options, accessors: [:cadastres, :quartiers_prioritaires, :parcelles_agricoles]

after_initialize :set_dynamic_type
after_create :populate_stable_id

attr_reader :dynamic_type

Expand Down Expand Up @@ -117,6 +118,12 @@ def self.type_champ_to_class_name(type_champ)

private

def populate_stable_id
if !stable_id
update_column(:stable_id, id)
end
end

def remove_piece_justificative_template
if type_champ != TypeDeChamp.type_champs.fetch(:piece_justificative) && piece_justificative_template.attached?
piece_justificative_template.purge_later
Expand Down
4 changes: 4 additions & 0 deletions app/serializers/type_de_champ_serializer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,8 @@ class TypeDeChampSerializer < ActiveModel::Serializer
:type_champ,
:order_place,
:description

def id
object.stable_id || object.id
end
end
17 changes: 17 additions & 0 deletions app/services/geojson_service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,21 @@ def self.to_json_polygon_for_rpg(coordinates)

polygon.to_json
end

def self.to_json_polygon_for_selection_utilisateur(coordinates)
coordinates = coordinates.map do |lat_longs|
outbounds = lat_longs.map do |lat_long|
[lat_long['lng'], lat_long['lat']]
end

[outbounds]
end

polygon = {
type: 'MultiPolygon',
coordinates: coordinates
}

polygon.to_json
end
end
2 changes: 1 addition & 1 deletion config/storage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ clever_cloud:
bucket: <%= ENV['CLEVER_CLOUD_BUCKET'] %>
openstack:
service: OpenStack
container: "<%= ENV['FOG_DIRECTORY'] %>"
container: "<%= ENV['FOG_ACTIVESTORAGE_DIRECTORY'] %>"
credentials:
openstack_tenant: "<%= ENV['FOG_OPENSTACK_TENANT'] %>"
openstack_api_key: "<%= ENV['FOG_OPENSTACK_API_KEY'] %>"
Expand Down
6 changes: 6 additions & 0 deletions db/migrate/20181123181020_add_stable_id_to_types_de_champ.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
class AddStableIdToTypesDeChamp < ActiveRecord::Migration[5.2]
def change
add_column :types_de_champ, :stable_id, :bigint
add_index :types_de_champ, :stable_id
end
end
2 changes: 2 additions & 0 deletions db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,9 @@
t.datetime "created_at"
t.datetime "updated_at"
t.jsonb "options"
t.bigint "stable_id"
t.index ["private"], name: "index_types_de_champ_on_private"
t.index ["stable_id"], name: "index_types_de_champ_on_stable_id"
end

create_table "types_de_piece_justificative", id: :serial, force: :cascade do |t|
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
namespace :after_party do
desc 'Deployment task: add_stable_id_to_types_de_champ'
task add_stable_id_to_types_de_champ: :environment do
types_de_champ = TypeDeChamp.where(stable_id: nil)
bar = RakeProgressbar.new(types_de_champ.count)

types_de_champ.find_each do |type_de_champ|
type_de_champ.update_column(:stable_id, type_de_champ.id)
bar.inc
end
bar.finished

AfterParty::TaskRecord.create version: '20181123181252'
end
end
12 changes: 12 additions & 0 deletions spec/models/champs/decimal_number_champ_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,17 @@

it { is_expected.to_not be_valid }
end

context 'when the value is blank' do
let(:value) { '' }

it { is_expected.to be_valid }
end

context 'when the value is nil' do
let(:value) { nil }

it { is_expected.to be_valid }
end
end
end
12 changes: 12 additions & 0 deletions spec/models/champs/integer_number_champ_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,17 @@

it { is_expected.to_not be_valid }
end

context 'when the value is blank' do
let(:value) { '' }

it { is_expected.to be_valid }
end

context 'when the value is nil' do
let(:value) { nil }

it { is_expected.to be_valid }
end
end
end
5 changes: 5 additions & 0 deletions spec/models/procedure_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -424,6 +424,11 @@
expect(subject.path).to be_nil
end
end

it 'should keep types_de_champ ids stable' do
expect(subject.types_de_champ_ordered.first.id).not_to eq(procedure.types_de_champ_ordered.first.id)
expect(subject.types_de_champ_ordered.first.stable_id).to eq(procedure.types_de_champ_ordered.first.id)
end
end

describe '#publish!' do
Expand Down
9 changes: 9 additions & 0 deletions spec/models/type_de_champ_shared_example.rb
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,15 @@
it { is_expected.to allow_value('blabla').for(:description) }
end

context 'stable_id' do
it {
type_de_champ = create(:type_de_champ_text)
expect(type_de_champ.id).to eq(type_de_champ.stable_id)
cloned_type_de_champ = type_de_champ.clone
expect(cloned_type_de_champ.stable_id).to eq(type_de_champ.stable_id)
}
end

context 'remove piece_justificative_template' do
context 'when the tdc is piece_justificative' do
let(:template_double) { double('template', attached?: attached, purge_later: true) }
Expand Down
22 changes: 21 additions & 1 deletion spec/serializers/champ_serializer_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,27 @@

context 'when type champ is carte' do
let(:geo_area) { create(:geo_area) }
let(:champ) { create(:type_de_champ_carte).champ.create(geo_areas: [geo_area]) }
let(:coordinates) { [[{ "lat": 48.87442541960633, "lng": 2.3859214782714844 }, { "lat": 48.87273183590832, "lng": 2.3850631713867183 }, { "lat": 48.87081237174292, "lng": 2.3809432983398438 }, { "lat": 48.8712640169951, "lng": 2.377510070800781 }, { "lat": 48.87510283703279, "lng": 2.3778533935546875 }, { "lat": 48.87544154230615, "lng": 2.382831573486328 }, { "lat": 48.87442541960633, "lng": 2.3859214782714844 }]] }

let(:champ_carte) { create(:champ_carte, value: coordinates.to_json, geo_areas: [geo_area]) }
let(:champ) { champ_carte }

context 'legacy champ user_geometry' do
let(:champ) { champ_carte.user_geo_area }

it {
expect(subject).to include(
type_de_champ: {
descripton: "",
id: -1,
libelle: "user geometry",
order_place: -1,
type_champ: "user_geometry"
},
value: champ_carte.user_geometry
)
}
end

context 'and geo_area is cadastre' do
it {
Expand Down

0 comments on commit a9fa3f4

Please sign in to comment.