forked from tomichj/invitation
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinvite.rb
42 lines (34 loc) · 1.31 KB
/
invite.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# An invitation, tracks the sender and recipient, and what the recipient is invited to.
# Generates a unique token for each invitation. The token is used in the invite url
# to (more) securely identify the invite when a new user clicks to register.
#
class Invite < ActiveRecord::Base
belongs_to :invitable, polymorphic: true
belongs_to :sender, class_name: Invitation.configuration.user_model_class_name
# Rails >= 5 makes belongs_to association required by default
if Rails::VERSION::MAJOR >= 5
belongs_to :recipient, class_name: Invitation.configuration.user_model_class_name, optional: true
else
belongs_to :recipient, class_name: Invitation.configuration.user_model_class_name
end
before_create :generate_token
before_save :set_email_case, on: :create
before_save :check_recipient_existence
validates :email, presence: true
validates :invitable, presence: true
validates :sender, presence: true
def existing_user?
recipient != nil
end
def generate_token
self.token = SecureRandom.hex(20).encode('UTF-8')
end
def check_recipient_existence
recipient = Invitation.configuration.user_model.find_by_email(email)
self.recipient_id = recipient.id if recipient
end
private
def set_email_case
email.downcase! unless Invitation.configuration.case_sensitive_email
end
end