demarches-normaliennes/app/models/procedure_revision.rb

466 lines
16 KiB
Ruby
Raw Normal View History

2020-08-06 16:35:45 +02:00
# == Schema Information
#
# Table name: procedure_revisions
#
# id :bigint not null, primary key
# published_at :datetime
# created_at :datetime not null
# updated_at :datetime not null
# attestation_template_id :bigint
# dossier_submitted_message_id :bigint
# procedure_id :bigint not null
2020-08-06 16:35:45 +02:00
#
2020-06-26 11:37:28 +02:00
class ProcedureRevision < ApplicationRecord
2020-07-22 11:56:19 +02:00
self.implicit_order_column = :created_at
2020-08-27 19:55:10 +02:00
belongs_to :procedure, -> { with_discarded }, inverse_of: :revisions, optional: false
belongs_to :dossier_submitted_message, inverse_of: :revisions, optional: true, dependent: :destroy
2020-06-26 11:37:28 +02:00
2020-09-17 11:15:21 +02:00
has_many :dossiers, inverse_of: :revision, foreign_key: :revision_id
has_many :revision_types_de_champ, -> { order(:position, :id) }, class_name: 'ProcedureRevisionTypeDeChamp', foreign_key: :revision_id, dependent: :destroy, inverse_of: :revision
has_many :revision_types_de_champ_public, -> { root.public_only.ordered }, class_name: 'ProcedureRevisionTypeDeChamp', foreign_key: :revision_id, dependent: :destroy, inverse_of: :revision
has_many :revision_types_de_champ_private, -> { root.private_only.ordered }, class_name: 'ProcedureRevisionTypeDeChamp', foreign_key: :revision_id, dependent: :destroy, inverse_of: :revision
2022-05-02 10:36:16 +02:00
has_many :types_de_champ, through: :revision_types_de_champ, source: :type_de_champ
has_many :types_de_champ_public, through: :revision_types_de_champ_public, source: :type_de_champ
2020-06-26 11:37:28 +02:00
has_many :types_de_champ_private, through: :revision_types_de_champ_private, source: :type_de_champ
2021-05-27 12:17:10 +02:00
has_one :draft_procedure, -> { with_discarded }, class_name: 'Procedure', foreign_key: :draft_revision_id, dependent: :nullify, inverse_of: :draft_revision
has_one :published_procedure, -> { with_discarded }, class_name: 'Procedure', foreign_key: :published_revision_id, dependent: :nullify, inverse_of: :published_revision
2021-04-13 20:24:12 +02:00
scope :ordered, -> { order(:created_at) }
2022-05-31 11:21:57 +02:00
validate :conditions_are_valid?
def build_champs_public
# reload: it can be out of sync in test if some tdcs are added wihtout using add_tdc
types_de_champ_public.reload.map { |tdc| tdc.build_champ(revision: self) }
2020-08-27 19:55:10 +02:00
end
def build_champs_private
# reload: it can be out of sync in test if some tdcs are added wihtout using add_tdc
types_de_champ_private.reload.map { |tdc| tdc.build_champ(revision: self) }
2020-08-27 19:55:10 +02:00
end
def add_type_de_champ(params)
2022-07-02 16:20:42 +02:00
parent_stable_id = params.delete(:parent_stable_id)
2022-07-08 09:52:23 +02:00
parent_coordinate, _ = coordinate_and_tdc(parent_stable_id)
parent_id = parent_coordinate&.id
2022-05-12 14:18:28 +02:00
2022-07-08 09:52:23 +02:00
after_stable_id = params.delete(:after_stable_id)
after_coordinate, _ = coordinate_and_tdc(after_stable_id)
2022-05-12 14:18:28 +02:00
2022-07-08 09:52:23 +02:00
# the collection is orderd by (position, id), so we can use after_coordinate.position
# if not present, a big number is used to ensure the element is at the tail
position = (after_coordinate&.position) || 100_000
2022-05-12 14:18:28 +02:00
tdc = TypeDeChamp.new(params)
if tdc.save
2022-07-08 09:52:23 +02:00
h = { type_de_champ: tdc, parent_id: parent_id, position: position }
coordinate = revision_types_de_champ.create!(h)
2022-07-11 10:14:18 +02:00
renumber(coordinate.reload.siblings)
2022-05-12 14:18:28 +02:00
end
# they are not aware of the addition
types_de_champ_public.reset
types_de_champ_private.reset
2022-05-12 14:18:28 +02:00
tdc
rescue => e
TypeDeChamp.new.tap { |tdc| tdc.errors.add(:base, e.message) }
end
def find_and_ensure_exclusive_use(stable_id)
coordinate, tdc = coordinate_and_tdc(stable_id)
if tdc.only_present_on_draft?
tdc
else
2022-05-24 15:57:31 +02:00
replace_type_de_champ_by_clone(coordinate)
end
end
def move_type_de_champ(stable_id, position)
2022-05-17 22:04:53 +02:00
coordinate, _ = coordinate_and_tdc(stable_id)
siblings = coordinate.siblings.to_a
siblings.insert(position, siblings.delete_at(siblings.index(coordinate)))
2022-05-02 10:36:16 +02:00
2022-07-11 10:14:18 +02:00
renumber(siblings)
2022-06-01 15:23:18 +02:00
coordinate.reload
coordinate
end
def remove_type_de_champ(stable_id)
2022-05-17 22:04:53 +02:00
coordinate, tdc = coordinate_and_tdc(stable_id)
# in case of replay
return nil if coordinate.nil?
2022-05-24 15:57:31 +02:00
children = children_of(tdc).to_a
coordinate.destroy
2022-05-24 15:57:31 +02:00
children.each(&:destroy_if_orphan)
tdc.destroy_if_orphan
# they are not aware of the removal
types_de_champ_public.reset
types_de_champ_private.reset
2022-07-11 10:14:18 +02:00
renumber(coordinate.siblings)
2022-06-01 15:23:18 +02:00
coordinate
end
def move_up_type_de_champ(stable_id)
coordinate, _ = coordinate_and_tdc(stable_id)
if coordinate.position > 0
move_type_de_champ(stable_id, coordinate.position - 1)
else
coordinate
end
end
def move_down_type_de_champ(stable_id)
coordinate, _ = coordinate_and_tdc(stable_id)
move_type_de_champ(stable_id, coordinate.position + 1)
end
2020-06-26 11:37:28 +02:00
def draft?
procedure.draft_revision == self
end
def locked?
!draft?
end
def different_from?(revision)
revision_types_de_champ != revision.revision_types_de_champ
end
def compare(revision)
changes = []
changes += compare_revision_types_de_champ(revision_types_de_champ, revision.revision_types_de_champ)
changes
end
def new_dossier
Dossier.new(
revision: self,
champs_public: build_champs_public,
champs_private: build_champs_private,
groupe_instructeur: procedure.defaut_groupe_instructeur
)
end
def dossier_for_preview(user)
dossier = Dossier
.create_with(groupe_instructeur: procedure.defaut_groupe_instructeur_for_new_dossier)
.find_or_initialize_by(revision: self, user: user, for_procedure_preview: true, state: Dossier.states.fetch(:brouillon))
if dossier.new_record?
dossier.build_default_individual
dossier.save!
end
dossier
end
2022-05-06 15:47:57 +02:00
def children_of(tdc)
2022-05-18 12:30:58 +02:00
parent_coordinate_id = revision_types_de_champ.where(type_de_champ: tdc).select(:id)
2022-05-06 15:47:57 +02:00
2022-05-18 12:30:58 +02:00
types_de_champ
.where(procedure_revision_types_de_champ: { parent_id: parent_coordinate_id })
.order("procedure_revision_types_de_champ.position")
2022-05-06 15:47:57 +02:00
end
2022-05-24 15:57:31 +02:00
def remove_children_of(tdc)
children_of(tdc).each do |child|
remove_type_de_champ(child.stable_id)
end
end
# Estimated duration to fill the form, in seconds.
#
# If the revision is locked (i.e. published), the result is cached (because type de champs can no longer be mutated).
def estimated_fill_duration
Rails.cache.fetch("#{cache_key_with_version}/estimated_fill_duration", expires_in: 12.hours, force: !locked?) do
compute_estimated_fill_duration
end
end
2022-06-01 15:23:18 +02:00
def coordinate_for(tdc)
revision_types_de_champ.find_by!(type_de_champ: tdc)
end
2022-11-16 11:50:19 +01:00
def carte?
types_de_champ_public.any?(&:carte?)
end
private
def compute_estimated_fill_duration
types_de_champ_public.sum do |tdc|
next tdc.estimated_read_duration unless tdc.fillable?
duration = tdc.estimated_read_duration + tdc.estimated_fill_duration(self)
duration /= 2 unless tdc.mandatory?
duration
end
end
def children_types_de_champ_as_json(tdcs_as_json, parent_tdcs)
parent_tdcs.each do |parent_tdc|
tdc_as_json = tdcs_as_json.find { |json| json["id"] == parent_tdc.stable_id }
tdc_as_json&.merge!(types_de_champ: children_of(parent_tdc).includes(piece_justificative_template_attachment: :blob).map(&:as_json_for_editor))
end
end
2022-05-17 22:04:53 +02:00
def coordinate_and_tdc(stable_id)
2022-07-08 09:52:23 +02:00
return [nil, nil] if stable_id.blank?
2022-05-17 22:04:53 +02:00
coordinate = revision_types_de_champ
.joins(:type_de_champ)
.find_by(type_de_champ: { stable_id: stable_id })
[coordinate, coordinate&.type_de_champ]
2022-05-17 22:04:53 +02:00
end
2022-07-11 10:14:18 +02:00
def renumber(siblings)
siblings.to_a.compact.each.with_index do |sibling, position|
2022-06-01 15:23:18 +02:00
sibling.update_column(:position, position)
2022-05-24 15:57:31 +02:00
end
end
def compare_revision_types_de_champ(from_coordinates, to_coordinates)
if from_coordinates == to_coordinates
[]
else
from_h = from_coordinates.index_by(&:stable_id)
to_h = to_coordinates.index_by(&:stable_id)
from_sids = from_h.keys
to_sids = to_h.keys
removed = (from_sids - to_sids).map do |sid|
{ model: :type_de_champ, op: :remove, label: from_h[sid].libelle, private: from_h[sid].private?, _position: from_sids.index(sid), stable_id: sid }
end
added = (to_sids - from_sids).map do |sid|
{ model: :type_de_champ, op: :add, label: to_h[sid].libelle, private: to_h[sid].private?, mandatory: to_h[sid].mandatory?, _position: to_sids.index(sid), stable_id: sid }
end
kept = from_sids.intersection(to_sids)
moved = kept
.map { |sid| [sid, from_h[sid], to_h[sid]] }
.filter { |_, from, to| from.position != to.position }
.map do |sid, from, to|
{ model: :type_de_champ, op: :move, label: from.libelle, private: from.private?, from: from.position, to: to.position, _position: to_sids.index(sid), stable_id: sid }
end
changed = kept
.map { |sid| [sid, from_h[sid], to_h[sid]] }
.flat_map do |sid, from, to|
2022-09-26 21:21:55 +02:00
compare_type_de_champ(from.type_de_champ, to.type_de_champ, from_coordinates, to_coordinates)
.each { |h| h[:_position] = to_sids.index(sid) }
end
(removed + added + moved + changed)
.sort_by { |h| h[:_position] }
.each { |h| h.delete(:_position) }
end
end
2022-09-26 21:21:55 +02:00
def compare_type_de_champ(from_type_de_champ, to_type_de_champ, from_coordinates, to_coordinates)
changes = []
if from_type_de_champ.type_champ != to_type_de_champ.type_champ
changes << {
model: :type_de_champ,
op: :update,
attribute: :type_champ,
label: from_type_de_champ.libelle,
private: from_type_de_champ.private?,
from: from_type_de_champ.type_champ,
to: to_type_de_champ.type_champ,
stable_id: from_type_de_champ.stable_id
}
end
if from_type_de_champ.libelle != to_type_de_champ.libelle
changes << {
model: :type_de_champ,
op: :update,
attribute: :libelle,
label: from_type_de_champ.libelle,
private: from_type_de_champ.private?,
from: from_type_de_champ.libelle,
to: to_type_de_champ.libelle,
stable_id: from_type_de_champ.stable_id
}
end
if from_type_de_champ.collapsible_explanation_enabled? != to_type_de_champ.collapsible_explanation_enabled?
changes << {
model: :type_de_champ,
op: :update,
attribute: :collapsible_explanation_enabled,
label: from_type_de_champ.libelle,
private: from_type_de_champ.private?,
from: from_type_de_champ.collapsible_explanation_enabled?,
to: to_type_de_champ.collapsible_explanation_enabled?,
stable_id: from_type_de_champ.stable_id
}
end
if from_type_de_champ.collapsible_explanation_text != to_type_de_champ.collapsible_explanation_text
changes << {
model: :type_de_champ,
op: :update,
attribute: :collapsible_explanation_text,
label: from_type_de_champ.libelle,
private: from_type_de_champ.private?,
from: from_type_de_champ.collapsible_explanation_text,
to: to_type_de_champ.collapsible_explanation_text,
stable_id: from_type_de_champ.stable_id
}
end
if from_type_de_champ.description != to_type_de_champ.description
changes << {
model: :type_de_champ,
op: :update,
attribute: :description,
label: from_type_de_champ.libelle,
private: from_type_de_champ.private?,
from: from_type_de_champ.description,
to: to_type_de_champ.description,
stable_id: from_type_de_champ.stable_id
}
end
if from_type_de_champ.mandatory? != to_type_de_champ.mandatory?
changes << {
model: :type_de_champ,
op: :update,
attribute: :mandatory,
label: from_type_de_champ.libelle,
private: from_type_de_champ.private?,
from: from_type_de_champ.mandatory?,
to: to_type_de_champ.mandatory?,
stable_id: from_type_de_champ.stable_id
}
end
if from_type_de_champ.condition != to_type_de_champ.condition
changes << {
model: :type_de_champ,
op: :update,
attribute: :condition,
label: from_type_de_champ.libelle,
private: from_type_de_champ.private?,
2022-09-26 21:21:55 +02:00
from: from_type_de_champ.condition&.to_s(from_coordinates.map(&:type_de_champ)),
to: to_type_de_champ.condition&.to_s(to_coordinates.map(&:type_de_champ)),
stable_id: from_type_de_champ.stable_id
}
end
if to_type_de_champ.drop_down_list?
if from_type_de_champ.drop_down_list_options != to_type_de_champ.drop_down_list_options
changes << {
model: :type_de_champ,
op: :update,
attribute: :drop_down_options,
label: from_type_de_champ.libelle,
private: from_type_de_champ.private?,
from: from_type_de_champ.drop_down_list_options,
to: to_type_de_champ.drop_down_list_options,
stable_id: from_type_de_champ.stable_id
2021-06-23 15:54:12 +02:00
}
end
if to_type_de_champ.linked_drop_down_list?
if from_type_de_champ.drop_down_secondary_libelle != to_type_de_champ.drop_down_secondary_libelle
changes << {
model: :type_de_champ,
op: :update,
attribute: :drop_down_secondary_libelle,
label: from_type_de_champ.libelle,
private: from_type_de_champ.private?,
from: from_type_de_champ.drop_down_secondary_libelle,
to: to_type_de_champ.drop_down_secondary_libelle
}
end
if from_type_de_champ.drop_down_secondary_description != to_type_de_champ.drop_down_secondary_description
changes << {
model: :type_de_champ,
op: :update,
attribute: :drop_down_secondary_description,
label: from_type_de_champ.libelle,
private: from_type_de_champ.private?,
from: from_type_de_champ.drop_down_secondary_description,
to: to_type_de_champ.drop_down_secondary_description
}
end
end
if from_type_de_champ.drop_down_other? != to_type_de_champ.drop_down_other?
2021-10-22 20:44:46 +02:00
changes << {
model: :type_de_champ,
2021-10-22 20:44:46 +02:00
op: :update,
attribute: :drop_down_other,
label: from_type_de_champ.libelle,
private: from_type_de_champ.private?,
from: from_type_de_champ.drop_down_other?,
to: to_type_de_champ.drop_down_other?,
2021-10-22 20:44:46 +02:00
stable_id: from_type_de_champ.stable_id
}
end
2021-06-23 15:54:12 +02:00
elsif to_type_de_champ.carte?
if from_type_de_champ.carte_optional_layers != to_type_de_champ.carte_optional_layers
changes << {
model: :type_de_champ,
2021-06-23 15:54:12 +02:00
op: :update,
attribute: :carte_layers,
label: from_type_de_champ.libelle,
private: from_type_de_champ.private?,
from: from_type_de_champ.carte_optional_layers,
to: to_type_de_champ.carte_optional_layers,
stable_id: from_type_de_champ.stable_id
}
end
elsif to_type_de_champ.piece_justificative?
if from_type_de_champ.piece_justificative_template_checksum != to_type_de_champ.piece_justificative_template_checksum
changes << {
model: :type_de_champ,
op: :update,
attribute: :piece_justificative_template,
label: from_type_de_champ.libelle,
private: from_type_de_champ.private?,
from: from_type_de_champ.piece_justificative_template_filename,
to: to_type_de_champ.piece_justificative_template_filename,
stable_id: from_type_de_champ.stable_id
}
end
end
changes
end
2022-05-24 15:57:31 +02:00
def replace_type_de_champ_by_clone(coordinate)
cloned_type_de_champ = coordinate.type_de_champ.deep_clone do |original, kopy|
2021-07-01 13:33:22 +02:00
PiecesJustificativesService.clone_attachments(original, kopy)
end
coordinate.update!(type_de_champ: cloned_type_de_champ)
cloned_type_de_champ
end
2022-06-01 15:23:18 +02:00
2022-05-31 11:21:57 +02:00
def conditions_are_valid?
2022-09-26 21:11:43 +02:00
public_tdcs = types_de_champ_public.to_a
2022-05-31 11:21:57 +02:00
2022-09-26 21:11:43 +02:00
public_tdcs
2022-05-31 11:21:57 +02:00
.map.with_index
.filter_map { |tdc, i| tdc.condition.present? ? [tdc, i] : nil }
2022-09-26 21:11:43 +02:00
.map { |tdc, i| [tdc, tdc.condition.errors(public_tdcs.take(i))] }
2022-07-11 21:18:08 +02:00
.filter { |_tdc, errors| errors.present? }
.each { |tdc, message| errors.add(:condition, message, type_de_champ: tdc) }
2022-05-31 11:21:57 +02:00
end
2020-06-26 11:37:28 +02:00
end