2020-08-06 16:35:45 +02:00
|
|
|
|
# == Schema Information
|
|
|
|
|
#
|
|
|
|
|
# Table name: procedures
|
|
|
|
|
#
|
2021-04-27 13:55:12 +02:00
|
|
|
|
# id :integer not null, primary key
|
|
|
|
|
# aasm_state :string default("brouillon")
|
|
|
|
|
# allow_expert_review :boolean default(TRUE), not null
|
|
|
|
|
# api_entreprise_token :string
|
2021-09-08 16:22:13 +02:00
|
|
|
|
# api_particulier_scopes :text default([]), is an Array
|
2021-09-13 15:57:28 +02:00
|
|
|
|
# api_particulier_sources :jsonb
|
2021-04-27 13:55:12 +02:00
|
|
|
|
# ask_birthday :boolean default(FALSE), not null
|
|
|
|
|
# auto_archive_on :date
|
|
|
|
|
# cadre_juridique :string
|
|
|
|
|
# cerfa_flag :boolean default(FALSE)
|
|
|
|
|
# cloned_from_library :boolean default(FALSE)
|
|
|
|
|
# closed_at :datetime
|
|
|
|
|
# declarative_with_state :string
|
|
|
|
|
# description :string
|
|
|
|
|
# direction :string
|
|
|
|
|
# duree_conservation_dossiers_dans_ds :integer
|
|
|
|
|
# durees_conservation_required :boolean default(TRUE)
|
2021-07-16 17:03:58 +02:00
|
|
|
|
# encrypted_api_particulier_token :string
|
2021-04-27 13:55:12 +02:00
|
|
|
|
# euro_flag :boolean default(FALSE)
|
2021-04-16 11:11:00 +02:00
|
|
|
|
# experts_require_administrateur_invitation :boolean default(FALSE)
|
2021-04-27 13:55:12 +02:00
|
|
|
|
# for_individual :boolean default(FALSE)
|
|
|
|
|
# hidden_at :datetime
|
2021-09-23 10:42:47 +02:00
|
|
|
|
# instructeurs_self_management_enabled :boolean
|
2021-04-27 13:55:12 +02:00
|
|
|
|
# juridique_required :boolean default(TRUE)
|
|
|
|
|
# libelle :string
|
|
|
|
|
# lien_demarche :string
|
2022-04-25 17:38:30 +02:00
|
|
|
|
# lien_dpo :string
|
2021-04-27 13:55:12 +02:00
|
|
|
|
# lien_notice :string
|
|
|
|
|
# lien_site_web :string
|
|
|
|
|
# monavis_embed :text
|
|
|
|
|
# organisation :string
|
|
|
|
|
# path :string not null
|
2022-02-22 16:09:00 +01:00
|
|
|
|
# procedure_expires_when_termine_enabled :boolean default(TRUE)
|
2021-04-27 13:55:12 +02:00
|
|
|
|
# published_at :datetime
|
|
|
|
|
# routing_criteria_name :text default("Votre ville")
|
2021-09-18 11:22:35 +02:00
|
|
|
|
# routing_enabled :boolean
|
2021-04-27 13:55:12 +02:00
|
|
|
|
# test_started_at :datetime
|
|
|
|
|
# unpublished_at :datetime
|
|
|
|
|
# web_hook_url :string
|
|
|
|
|
# whitelisted_at :datetime
|
|
|
|
|
# created_at :datetime not null
|
|
|
|
|
# updated_at :datetime not null
|
|
|
|
|
# canonical_procedure_id :bigint
|
|
|
|
|
# draft_revision_id :bigint
|
|
|
|
|
# parent_procedure_id :bigint
|
|
|
|
|
# published_revision_id :bigint
|
2022-05-23 18:58:13 +02:00
|
|
|
|
# replaced_by_procedure_id :bigint
|
2021-04-27 13:55:12 +02:00
|
|
|
|
# service_id :bigint
|
2021-12-01 21:05:15 +01:00
|
|
|
|
# zone_id :bigint
|
2020-08-06 16:35:45 +02:00
|
|
|
|
#
|
2018-11-08 18:09:27 +01:00
|
|
|
|
|
2018-03-06 13:44:29 +01:00
|
|
|
|
class Procedure < ApplicationRecord
|
2021-11-11 10:58:13 +01:00
|
|
|
|
self.ignored_columns = [:duree_conservation_dossiers_hors_ds]
|
2019-09-17 15:52:38 +02:00
|
|
|
|
include ProcedureStatsConcern
|
2021-07-16 17:03:58 +02:00
|
|
|
|
include EncryptableConcern
|
2019-09-17 15:52:38 +02:00
|
|
|
|
|
2020-02-05 16:09:03 +01:00
|
|
|
|
include Discard::Model
|
|
|
|
|
self.discard_column = :hidden_at
|
|
|
|
|
default_scope -> { kept }
|
|
|
|
|
|
2018-05-24 23:29:33 +02:00
|
|
|
|
MAX_DUREE_CONSERVATION = 36
|
2019-10-21 17:14:56 +02:00
|
|
|
|
MAX_DUREE_CONSERVATION_EXPORT = 3.hours
|
2018-05-24 23:29:33 +02:00
|
|
|
|
|
2021-07-06 15:00:33 +02:00
|
|
|
|
MIN_WEIGHT = 350000
|
2021-07-16 17:03:58 +02:00
|
|
|
|
|
|
|
|
|
attr_encrypted :api_particulier_token
|
|
|
|
|
|
2020-09-17 11:15:21 +02:00
|
|
|
|
has_many :revisions, -> { order(:id) }, class_name: 'ProcedureRevision', inverse_of: :procedure
|
2020-08-27 19:55:10 +02:00
|
|
|
|
belongs_to :draft_revision, class_name: 'ProcedureRevision', optional: false
|
2020-06-26 11:37:28 +02:00
|
|
|
|
belongs_to :published_revision, class_name: 'ProcedureRevision', optional: true
|
2018-05-30 11:36:48 +02:00
|
|
|
|
has_many :deleted_dossiers, dependent: :destroy
|
2017-03-07 10:25:28 +01:00
|
|
|
|
|
2022-04-28 14:25:49 +02:00
|
|
|
|
has_many :published_types_de_champ, through: :published_revision, source: :types_de_champ_public
|
2021-01-20 16:31:38 +01:00
|
|
|
|
has_many :published_types_de_champ_private, through: :published_revision, source: :types_de_champ_private
|
2022-04-28 14:25:49 +02:00
|
|
|
|
has_many :draft_types_de_champ, through: :draft_revision, source: :types_de_champ_public
|
2021-01-20 16:31:38 +01:00
|
|
|
|
has_many :draft_types_de_champ_private, through: :draft_revision, source: :types_de_champ_private
|
2022-02-02 16:10:29 +01:00
|
|
|
|
has_one :draft_attestation_template, through: :draft_revision, source: :attestation_template
|
|
|
|
|
has_one :published_attestation_template, through: :published_revision, source: :attestation_template
|
2020-09-08 15:53:07 +02:00
|
|
|
|
|
2022-02-04 14:40:16 +01:00
|
|
|
|
has_one :published_dossier_submitted_message, dependent: :destroy, through: :published_revision, source: :dossier_submitted_message
|
|
|
|
|
has_one :draft_dossier_submitted_message, dependent: :destroy, through: :draft_revision, source: :dossier_submitted_message
|
|
|
|
|
has_many :dossier_submitted_messages, through: :revisions, source: :dossier_submitted_message
|
|
|
|
|
|
2021-01-07 15:45:02 +01:00
|
|
|
|
has_many :experts_procedures, dependent: :destroy
|
|
|
|
|
has_many :experts, through: :experts_procedures
|
2022-05-23 18:58:13 +02:00
|
|
|
|
has_many :replaced_procedures, -> { with_discarded }, inverse_of: :replaced_by_procedure, class_name: "Procedure",
|
|
|
|
|
foreign_key: "replaced_by_procedure_id", dependent: :nullify
|
2021-01-07 15:45:02 +01:00
|
|
|
|
|
2016-01-18 16:20:51 +01:00
|
|
|
|
has_one :module_api_carto, dependent: :destroy
|
2022-02-11 08:45:16 +01:00
|
|
|
|
has_one :legacy_attestation_template, class_name: 'AttestationTemplate', dependent: :destroy
|
2022-02-02 16:10:29 +01:00
|
|
|
|
has_many :attestation_templates, through: :revisions, source: :attestation_template
|
2016-01-18 16:20:51 +01:00
|
|
|
|
|
2020-07-20 16:06:03 +02:00
|
|
|
|
belongs_to :parent_procedure, class_name: 'Procedure', optional: true
|
|
|
|
|
belongs_to :canonical_procedure, class_name: 'Procedure', optional: true
|
2022-05-23 18:58:13 +02:00
|
|
|
|
belongs_to :replaced_by_procedure, -> { with_discarded }, inverse_of: :replaced_procedures, class_name: "Procedure", optional: true
|
2020-07-20 16:06:03 +02:00
|
|
|
|
belongs_to :service, optional: true
|
2021-12-01 21:05:15 +01:00
|
|
|
|
belongs_to :zone, optional: true
|
2016-01-18 16:20:51 +01:00
|
|
|
|
|
2022-02-04 14:40:16 +01:00
|
|
|
|
def active_dossier_submitted_message
|
|
|
|
|
published_dossier_submitted_message || draft_dossier_submitted_message
|
|
|
|
|
end
|
|
|
|
|
|
2020-06-26 11:37:28 +02:00
|
|
|
|
def active_revision
|
|
|
|
|
brouillon? ? draft_revision : published_revision
|
|
|
|
|
end
|
|
|
|
|
|
2020-08-27 19:55:10 +02:00
|
|
|
|
def types_de_champ
|
|
|
|
|
brouillon? ? draft_types_de_champ : published_types_de_champ
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def types_de_champ_private
|
|
|
|
|
brouillon? ? draft_types_de_champ_private : published_types_de_champ_private
|
|
|
|
|
end
|
|
|
|
|
|
2022-05-18 12:37:43 +02:00
|
|
|
|
def types_de_champ_for_procedure_presentation(parent = nil)
|
2021-06-16 10:48:15 +02:00
|
|
|
|
if brouillon?
|
2022-05-18 12:37:43 +02:00
|
|
|
|
if parent.nil?
|
|
|
|
|
TypeDeChamp.fillable
|
|
|
|
|
.joins(:revision_types_de_champ)
|
|
|
|
|
.where(revision_types_de_champ: { revision_id: draft_revision_id, parent_id: nil })
|
|
|
|
|
.order(:private, :position)
|
|
|
|
|
else
|
|
|
|
|
draft_revision.children_of(parent)
|
|
|
|
|
end
|
2021-06-16 10:48:15 +02:00
|
|
|
|
else
|
2022-05-18 12:37:43 +02:00
|
|
|
|
# all published revisions
|
|
|
|
|
revision_ids = revisions.ids - [draft_revision_id]
|
|
|
|
|
# fetch all parent types de champ
|
|
|
|
|
parent_ids = if parent.present?
|
|
|
|
|
ProcedureRevisionTypeDeChamp
|
|
|
|
|
.where(revision_id: revision_ids)
|
|
|
|
|
.joins(:type_de_champ)
|
|
|
|
|
.where(type_de_champ: { stable_id: parent.stable_id })
|
|
|
|
|
.ids
|
|
|
|
|
end
|
|
|
|
|
|
2021-06-16 10:48:15 +02:00
|
|
|
|
# fetch all type_de_champ.stable_id for all the revisions expect draft
|
|
|
|
|
# and for each stable_id take the bigger (more recent) type_de_champ.id
|
2022-05-18 12:37:43 +02:00
|
|
|
|
recent_ids = TypeDeChamp
|
|
|
|
|
.fillable
|
|
|
|
|
.joins(:revision_types_de_champ)
|
|
|
|
|
.where(revision_types_de_champ: { revision_id: revision_ids, parent_id: parent_ids })
|
|
|
|
|
.group(:stable_id).select('MAX(types_de_champ.id)')
|
2021-06-16 10:48:15 +02:00
|
|
|
|
|
|
|
|
|
# fetch the more recent procedure_revision_types_de_champ
|
|
|
|
|
# which includes recents_ids
|
|
|
|
|
recents_prtdc = ProcedureRevisionTypeDeChamp
|
|
|
|
|
.where(type_de_champ_id: recent_ids)
|
|
|
|
|
.where.not(revision_id: draft_revision_id)
|
|
|
|
|
.group(:type_de_champ_id)
|
|
|
|
|
.select('MAX(id)')
|
|
|
|
|
|
|
|
|
|
TypeDeChamp
|
|
|
|
|
.joins(:revision_types_de_champ)
|
|
|
|
|
.where(revision_types_de_champ: { id: recents_prtdc })
|
2021-06-22 10:17:10 +02:00
|
|
|
|
.order(:private, :position, 'revision_types_de_champ.revision_id': :desc)
|
2021-06-16 10:48:15 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2021-01-21 14:11:17 +01:00
|
|
|
|
def types_de_champ_for_tags
|
|
|
|
|
if brouillon?
|
|
|
|
|
draft_types_de_champ
|
|
|
|
|
else
|
2022-05-24 15:57:31 +02:00
|
|
|
|
TypeDeChamp
|
2021-01-21 14:11:17 +01:00
|
|
|
|
.public_only
|
2021-10-22 12:18:43 +02:00
|
|
|
|
.fillable
|
2021-12-06 21:04:01 +01:00
|
|
|
|
.joins(:revisions)
|
|
|
|
|
.where(procedure_revisions: { procedure_id: id })
|
|
|
|
|
.where.not(procedure_revisions: { id: draft_revision_id })
|
|
|
|
|
.where(revision_types_de_champ: { parent_id: nil })
|
2021-01-21 14:11:17 +01:00
|
|
|
|
.order(:created_at)
|
|
|
|
|
.uniq
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def types_de_champ_private_for_tags
|
|
|
|
|
if brouillon?
|
|
|
|
|
draft_types_de_champ_private
|
|
|
|
|
else
|
2022-05-24 15:57:31 +02:00
|
|
|
|
TypeDeChamp
|
2021-01-21 14:11:17 +01:00
|
|
|
|
.private_only
|
2021-10-22 12:18:43 +02:00
|
|
|
|
.fillable
|
2021-12-06 21:04:01 +01:00
|
|
|
|
.joins(:revisions)
|
|
|
|
|
.where(procedure_revisions: { procedure_id: id })
|
|
|
|
|
.where.not(procedure_revisions: { id: draft_revision_id })
|
|
|
|
|
.where(revision_types_de_champ: { parent_id: nil })
|
2021-01-21 14:11:17 +01:00
|
|
|
|
.order(:created_at)
|
|
|
|
|
.uniq
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2022-03-02 12:09:35 +01:00
|
|
|
|
has_many :administrateurs_procedures, dependent: :delete_all
|
2019-04-29 18:27:44 +02:00
|
|
|
|
has_many :administrateurs, through: :administrateurs_procedures, after_remove: -> (procedure, _admin) { procedure.validate! }
|
2019-08-19 16:12:30 +02:00
|
|
|
|
has_many :groupe_instructeurs, dependent: :destroy
|
2020-04-09 09:22:37 +02:00
|
|
|
|
has_many :instructeurs, through: :groupe_instructeurs
|
2016-05-20 15:39:17 +02:00
|
|
|
|
|
2020-09-17 11:15:21 +02:00
|
|
|
|
# This relationship is used in following dossiers through. We can not use revisions relationship
|
|
|
|
|
# as order scope introduces invalid sql in some combinations.
|
|
|
|
|
has_many :unordered_revisions, class_name: 'ProcedureRevision', inverse_of: :procedure, dependent: :destroy
|
|
|
|
|
has_many :dossiers, through: :unordered_revisions, dependent: :restrict_with_exception
|
2019-08-22 17:58:31 +02:00
|
|
|
|
|
2017-05-26 21:55:19 +02:00
|
|
|
|
has_one :initiated_mail, class_name: "Mails::InitiatedMail", dependent: :destroy
|
|
|
|
|
has_one :received_mail, class_name: "Mails::ReceivedMail", dependent: :destroy
|
|
|
|
|
has_one :closed_mail, class_name: "Mails::ClosedMail", dependent: :destroy
|
|
|
|
|
has_one :refused_mail, class_name: "Mails::RefusedMail", dependent: :destroy
|
|
|
|
|
has_one :without_continuation_mail, class_name: "Mails::WithoutContinuationMail", dependent: :destroy
|
|
|
|
|
|
2021-03-03 11:32:42 +01:00
|
|
|
|
has_one :defaut_groupe_instructeur, -> { order(:label) }, class_name: 'GroupeInstructeur', inverse_of: :procedure
|
2019-09-16 15:37:12 +02:00
|
|
|
|
|
2019-08-28 13:11:58 +02:00
|
|
|
|
has_one_attached :logo
|
2018-04-11 14:35:52 +02:00
|
|
|
|
has_one_attached :notice
|
2018-05-31 10:59:38 +02:00
|
|
|
|
has_one_attached :deliberation
|
2019-10-03 15:35:31 +02:00
|
|
|
|
|
2018-05-16 17:21:12 +02:00
|
|
|
|
scope :brouillons, -> { where(aasm_state: :brouillon) }
|
|
|
|
|
scope :publiees, -> { where(aasm_state: :publiee) }
|
2019-12-18 13:28:29 +01:00
|
|
|
|
scope :closes, -> { where(aasm_state: [:close, :depubliee]) }
|
|
|
|
|
scope :publiees_ou_closes, -> { where(aasm_state: [:publiee, :close, :depubliee]) }
|
2017-07-17 15:06:36 +02:00
|
|
|
|
scope :by_libelle, -> { order(libelle: :asc) }
|
2018-04-12 18:36:09 +02:00
|
|
|
|
scope :created_during, -> (range) { where(created_at: range) }
|
|
|
|
|
scope :cloned_from_library, -> { where(cloned_from_library: true) }
|
2019-05-23 14:28:14 +02:00
|
|
|
|
scope :declarative, -> { where.not(declarative_with_state: nil) }
|
2017-05-26 21:30:11 +02:00
|
|
|
|
|
2020-03-26 17:37:55 +01:00
|
|
|
|
scope :discarded_expired, -> do
|
|
|
|
|
with_discarded
|
|
|
|
|
.discarded
|
|
|
|
|
.where('hidden_at < ?', 1.month.ago)
|
|
|
|
|
end
|
|
|
|
|
|
2018-11-01 14:04:32 +01:00
|
|
|
|
scope :for_api, -> {
|
|
|
|
|
includes(
|
2019-02-26 16:18:04 +01:00
|
|
|
|
:administrateurs,
|
2020-08-27 19:55:10 +02:00
|
|
|
|
:module_api_carto,
|
|
|
|
|
published_revision: [
|
|
|
|
|
:types_de_champ_private,
|
2022-04-28 14:25:49 +02:00
|
|
|
|
:types_de_champ_public
|
2020-08-27 19:55:10 +02:00
|
|
|
|
],
|
|
|
|
|
draft_revision: [
|
|
|
|
|
:types_de_champ_private,
|
2022-04-28 14:25:49 +02:00
|
|
|
|
:types_de_champ_public
|
2020-08-27 19:55:10 +02:00
|
|
|
|
]
|
2018-11-01 14:04:32 +01:00
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-23 14:28:14 +02:00
|
|
|
|
enum declarative_with_state: {
|
|
|
|
|
en_instruction: 'en_instruction',
|
|
|
|
|
accepte: 'accepte'
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-19 20:55:24 +01:00
|
|
|
|
scope :for_api_v2, -> {
|
2020-07-16 12:48:35 +02:00
|
|
|
|
includes(:draft_revision, :published_revision, administrateurs: :user)
|
2018-11-19 20:55:24 +01:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-29 17:29:47 +02:00
|
|
|
|
scope :for_download, -> {
|
|
|
|
|
includes(
|
|
|
|
|
:groupe_instructeurs,
|
|
|
|
|
dossiers: {
|
|
|
|
|
champs: [
|
|
|
|
|
piece_justificative_file_attachment: :blob,
|
|
|
|
|
champs: [
|
|
|
|
|
piece_justificative_file_attachment: :blob
|
|
|
|
|
]
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-22 11:21:52 +02:00
|
|
|
|
validates :libelle, presence: true, allow_blank: false, allow_nil: false
|
|
|
|
|
validates :description, presence: true, allow_blank: false, allow_nil: false
|
2019-04-29 18:27:44 +02:00
|
|
|
|
validates :administrateurs, presence: true
|
2019-07-29 16:01:13 +02:00
|
|
|
|
validates :lien_site_web, presence: true, if: :publiee?
|
2022-01-26 17:52:32 +01:00
|
|
|
|
validates :draft_types_de_champ,
|
2022-01-26 18:06:39 +01:00
|
|
|
|
'types_de_champ/no_empty_repetition': true,
|
|
|
|
|
'types_de_champ/no_empty_drop_down': true,
|
2021-11-30 12:26:19 +01:00
|
|
|
|
if: :validate_for_publication?
|
2022-01-26 17:52:54 +01:00
|
|
|
|
validates :draft_types_de_champ_private,
|
2022-01-26 18:06:39 +01:00
|
|
|
|
'types_de_champ/no_empty_repetition': true,
|
|
|
|
|
'types_de_champ/no_empty_drop_down': true,
|
2022-01-26 17:52:54 +01:00
|
|
|
|
if: :validate_for_publication?
|
2018-05-31 10:59:38 +02:00
|
|
|
|
validate :check_juridique
|
2020-10-06 14:24:34 +02:00
|
|
|
|
validates :path, presence: true, format: { with: /\A[a-z0-9_\-]{3,200}\z/ }, uniqueness: { scope: [:path, :closed_at, :hidden_at, :unpublished_at], case_sensitive: false }
|
2020-04-14 15:49:54 +02:00
|
|
|
|
validates :duree_conservation_dossiers_dans_ds, allow_nil: false, numericality: { only_integer: true, greater_than_or_equal_to: 1, less_than_or_equal_to: MAX_DUREE_CONSERVATION }
|
2022-04-25 17:38:30 +02:00
|
|
|
|
validates :lien_dpo, email_or_link: true, allow_nil: true
|
2019-07-17 17:13:08 +02:00
|
|
|
|
validates_with MonAvisEmbedValidator
|
2021-09-14 18:03:40 +02:00
|
|
|
|
|
|
|
|
|
FILE_MAX_SIZE = 20.megabytes
|
2020-03-16 17:55:16 +01:00
|
|
|
|
validates :notice, content_type: [
|
|
|
|
|
"application/msword",
|
|
|
|
|
"application/pdf",
|
|
|
|
|
"application/vnd.ms-powerpoint",
|
|
|
|
|
"application/vnd.oasis.opendocument.presentation",
|
2021-01-04 15:13:26 +01:00
|
|
|
|
"application/vnd.oasis.opendocument.text",
|
|
|
|
|
"application/vnd.openxmlformats-officedocument.presentationml.presentation",
|
|
|
|
|
"application/vnd.openxmlformats-officedocument.wordprocessingml.document",
|
|
|
|
|
"image/jpeg",
|
|
|
|
|
"image/jpg",
|
|
|
|
|
"image/png",
|
2020-03-16 17:55:16 +01:00
|
|
|
|
"text/plain"
|
2021-11-24 10:04:20 +01:00
|
|
|
|
], size: { less_than: FILE_MAX_SIZE }, if: -> { new_record? || created_at > Date.new(2020, 2, 28) }
|
2020-03-16 17:55:16 +01:00
|
|
|
|
|
|
|
|
|
validates :deliberation, content_type: [
|
|
|
|
|
"application/msword",
|
|
|
|
|
"application/pdf",
|
2021-01-04 15:13:26 +01:00
|
|
|
|
"application/vnd.oasis.opendocument.text",
|
2020-03-16 17:55:16 +01:00
|
|
|
|
"application/vnd.openxmlformats-officedocument.wordprocessingml.document",
|
2021-01-04 15:13:26 +01:00
|
|
|
|
"image/jpeg",
|
|
|
|
|
"image/jpg",
|
|
|
|
|
"image/png",
|
|
|
|
|
"text/plain"
|
2021-11-24 10:04:20 +01:00
|
|
|
|
], size: { less_than: FILE_MAX_SIZE }, if: -> { new_record? || created_at > Date.new(2020, 4, 29) }
|
2021-03-04 16:13:19 +01:00
|
|
|
|
|
2021-09-14 18:03:40 +02:00
|
|
|
|
LOGO_MAX_SIZE = 5.megabytes
|
2021-03-04 16:13:19 +01:00
|
|
|
|
validates :logo, content_type: ['image/png', 'image/jpg', 'image/jpeg'],
|
2021-11-24 10:04:20 +01:00
|
|
|
|
size: { less_than: LOGO_MAX_SIZE },
|
2021-09-20 19:51:20 +02:00
|
|
|
|
if: -> { new_record? || created_at > Date.new(2020, 11, 13) }
|
2020-03-16 17:55:16 +01:00
|
|
|
|
|
2020-07-08 17:00:21 +02:00
|
|
|
|
validates :api_entreprise_token, jwt_token: true, allow_blank: true
|
2021-09-09 19:48:34 +02:00
|
|
|
|
validates :api_particulier_token, format: { with: /\A[A-Za-z0-9\-_=.]{15,}\z/ }, allow_blank: true
|
2020-07-08 17:00:21 +02:00
|
|
|
|
|
2018-06-01 11:06:12 +02:00
|
|
|
|
before_save :update_juridique_required
|
2019-09-16 17:00:37 +02:00
|
|
|
|
after_initialize :ensure_path_exists
|
|
|
|
|
before_save :ensure_path_exists
|
2021-03-03 11:33:10 +01:00
|
|
|
|
after_create :ensure_defaut_groupe_instructeur
|
2018-06-01 11:06:12 +02:00
|
|
|
|
|
2018-05-17 15:38:49 +02:00
|
|
|
|
include AASM
|
|
|
|
|
|
|
|
|
|
aasm whiny_persistence: true do
|
|
|
|
|
state :brouillon, initial: true
|
|
|
|
|
state :publiee
|
2019-11-14 09:43:45 +01:00
|
|
|
|
state :close
|
2019-12-04 15:45:06 +01:00
|
|
|
|
state :depubliee
|
2018-05-17 15:38:49 +02:00
|
|
|
|
|
2021-04-13 18:41:49 +02:00
|
|
|
|
event :publish, before: :before_publish do
|
|
|
|
|
transitions from: :brouillon, to: :publiee, after: :after_publish
|
|
|
|
|
transitions from: :close, to: :publiee, after: :after_republish
|
|
|
|
|
transitions from: :depubliee, to: :publiee, after: :after_republish
|
2018-05-17 15:38:49 +02:00
|
|
|
|
end
|
|
|
|
|
|
2019-11-14 09:43:45 +01:00
|
|
|
|
event :close, after: :after_close do
|
|
|
|
|
transitions from: :publiee, to: :close
|
2018-05-17 15:38:49 +02:00
|
|
|
|
end
|
|
|
|
|
|
2019-12-04 15:45:06 +01:00
|
|
|
|
event :unpublish, after: :after_unpublish do
|
|
|
|
|
transitions from: :publiee, to: :depubliee
|
|
|
|
|
end
|
2018-05-17 15:38:49 +02:00
|
|
|
|
end
|
2018-05-17 15:39:37 +02:00
|
|
|
|
|
2019-07-30 16:54:43 +02:00
|
|
|
|
def publish_or_reopen!(administrateur)
|
2019-09-16 17:00:37 +02:00
|
|
|
|
Procedure.transaction do
|
|
|
|
|
if brouillon?
|
|
|
|
|
reset!
|
|
|
|
|
end
|
2019-07-30 16:54:43 +02:00
|
|
|
|
|
|
|
|
|
other_procedure = other_procedure_with_path(path)
|
|
|
|
|
if other_procedure.present? && administrateur.owns?(other_procedure)
|
2019-12-04 15:45:06 +01:00
|
|
|
|
other_procedure.unpublish!
|
2019-12-04 16:58:36 +01:00
|
|
|
|
publish!(other_procedure.canonical_procedure || other_procedure)
|
|
|
|
|
else
|
|
|
|
|
publish!
|
2019-07-30 16:54:43 +02:00
|
|
|
|
end
|
2018-09-07 18:42:12 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2018-08-13 17:49:15 +02:00
|
|
|
|
def reset!
|
2021-06-24 11:57:05 +02:00
|
|
|
|
if !locked? || draft_changed?
|
2021-03-03 18:40:53 +01:00
|
|
|
|
draft_revision.dossiers.destroy_all
|
2018-08-13 17:49:15 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2019-07-30 16:54:43 +02:00
|
|
|
|
def suggested_path(administrateur)
|
|
|
|
|
if path_customized?
|
|
|
|
|
return path
|
|
|
|
|
end
|
|
|
|
|
slug = libelle&.parameterize&.first(50)
|
|
|
|
|
suggestion = slug
|
|
|
|
|
counter = 1
|
|
|
|
|
while !path_available?(administrateur, suggestion)
|
|
|
|
|
counter = counter + 1
|
|
|
|
|
suggestion = "#{slug}-#{counter}"
|
|
|
|
|
end
|
|
|
|
|
suggestion
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def other_procedure_with_path(path)
|
|
|
|
|
Procedure.publiees
|
|
|
|
|
.where.not(id: self.id)
|
|
|
|
|
.find_by(path: path)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def path_available?(administrateur, path)
|
|
|
|
|
procedure = other_procedure_with_path(path)
|
|
|
|
|
|
2020-03-13 15:32:30 +01:00
|
|
|
|
procedure.blank? || (administrateur.owns?(procedure) && canonical_procedure_child?(procedure))
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def canonical_procedure_child?(procedure)
|
|
|
|
|
!canonical_procedure || canonical_procedure == procedure || canonical_procedure == procedure.canonical_procedure
|
2019-07-30 16:54:43 +02:00
|
|
|
|
end
|
|
|
|
|
|
2018-05-17 15:41:44 +02:00
|
|
|
|
def locked?
|
2019-12-04 15:45:06 +01:00
|
|
|
|
publiee? || close? || depubliee?
|
2018-05-17 15:41:44 +02:00
|
|
|
|
end
|
|
|
|
|
|
2021-01-20 13:21:23 +01:00
|
|
|
|
def draft_changed?
|
2022-01-12 17:38:57 +01:00
|
|
|
|
publiee? && published_revision.different_from?(draft_revision) && revision_changes.present?
|
2021-01-20 13:21:23 +01:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def revision_changes
|
|
|
|
|
published_revision.compare(draft_revision)
|
|
|
|
|
end
|
|
|
|
|
|
2019-03-27 11:43:04 +01:00
|
|
|
|
def accepts_new_dossiers?
|
2019-12-04 15:45:06 +01:00
|
|
|
|
publiee? || brouillon?
|
2019-03-27 11:43:04 +01:00
|
|
|
|
end
|
|
|
|
|
|
2019-12-04 15:45:06 +01:00
|
|
|
|
def dossier_can_transition_to_en_construction?
|
|
|
|
|
accepts_new_dossiers? || depubliee?
|
2018-05-17 15:41:44 +02:00
|
|
|
|
end
|
|
|
|
|
|
2018-10-31 13:28:39 +01:00
|
|
|
|
def expose_legacy_carto_api?
|
2018-11-27 15:53:13 +01:00
|
|
|
|
module_api_carto&.use_api_carto? && module_api_carto&.migrated?
|
2018-10-31 13:28:39 +01:00
|
|
|
|
end
|
|
|
|
|
|
2019-05-23 14:28:14 +02:00
|
|
|
|
def declarative?
|
|
|
|
|
declarative_with_state.present?
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def declarative_accepte?
|
|
|
|
|
declarative_with_state == Procedure.declarative_with_states.fetch(:accepte)
|
|
|
|
|
end
|
|
|
|
|
|
2019-12-04 12:06:51 +01:00
|
|
|
|
def self.declarative_attributes_for_select
|
|
|
|
|
declarative_with_states.map do |state, _|
|
|
|
|
|
[I18n.t("activerecord.attributes.#{model_name.i18n_key}.declarative_with_state/#{state}"), state]
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2021-03-03 18:20:34 +01:00
|
|
|
|
def feature_enabled?(feature)
|
|
|
|
|
Flipper.enabled?(feature, self)
|
|
|
|
|
end
|
|
|
|
|
|
2019-07-05 14:38:20 +02:00
|
|
|
|
def path_customized?
|
|
|
|
|
!path.match?(/[[:xdigit:]]{8}-[[:xdigit:]]{4}-[[:xdigit:]]{4}-[[:xdigit:]]{4}-[[:xdigit:]]{12}/)
|
|
|
|
|
end
|
|
|
|
|
|
2018-07-03 20:18:49 +02:00
|
|
|
|
def organisation_name
|
|
|
|
|
service&.nom || organisation
|
|
|
|
|
end
|
|
|
|
|
|
2018-03-20 17:47:37 +01:00
|
|
|
|
def self.active(id)
|
2017-07-11 15:52:06 +02:00
|
|
|
|
publiees.find(id)
|
2016-06-09 17:49:38 +02:00
|
|
|
|
end
|
|
|
|
|
|
2018-04-12 18:35:13 +02:00
|
|
|
|
def clone(admin, from_library)
|
2019-01-29 11:49:28 +01:00
|
|
|
|
is_different_admin = !admin.owns?(self)
|
2019-01-10 13:42:40 +01:00
|
|
|
|
|
2018-11-27 14:52:20 +01:00
|
|
|
|
populate_champ_stable_ids
|
2020-04-06 17:42:09 +02:00
|
|
|
|
include_list = {
|
2020-06-26 12:00:21 +02:00
|
|
|
|
draft_revision: {
|
2022-05-24 15:57:31 +02:00
|
|
|
|
revision_types_de_champ: [:type_de_champ],
|
2022-02-04 14:40:16 +01:00
|
|
|
|
attestation_template: [],
|
|
|
|
|
dossier_submitted_message: []
|
2020-06-26 12:00:21 +02:00
|
|
|
|
}
|
2020-04-06 17:42:09 +02:00
|
|
|
|
}
|
|
|
|
|
include_list[:groupe_instructeurs] = :instructeurs if !is_different_admin
|
2021-07-01 13:33:22 +02:00
|
|
|
|
procedure = self.deep_clone(include: include_list) do |original, kopy|
|
2022-04-14 12:18:46 +02:00
|
|
|
|
begin
|
|
|
|
|
PiecesJustificativesService.clone_attachments(original, kopy)
|
|
|
|
|
rescue ActiveStorage::FileNotFoundError
|
|
|
|
|
end
|
2021-07-01 13:33:22 +02:00
|
|
|
|
end
|
2019-07-04 16:15:40 +02:00
|
|
|
|
procedure.path = SecureRandom.uuid
|
2018-05-28 14:58:40 +02:00
|
|
|
|
procedure.aasm_state = :brouillon
|
2019-11-14 09:43:45 +01:00
|
|
|
|
procedure.closed_at = nil
|
2019-12-04 15:45:06 +01:00
|
|
|
|
procedure.unpublished_at = nil
|
2017-07-11 14:21:10 +02:00
|
|
|
|
procedure.published_at = nil
|
2022-04-21 17:39:03 +02:00
|
|
|
|
procedure.auto_archive_on = nil
|
2018-12-06 13:51:41 +01:00
|
|
|
|
procedure.lien_notice = nil
|
2020-07-28 16:39:32 +02:00
|
|
|
|
procedure.published_revision = nil
|
2020-06-26 12:00:21 +02:00
|
|
|
|
procedure.draft_revision.procedure = procedure
|
2019-01-10 13:43:22 +01:00
|
|
|
|
|
2019-01-29 11:49:28 +01:00
|
|
|
|
if is_different_admin
|
|
|
|
|
procedure.administrateurs = [admin]
|
2020-04-29 16:55:52 +02:00
|
|
|
|
procedure.api_entreprise_token = nil
|
2021-07-16 17:03:58 +02:00
|
|
|
|
procedure.encrypted_api_particulier_token = nil
|
2021-09-08 16:29:54 +02:00
|
|
|
|
procedure.api_particulier_scopes = []
|
2019-01-29 11:49:28 +01:00
|
|
|
|
else
|
|
|
|
|
procedure.administrateurs = administrateurs
|
|
|
|
|
end
|
|
|
|
|
|
2018-05-30 18:45:46 +02:00
|
|
|
|
procedure.initiated_mail = initiated_mail&.dup
|
|
|
|
|
procedure.received_mail = received_mail&.dup
|
|
|
|
|
procedure.closed_mail = closed_mail&.dup
|
|
|
|
|
procedure.refused_mail = refused_mail&.dup
|
|
|
|
|
procedure.without_continuation_mail = without_continuation_mail&.dup
|
2019-08-27 15:05:56 +02:00
|
|
|
|
procedure.ask_birthday = false # see issue #4242
|
2017-03-07 18:19:48 +01:00
|
|
|
|
|
2018-04-12 18:35:13 +02:00
|
|
|
|
procedure.cloned_from_library = from_library
|
2018-04-24 15:23:07 +02:00
|
|
|
|
procedure.parent_procedure = self
|
2020-02-25 13:47:44 +01:00
|
|
|
|
procedure.canonical_procedure = nil
|
2022-05-23 18:58:13 +02:00
|
|
|
|
procedure.replaced_by_procedure = nil
|
2018-04-12 18:35:13 +02:00
|
|
|
|
|
2018-06-28 11:33:10 +02:00
|
|
|
|
if from_library
|
|
|
|
|
procedure.service = nil
|
2019-01-10 13:42:40 +01:00
|
|
|
|
elsif self.service.present? && is_different_admin
|
2018-12-19 15:35:07 +01:00
|
|
|
|
procedure.service = self.service.clone_and_assign_to_administrateur(admin)
|
2018-06-28 11:33:10 +02:00
|
|
|
|
end
|
|
|
|
|
|
2019-08-21 16:33:26 +02:00
|
|
|
|
procedure.save
|
2022-05-24 15:57:31 +02:00
|
|
|
|
|
|
|
|
|
move_new_children_to_new_parent_coordinate(procedure.draft_revision)
|
2020-06-26 12:00:21 +02:00
|
|
|
|
|
|
|
|
|
if is_different_admin || from_library
|
2020-08-27 19:55:10 +02:00
|
|
|
|
procedure.draft_types_de_champ.each { |tdc| tdc.options&.delete(:old_pj) }
|
2020-06-26 12:00:21 +02:00
|
|
|
|
end
|
|
|
|
|
|
2018-01-08 15:42:38 +01:00
|
|
|
|
procedure
|
2016-06-15 11:34:05 +02:00
|
|
|
|
end
|
|
|
|
|
|
2018-01-10 17:52:43 +01:00
|
|
|
|
def whitelisted?
|
|
|
|
|
whitelisted_at.present?
|
|
|
|
|
end
|
|
|
|
|
|
2016-07-22 15:06:30 +02:00
|
|
|
|
def total_dossier
|
2017-07-10 16:11:12 +02:00
|
|
|
|
self.dossiers.state_not_brouillon.size
|
2016-07-22 15:06:30 +02:00
|
|
|
|
end
|
2017-01-26 12:12:52 +01:00
|
|
|
|
|
2020-01-15 14:57:40 +01:00
|
|
|
|
def procedure_overview(start_date, groups)
|
|
|
|
|
ProcedureOverview.new(self, start_date, groups)
|
2017-05-12 15:47:05 +02:00
|
|
|
|
end
|
2017-05-26 21:55:19 +02:00
|
|
|
|
|
2017-05-27 01:08:01 +02:00
|
|
|
|
def initiated_mail_template
|
2017-12-22 21:37:08 +01:00
|
|
|
|
initiated_mail || Mails::InitiatedMail.default_for_procedure(self)
|
2017-05-26 21:55:19 +02:00
|
|
|
|
end
|
|
|
|
|
|
2017-05-27 01:08:01 +02:00
|
|
|
|
def received_mail_template
|
2017-12-22 21:37:08 +01:00
|
|
|
|
received_mail || Mails::ReceivedMail.default_for_procedure(self)
|
2017-05-26 21:55:19 +02:00
|
|
|
|
end
|
|
|
|
|
|
2017-05-27 01:08:01 +02:00
|
|
|
|
def closed_mail_template
|
2017-12-22 21:37:08 +01:00
|
|
|
|
closed_mail || Mails::ClosedMail.default_for_procedure(self)
|
2017-05-26 21:55:19 +02:00
|
|
|
|
end
|
|
|
|
|
|
2017-05-27 01:08:01 +02:00
|
|
|
|
def refused_mail_template
|
2017-12-22 21:37:08 +01:00
|
|
|
|
refused_mail || Mails::RefusedMail.default_for_procedure(self)
|
2017-05-26 21:55:19 +02:00
|
|
|
|
end
|
|
|
|
|
|
2017-05-27 01:08:01 +02:00
|
|
|
|
def without_continuation_mail_template
|
2017-12-22 21:37:08 +01:00
|
|
|
|
without_continuation_mail || Mails::WithoutContinuationMail.default_for_procedure(self)
|
2017-05-26 21:55:19 +02:00
|
|
|
|
end
|
2017-10-02 17:03:38 +02:00
|
|
|
|
|
2021-04-29 19:10:22 +02:00
|
|
|
|
def mail_template_for(state)
|
|
|
|
|
case state
|
|
|
|
|
when Dossier.states.fetch(:en_construction)
|
|
|
|
|
initiated_mail_template
|
|
|
|
|
when Dossier.states.fetch(:en_instruction)
|
|
|
|
|
received_mail_template
|
|
|
|
|
when Dossier.states.fetch(:accepte)
|
|
|
|
|
closed_mail_template
|
|
|
|
|
when Dossier.states.fetch(:refuse)
|
|
|
|
|
refused_mail_template
|
|
|
|
|
when Dossier.states.fetch(:sans_suite)
|
|
|
|
|
without_continuation_mail_template
|
|
|
|
|
else
|
|
|
|
|
raise "Unknown dossier state: #{state}"
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2017-09-27 15:16:07 +02:00
|
|
|
|
def self.default_sort
|
|
|
|
|
{
|
|
|
|
|
'table' => 'self',
|
|
|
|
|
'column' => 'id',
|
|
|
|
|
'order' => 'desc'
|
2018-09-20 17:02:28 +02:00
|
|
|
|
}
|
2017-09-27 15:16:07 +02:00
|
|
|
|
end
|
|
|
|
|
|
2018-01-10 16:46:12 +01:00
|
|
|
|
def whitelist!
|
2021-05-27 18:50:39 +02:00
|
|
|
|
touch(:whitelisted_at)
|
2018-01-10 16:46:12 +01:00
|
|
|
|
end
|
|
|
|
|
|
2022-02-11 08:45:16 +01:00
|
|
|
|
def attestation_template
|
2022-02-02 16:10:29 +01:00
|
|
|
|
published_attestation_template || draft_attestation_template
|
|
|
|
|
end
|
|
|
|
|
|
2018-04-03 11:33:11 +02:00
|
|
|
|
def closed_mail_template_attestation_inconsistency_state
|
|
|
|
|
# As an optimization, don’t check the predefined templates (they are presumed correct)
|
|
|
|
|
if closed_mail.present?
|
2020-08-25 11:40:24 +02:00
|
|
|
|
tag_present = closed_mail.body.to_s.include?("--lien attestation--")
|
2022-02-11 08:45:16 +01:00
|
|
|
|
if attestation_template&.activated? && !tag_present
|
2018-04-03 11:33:11 +02:00
|
|
|
|
:missing_tag
|
2022-02-11 08:45:16 +01:00
|
|
|
|
elsif !attestation_template&.activated? && tag_present
|
2018-04-03 11:33:11 +02:00
|
|
|
|
:extraneous_tag
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
2018-09-18 17:50:05 +02:00
|
|
|
|
|
2018-11-27 14:52:20 +01:00
|
|
|
|
def populate_champ_stable_ids
|
2021-02-17 18:33:08 +01:00
|
|
|
|
TypeDeChamp
|
|
|
|
|
.joins(:revisions)
|
|
|
|
|
.where(procedure_revisions: { procedure_id: id }, stable_id: nil)
|
|
|
|
|
.find_each do |type_de_champ|
|
|
|
|
|
type_de_champ.update_column(:stable_id, type_de_champ.id)
|
|
|
|
|
end
|
2018-11-27 14:52:20 +01:00
|
|
|
|
end
|
|
|
|
|
|
2019-01-04 15:43:02 +01:00
|
|
|
|
def missing_steps
|
|
|
|
|
result = []
|
|
|
|
|
|
|
|
|
|
if service.nil?
|
|
|
|
|
result << :service
|
|
|
|
|
end
|
|
|
|
|
|
2019-08-21 13:53:53 +02:00
|
|
|
|
if missing_instructeurs?
|
2019-01-04 15:43:02 +01:00
|
|
|
|
result << :instructeurs
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
result
|
|
|
|
|
end
|
|
|
|
|
|
2019-05-23 14:28:14 +02:00
|
|
|
|
def process_dossiers!
|
|
|
|
|
case declarative_with_state
|
|
|
|
|
when Procedure.declarative_with_states.fetch(:en_instruction)
|
|
|
|
|
dossiers
|
|
|
|
|
.state_en_construction
|
2021-06-04 12:03:31 +02:00
|
|
|
|
.where(declarative_triggered_at: nil)
|
2019-05-23 14:28:14 +02:00
|
|
|
|
.find_each(&:passer_automatiquement_en_instruction!)
|
|
|
|
|
when Procedure.declarative_with_states.fetch(:accepte)
|
|
|
|
|
dossiers
|
|
|
|
|
.state_en_construction
|
2021-06-04 12:03:31 +02:00
|
|
|
|
.where(declarative_triggered_at: nil)
|
2019-05-23 14:28:14 +02:00
|
|
|
|
.find_each(&:accepter_automatiquement!)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2019-08-20 11:28:07 +02:00
|
|
|
|
def logo_url
|
2019-08-28 13:11:58 +02:00
|
|
|
|
if logo.attached?
|
|
|
|
|
Rails.application.routes.url_helpers.url_for(logo)
|
2019-08-20 11:28:07 +02:00
|
|
|
|
else
|
2020-12-10 21:05:42 +01:00
|
|
|
|
ActionController::Base.helpers.image_url(PROCEDURE_DEFAULT_LOGO_SRC)
|
2019-08-20 11:28:07 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2019-08-21 13:53:53 +02:00
|
|
|
|
def missing_instructeurs?
|
|
|
|
|
!AssignTo.exists?(groupe_instructeur: groupe_instructeurs)
|
|
|
|
|
end
|
|
|
|
|
|
2022-03-16 16:23:53 +01:00
|
|
|
|
def revised?
|
|
|
|
|
feature_enabled?(:procedure_revisions) && revisions.size > 2
|
|
|
|
|
end
|
|
|
|
|
|
2019-09-18 21:58:23 +02:00
|
|
|
|
def routee?
|
2021-09-18 11:22:35 +02:00
|
|
|
|
routing_enabled? || groupe_instructeurs.size > 1
|
2019-09-18 21:58:23 +02:00
|
|
|
|
end
|
|
|
|
|
|
2021-09-15 10:37:19 +02:00
|
|
|
|
def instructeurs_self_management?
|
|
|
|
|
routee? || instructeurs_self_management_enabled?
|
|
|
|
|
end
|
|
|
|
|
|
2021-03-09 11:21:30 +01:00
|
|
|
|
def defaut_groupe_instructeur_for_new_dossier
|
|
|
|
|
if !routee? || feature_enabled?(:procedure_routage_api)
|
|
|
|
|
defaut_groupe_instructeur
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2020-03-26 18:49:26 +01:00
|
|
|
|
def can_be_deleted_by_administrateur?
|
2022-01-12 11:31:05 +01:00
|
|
|
|
brouillon? || dossiers.state_en_instruction.empty?
|
2020-03-26 18:49:26 +01:00
|
|
|
|
end
|
|
|
|
|
|
2020-03-26 09:08:52 +01:00
|
|
|
|
def can_be_deleted_by_manager?
|
2020-03-26 18:49:26 +01:00
|
|
|
|
kept? && can_be_deleted_by_administrateur?
|
2020-03-26 09:08:52 +01:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def discard_and_keep_track!(author)
|
2020-03-26 18:49:26 +01:00
|
|
|
|
if brouillon?
|
|
|
|
|
reset!
|
|
|
|
|
elsif publiee?
|
|
|
|
|
close!
|
|
|
|
|
end
|
|
|
|
|
|
2022-03-09 10:27:43 +01:00
|
|
|
|
dossiers.visible_by_administration.each do |dossier|
|
|
|
|
|
dossier.hide_and_keep_track!(author, :procedure_removed)
|
2020-03-26 09:08:52 +01:00
|
|
|
|
end
|
|
|
|
|
|
2020-02-05 16:09:03 +01:00
|
|
|
|
discard!
|
|
|
|
|
end
|
|
|
|
|
|
2022-01-12 11:31:05 +01:00
|
|
|
|
def purge_discarded
|
2022-03-09 10:27:43 +01:00
|
|
|
|
if dossiers.empty?
|
2022-01-12 11:31:05 +01:00
|
|
|
|
destroy
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def self.purge_discarded
|
|
|
|
|
discarded_expired.find_each(&:purge_discarded)
|
|
|
|
|
end
|
|
|
|
|
|
2020-03-26 17:35:50 +01:00
|
|
|
|
def restore(author)
|
|
|
|
|
if discarded? && undiscard
|
2021-12-21 12:44:57 +01:00
|
|
|
|
dossiers.hidden_by_administration.find_each do |dossier|
|
2021-12-16 11:25:44 +01:00
|
|
|
|
dossier.restore(author)
|
2020-03-26 17:35:50 +01:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2022-05-10 13:59:11 +02:00
|
|
|
|
def restore_procedure
|
|
|
|
|
if discarded?
|
|
|
|
|
undiscard
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2020-03-04 15:51:33 +01:00
|
|
|
|
def flipper_id
|
|
|
|
|
"Procedure;#{id}"
|
|
|
|
|
end
|
|
|
|
|
|
2020-04-28 10:15:08 +02:00
|
|
|
|
def api_entreprise_role?(role)
|
2020-08-05 18:40:47 +02:00
|
|
|
|
APIEntrepriseToken.new(api_entreprise_token).role?(role)
|
2020-04-29 10:23:35 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def api_entreprise_token
|
|
|
|
|
self[:api_entreprise_token].presence || Rails.application.secrets.api_entreprise[:key]
|
2020-04-28 10:15:08 +02:00
|
|
|
|
end
|
|
|
|
|
|
2020-05-05 15:26:08 +02:00
|
|
|
|
def api_entreprise_token_expired?
|
2020-08-05 18:40:47 +02:00
|
|
|
|
APIEntrepriseToken.new(api_entreprise_token).expired?
|
2020-05-05 15:26:08 +02:00
|
|
|
|
end
|
|
|
|
|
|
2020-06-26 12:00:21 +02:00
|
|
|
|
def create_new_revision
|
2022-05-06 09:51:44 +02:00
|
|
|
|
new_draft = draft_revision
|
2022-05-02 10:36:16 +02:00
|
|
|
|
.deep_clone(include: [:revision_types_de_champ])
|
2021-11-23 13:27:28 +01:00
|
|
|
|
.tap(&:save!)
|
2022-05-06 09:51:44 +02:00
|
|
|
|
|
2022-05-24 15:57:31 +02:00
|
|
|
|
move_new_children_to_new_parent_coordinate(new_draft)
|
2022-05-12 09:26:43 +02:00
|
|
|
|
|
2022-05-06 09:51:44 +02:00
|
|
|
|
new_draft
|
2020-06-26 12:00:21 +02:00
|
|
|
|
end
|
|
|
|
|
|
2021-05-26 16:09:28 +02:00
|
|
|
|
def average_dossier_weight
|
|
|
|
|
if dossiers.termine.any?
|
2021-06-01 14:25:30 +02:00
|
|
|
|
dossiers_sample = dossiers.termine.limit(100)
|
2021-05-26 16:09:28 +02:00
|
|
|
|
total_size = Champ
|
|
|
|
|
.includes(piece_justificative_file_attachment: :blob)
|
2021-06-04 10:38:53 +02:00
|
|
|
|
.where(type: Champs::PieceJustificativeChamp.to_s, dossier: dossiers_sample)
|
2021-05-26 16:09:28 +02:00
|
|
|
|
.sum('active_storage_blobs.byte_size')
|
|
|
|
|
|
2021-07-06 15:00:33 +02:00
|
|
|
|
MIN_WEIGHT + total_size / dossiers_sample.length
|
2021-05-26 16:09:28 +02:00
|
|
|
|
else
|
|
|
|
|
nil
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2021-06-18 11:13:18 +02:00
|
|
|
|
def publish_revision!
|
|
|
|
|
update!(draft_revision: create_new_revision, published_revision: draft_revision)
|
|
|
|
|
published_revision.touch(:published_at)
|
2022-02-11 18:23:46 +01:00
|
|
|
|
dossiers
|
|
|
|
|
.state_not_termine
|
|
|
|
|
.find_each { |dossier| DossierRebaseJob.perform_later(dossier) }
|
2021-06-18 11:13:18 +02:00
|
|
|
|
end
|
|
|
|
|
|
2021-09-27 16:18:22 +02:00
|
|
|
|
def cnaf_enabled?
|
|
|
|
|
api_particulier_sources['cnaf'].present?
|
|
|
|
|
end
|
|
|
|
|
|
2021-11-24 17:30:35 +01:00
|
|
|
|
def dgfip_enabled?
|
|
|
|
|
api_particulier_sources['dgfip'].present?
|
|
|
|
|
end
|
|
|
|
|
|
2021-12-01 10:21:30 +01:00
|
|
|
|
def pole_emploi_enabled?
|
|
|
|
|
api_particulier_sources['pole_emploi'].present?
|
|
|
|
|
end
|
|
|
|
|
|
2021-12-15 15:25:02 +01:00
|
|
|
|
def mesri_enabled?
|
|
|
|
|
api_particulier_sources['mesri'].present?
|
|
|
|
|
end
|
|
|
|
|
|
2017-10-02 17:03:38 +02:00
|
|
|
|
private
|
|
|
|
|
|
2022-05-24 15:57:31 +02:00
|
|
|
|
def move_new_children_to_new_parent_coordinate(new_draft)
|
|
|
|
|
children = new_draft.revision_types_de_champ.where.not(parent_id: nil)
|
|
|
|
|
children.each do |child|
|
|
|
|
|
old_parent = draft_revision.revision_types_de_champ.find(child.parent_id)
|
|
|
|
|
new_parent = new_draft.revision_types_de_champ.find_by(type_de_champ_id: old_parent.type_de_champ_id)
|
|
|
|
|
child.update!(parent_id: new_parent.id)
|
|
|
|
|
end
|
|
|
|
|
new_draft.revision_types_de_champ.reload
|
|
|
|
|
end
|
|
|
|
|
|
2021-11-23 08:12:40 +01:00
|
|
|
|
def validate_for_publication?
|
|
|
|
|
validation_context == :publication || publiee?
|
|
|
|
|
end
|
|
|
|
|
|
2019-07-30 16:54:43 +02:00
|
|
|
|
def before_publish
|
2021-11-23 17:01:33 +01:00
|
|
|
|
assign_attributes(closed_at: nil, unpublished_at: nil)
|
2018-09-07 18:36:31 +02:00
|
|
|
|
end
|
|
|
|
|
|
2019-12-04 16:58:36 +01:00
|
|
|
|
def after_publish(canonical_procedure = nil)
|
2021-05-27 18:50:39 +02:00
|
|
|
|
update!(canonical_procedure: canonical_procedure, draft_revision: create_new_revision, published_revision: draft_revision)
|
|
|
|
|
touch(:published_at)
|
|
|
|
|
published_revision.touch(:published_at)
|
2021-04-13 18:41:49 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def after_republish(canonical_procedure = nil)
|
2021-05-27 18:50:39 +02:00
|
|
|
|
touch(:published_at)
|
2018-09-07 18:36:31 +02:00
|
|
|
|
end
|
|
|
|
|
|
2019-11-14 09:43:45 +01:00
|
|
|
|
def after_close
|
2021-05-27 18:50:39 +02:00
|
|
|
|
touch(:closed_at)
|
2018-09-07 18:36:31 +02:00
|
|
|
|
end
|
|
|
|
|
|
2019-12-04 15:45:06 +01:00
|
|
|
|
def after_unpublish
|
2021-05-27 18:50:39 +02:00
|
|
|
|
touch(:unpublished_at)
|
2019-12-04 15:45:06 +01:00
|
|
|
|
end
|
|
|
|
|
|
2018-06-01 11:06:12 +02:00
|
|
|
|
def update_juridique_required
|
|
|
|
|
self.juridique_required ||= (cadre_juridique.present? || deliberation.attached?)
|
|
|
|
|
true
|
|
|
|
|
end
|
|
|
|
|
|
2018-05-31 10:59:38 +02:00
|
|
|
|
def check_juridique
|
2018-06-01 10:51:04 +02:00
|
|
|
|
if juridique_required? && (cadre_juridique.blank? && !deliberation.attached?)
|
2018-05-31 10:59:38 +02:00
|
|
|
|
errors.add(:cadre_juridique, " : veuillez remplir le texte de loi ou la délibération")
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2019-01-09 16:35:06 +01:00
|
|
|
|
def ensure_path_exists
|
2019-09-16 17:00:37 +02:00
|
|
|
|
if self.path.blank?
|
2019-03-06 14:42:27 +01:00
|
|
|
|
self.path = SecureRandom.uuid
|
2019-01-09 16:35:06 +01:00
|
|
|
|
end
|
|
|
|
|
end
|
2019-08-27 15:28:02 +02:00
|
|
|
|
|
2021-03-03 11:33:10 +01:00
|
|
|
|
def ensure_defaut_groupe_instructeur
|
2019-08-27 15:28:02 +02:00
|
|
|
|
if self.groupe_instructeurs.empty?
|
2021-03-03 11:33:10 +01:00
|
|
|
|
groupe_instructeurs.create(label: GroupeInstructeur::DEFAUT_LABEL)
|
2019-08-27 15:28:02 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
2015-09-21 17:59:03 +02:00
|
|
|
|
end
|