Merge pull request #8769 from colinux/fix-annotations-privees-champ-type-mismatch

Fix: crash d'annotations privées à cause d'une incohérence avec leur type de champ
This commit is contained in:
Colin Darie 2023-03-16 15:55:56 +00:00 committed by GitHub
commit 83a3421537
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 50 additions and 12 deletions

View file

@ -44,10 +44,10 @@ fr:
remove_description: La description de lannotation privée « %{label} » a été supprimée.
update_drop_down_secondary_libelle: Le libellé secondaire de lannotation « %{label} » a été modifié. Le nouveau libellé est « %{to} ».
update_drop_down_secondary_description: La description secondaire de lannotation « %{label} » a été modifiée. La nouvelle description est « %{to} ».
update_type_champ_private: Le type de lannotation privée « %{label} » a été modifié. Elle est maintenant de type « %{to} ».
update_piece_justificative_template_private: Le modèle de pièce justificative de lannotation privée « %{label} » a été modifié.
update_drop_down_options_private: "Les options de sélection de lannotation privée « %{label} » ont été modifiées :"
update_carte_layers_private: "Les référentiels cartographiques de lannotation privée « %{label} » ont été modifiés :"
update_type_champ: Le type de lannotation privée « %{label} » a été modifié. Elle est maintenant de type « %{to} ».
update_piece_justificative_template: Le modèle de pièce justificative de lannotation privée « %{label} » a été modifié.
update_drop_down_options: "Les options de sélection de lannotation privée « %{label} » ont été modifiées :"
update_carte_layers: "Les référentiels cartographiques de lannotation privée « %{label} » ont été modifiés :"
enable_drop_down_other: Lannotation privée « %{label} » comporte maintenant un choix « Autre ».
disable_drop_down_other: Lannotation privée « %{label} » ne comporte plus de choix « Autre ».
enable_collapsible_explanation: Le texte complementaire affichable au clique de lannotation privée « %{label} » a été ajouté.

View file

@ -184,6 +184,13 @@ class ApplicationController < ActionController::Base
Sentry.set_user(sentry_user)
end
def set_sentry_dossier(dossier)
Sentry.configure_scope do |scope|
scope.set_tags(procedure: dossier.procedure.id)
scope.set_tags(dossier: dossier.id)
end
end
# private method called by rails fwk
# see https://github.com/roidrage/lograge
def append_info_to_payload(payload)

View file

@ -303,7 +303,9 @@ module Instructeurs
end
def dossier
@dossier ||= DossierPreloader.load_one(dossier_scope.find(params[:dossier_id]))
@dossier ||= DossierPreloader.load_one(dossier_scope.find(params[:dossier_id])).tap do
set_sentry_dossier(_1)
end
end
def dossier_with_champs

View file

@ -405,13 +405,9 @@ module Users
end
def dossier
@dossier ||= dossier_scope.find(params[:id] || params[:dossier_id]).tap do |dossier|
# Ease search & groupments by tags
Sentry.configure_scope do |scope|
scope.set_tags(procedure: dossier.procedure.id)
scope.set_tags(dossier: dossier.id)
end
end
@dossier ||= dossier_scope.find(params[:id] || params[:dossier_id]).tap do
set_sentry_dossier(_1)
end
end
def dossier_with_champs(pj_template: true)

View file

@ -0,0 +1,25 @@
namespace :after_party do
desc 'Deployment task: fix_champ_type_mismatch'
task fix_private_champ_type_mismatch: :environment do
puts "Running deploy task 'fix_champ_type_mismatch'"
champs = Champ.private_only
# count of large champs count is too slow, so we're using an progress approximation based on id
progress = ProgressReport.new(champs.last.id)
champs.includes(:type_de_champ).in_batches.each_record do |champ|
type_champ = champ.type_de_champ.type_champ
expected_type = "Champs::#{type_champ.classify}Champ"
if champ.type != expected_type
puts "Fixing champ #{champ.id} (#{champ.type} -> #{expected_type})"
champ.update_column(:type, expected_type)
end
progress.set(champ.id)
end
progress.finish
end
end

View file

@ -40,6 +40,14 @@ class ProgressReport
end
end
def set(count)
set_progress(count: count)
if @per_10_000 % 10 == 0
print_progress
end
end
def finish
if @count > 0 && @per_10_000 != 10_000
set_progress(total: @count)