mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
e06f3beeab
notification sent to the project author when a collaborator has confirmed his participation
36 lines
1.1 KiB
Ruby
36 lines
1.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
# ProjectUser is the relation table between a Project and an User.
|
|
# Users are collaborators to a Project, with write access if they have confirmed their participation.
|
|
class ProjectUser < ApplicationRecord
|
|
include NotifyWith::NotificationAttachedObject
|
|
|
|
belongs_to :project
|
|
belongs_to :user
|
|
|
|
before_create :generate_valid_token
|
|
after_commit :notify_project_collaborator_to_valid, on: :create
|
|
after_update :notify_project_author_when_collaborator_valid, if: :saved_change_to_is_valid?
|
|
|
|
private
|
|
|
|
def generate_valid_token
|
|
loop do
|
|
self.valid_token = SecureRandom.hex
|
|
break unless self.class.exists?(valid_token: valid_token)
|
|
end
|
|
end
|
|
|
|
def notify_project_collaborator_to_valid
|
|
NotificationCenter.call type: 'notify_project_collaborator_to_valid',
|
|
receiver: user,
|
|
attached_object: self
|
|
end
|
|
|
|
def notify_project_author_when_collaborator_valid
|
|
NotificationCenter.call type: 'notify_project_author_when_collaborator_valid',
|
|
receiver: project.author.user,
|
|
attached_object: self
|
|
end
|
|
end
|