2020-08-06 16:35:45 +02:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: avis
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# answer :text
|
|
|
|
# confidentiel :boolean default(FALSE), not null
|
|
|
|
# email :string
|
|
|
|
# introduction :text
|
|
|
|
# revoked_at :datetime
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# claimant_id :integer not null
|
|
|
|
# dossier_id :integer
|
|
|
|
# instructeur_id :integer
|
|
|
|
#
|
2017-04-25 12:09:11 +02:00
|
|
|
class Avis < ApplicationRecord
|
2018-02-28 15:46:27 +01:00
|
|
|
include EmailSanitizableConcern
|
|
|
|
|
2020-07-20 16:32:22 +02:00
|
|
|
belongs_to :dossier, inverse_of: :avis, touch: true, optional: false
|
2020-07-20 16:06:03 +02:00
|
|
|
belongs_to :instructeur, optional: true
|
2020-07-20 16:32:22 +02:00
|
|
|
belongs_to :claimant, class_name: 'Instructeur', optional: false
|
2017-04-25 17:02:54 +02:00
|
|
|
|
2019-03-01 17:16:56 +01:00
|
|
|
has_one_attached :piece_justificative_file
|
2020-03-03 12:52:35 +01:00
|
|
|
has_one_attached :introduction_file
|
2019-03-01 17:16:56 +01:00
|
|
|
|
2018-02-27 16:58:22 +01:00
|
|
|
validates :email, format: { with: Devise.email_regexp, message: "n'est pas valide" }, allow_nil: true
|
2018-09-11 09:49:33 +02:00
|
|
|
validates :claimant, presence: true
|
2020-03-16 17:55:16 +01:00
|
|
|
validates :piece_justificative_file, size: { less_than: 20.megabytes }
|
|
|
|
validates :introduction_file, size: { less_than: 20.megabytes }
|
2018-02-27 16:58:22 +01:00
|
|
|
|
2018-02-28 15:46:27 +01:00
|
|
|
before_validation -> { sanitize_email(:email) }
|
2019-08-06 11:02:54 +02:00
|
|
|
before_create :try_to_assign_instructeur
|
2017-05-02 15:37:06 +02:00
|
|
|
|
2017-08-24 16:26:57 +02:00
|
|
|
default_scope { joins(:dossier) }
|
2017-04-27 12:17:50 +02:00
|
|
|
scope :with_answer, -> { where.not(answer: nil) }
|
|
|
|
scope :without_answer, -> { where(answer: nil) }
|
2018-01-15 21:53:30 +01:00
|
|
|
scope :for_dossier, -> (dossier_id) { where(dossier_id: dossier_id) }
|
2017-05-02 13:54:57 +02:00
|
|
|
scope :by_latest, -> { order(updated_at: :desc) }
|
2017-10-05 16:10:00 +02:00
|
|
|
scope :updated_since?, -> (date) { where('avis.updated_at > ?', date) }
|
2017-04-27 12:17:50 +02:00
|
|
|
|
2018-10-31 16:09:11 +01:00
|
|
|
# The form allows subtmitting avis requests to several emails at once,
|
|
|
|
# hence this virtual attribute.
|
|
|
|
attr_accessor :emails
|
2019-08-21 09:09:20 +02:00
|
|
|
attr_accessor :invite_linked_dossiers
|
2018-10-31 16:09:11 +01:00
|
|
|
|
2017-04-25 17:02:54 +02:00
|
|
|
def email_to_display
|
2019-08-06 11:02:54 +02:00
|
|
|
instructeur&.email || email
|
2017-04-25 17:02:54 +02:00
|
|
|
end
|
2017-05-02 15:37:06 +02:00
|
|
|
|
2019-08-06 11:02:54 +02:00
|
|
|
def self.link_avis_to_instructeur(instructeur)
|
|
|
|
Avis.where(email: instructeur.email).update_all(email: nil, instructeur_id: instructeur.id)
|
2017-05-02 16:13:09 +02:00
|
|
|
end
|
2017-05-12 10:22:18 +02:00
|
|
|
|
2017-05-09 18:11:58 +02:00
|
|
|
def self.avis_exists_and_email_belongs_to_avis?(avis_id, email)
|
2018-05-30 18:45:46 +02:00
|
|
|
Avis.find_by(id: avis_id)&.email == email
|
2017-05-12 10:22:18 +02:00
|
|
|
end
|
2017-07-20 11:54:41 +02:00
|
|
|
|
2019-04-03 14:29:30 +02:00
|
|
|
def spreadsheet_columns
|
|
|
|
[
|
|
|
|
['Dossier ID', dossier_id.to_s],
|
|
|
|
['Question / Introduction', :introduction],
|
|
|
|
['Réponse', :answer],
|
|
|
|
['Créé le', :created_at],
|
2020-01-28 12:42:30 +01:00
|
|
|
['Répondu le', :updated_at],
|
|
|
|
['Instructeur', claimant&.email],
|
|
|
|
['Expert', instructeur&.email]
|
2019-04-03 14:29:30 +02:00
|
|
|
]
|
|
|
|
end
|
|
|
|
|
2020-04-20 14:47:24 +02:00
|
|
|
def procedure
|
|
|
|
dossier.procedure
|
|
|
|
end
|
|
|
|
|
2020-07-16 11:14:37 +02:00
|
|
|
def revoked?
|
|
|
|
revoked_at.present?
|
|
|
|
end
|
|
|
|
|
2020-07-21 13:14:07 +02:00
|
|
|
def revivable_by?(reviver)
|
|
|
|
revokable_by?(reviver)
|
|
|
|
end
|
|
|
|
|
2020-07-16 20:42:50 +02:00
|
|
|
def revokable_by?(revocator)
|
|
|
|
revocator.dossiers.include?(dossier) || revocator == claimant
|
|
|
|
end
|
|
|
|
|
|
|
|
def revoke_by!(revocator)
|
|
|
|
return false if !revokable_by?(revocator)
|
|
|
|
|
2020-07-16 11:14:37 +02:00
|
|
|
if answer.present?
|
|
|
|
update!(revoked_at: Time.zone.now)
|
|
|
|
else
|
|
|
|
destroy!
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-07-20 11:54:41 +02:00
|
|
|
private
|
|
|
|
|
2019-08-06 11:02:54 +02:00
|
|
|
def try_to_assign_instructeur
|
2019-10-15 17:44:59 +02:00
|
|
|
instructeur = Instructeur.by_email(email)
|
2019-08-06 11:02:54 +02:00
|
|
|
if instructeur
|
|
|
|
self.instructeur = instructeur
|
2017-07-20 16:30:11 +02:00
|
|
|
self.email = nil
|
|
|
|
end
|
|
|
|
end
|
2017-04-25 12:09:11 +02:00
|
|
|
end
|