demarches-normaliennes/app/models/assign_to.rb

43 lines
1.2 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2018-03-06 13:44:29 +01:00
class AssignTo < ApplicationRecord
belongs_to :instructeur, optional: false
belongs_to :groupe_instructeur, optional: false
2017-10-02 17:03:30 +02:00
has_one :procedure_presentation, dependent: :destroy
has_one :procedure, through: :groupe_instructeur
2017-10-02 17:03:30 +02:00
scope :with_email_notifications, -> { where(daily_email_notifications_enabled: true) }
def procedure_presentation_or_default_and_errors
errors = reset_procedure_presentation_if_invalid
if self.procedure_presentation.nil?
self.procedure_presentation = create_procedure_presentation!
end
[self.procedure_presentation, errors]
end
private
def reset_procedure_presentation_if_invalid
errors = begin
procedure_presentation.errors if procedure_presentation&.invalid?
rescue ActiveRecord::RecordNotFound => e
errors = ActiveModel::Errors.new(self)
errors.add(:procedure_presentation, e.message)
errors
end
if errors.present?
2021-01-28 14:49:22 +01:00
Sentry.capture_message(
"Destroying invalid ProcedurePresentation",
2024-11-06 10:52:23 +01:00
extra: { procedure_presentation_id: procedure_presentation.id, errors: errors.full_messages }
)
self.procedure_presentation = nil
end
errors
2017-10-02 17:03:30 +02:00
end
2017-04-04 15:27:04 +02:00
end