2015-05-05 03:10:25 +02:00
|
|
|
class ProjectUser < ActiveRecord::Base
|
|
|
|
include NotifyWith::NotificationAttachedObject
|
|
|
|
|
|
|
|
belongs_to :project
|
|
|
|
belongs_to :user
|
|
|
|
|
|
|
|
before_create :generate_valid_token
|
2016-03-23 18:39:41 +01:00
|
|
|
after_commit :notify_project_collaborator_to_valid, on: :create
|
2020-03-24 16:45:27 +01:00
|
|
|
after_update :notify_project_author_when_collaborator_valid, if: :saved_change_to_is_valid?
|
2015-05-05 03:10:25 +02:00
|
|
|
|
|
|
|
private
|
|
|
|
def generate_valid_token
|
|
|
|
begin
|
|
|
|
self.valid_token = SecureRandom.hex
|
|
|
|
end while self.class.exists?(valid_token: valid_token)
|
|
|
|
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,
|
|
|
|
attached_object: self
|
|
|
|
end
|
|
|
|
end
|