demarches-normaliennes/app/services/commentaire_service.rb

43 lines
1.5 KiB
Ruby
Raw Normal View History

class CommentaireService
class << self
def build(sender, dossier, params)
case sender
when Instructeur
params[:instructeur] = sender
when Expert
params[:expert] = sender
end
build_with_email(sender.email, dossier, params)
end
def build_with_email(email, dossier, params)
attributes = params.merge(email: email, dossier: dossier)
# For some reason ActiveStorage trows an error in tests if we passe an empty string here.
# I suspect it could be resolved in rails 6 by using explicit `attach()`
if attributes[:piece_jointe].blank?
attributes.delete(:piece_jointe)
end
Commentaire.new(attributes)
end
def soft_delete(user, params)
commentaire = Dossier.find(params[:dossier_id])
2021-11-15 14:17:57 +01:00
.commentaires
.find(params[:id])
if commentaire.sent_by?(user)
2021-11-15 14:17:57 +01:00
commentaire.piece_jointe.purge_later if commentaire.piece_jointe.attached?
commentaire.update!(body: I18n.t('views.shared.commentaires.destroy.deleted_body'),
deleted_at: Time.zone.now)
OpenStruct.new(status: true)
else
OpenStruct.new(status: false,
error_message: I18n.t('views.shared.commentaires.destroy.alert_reasons.acl'))
end
rescue ActiveRecord::RecordNotFound => e
return OpenStruct.new(status: false,
error_message: I18n.t('views.shared.commentaires.destroy.alert_reasons.ar_not_found', model_name: e.model.humanize))
end
end
end