discourse/app/models/invite.rb

109 lines
3.1 KiB
Ruby
Raw Normal View History

require_dependency 'trashable'
2013-02-05 14:16:51 -05:00
class Invite < ActiveRecord::Base
include Trashable
2013-02-07 10:45:24 -05:00
2013-02-05 14:16:51 -05:00
belongs_to :user
belongs_to :topic
belongs_to :invited_by, class_name: 'User'
2013-02-05 14:16:51 -05:00
has_many :topic_invites
2013-02-07 10:45:24 -05:00
has_many :topics, through: :topic_invites, source: :topic
2013-02-05 14:16:51 -05:00
validates_presence_of :email
validates_presence_of :invited_by_id
before_create do
self.invite_key ||= SecureRandom.hex
end
before_save do
self.email = Email.downcase(email)
2013-02-05 14:16:51 -05:00
end
validate :user_doesnt_already_exist
attr_accessor :email_already_exists
2013-02-07 10:45:24 -05:00
2013-02-05 14:16:51 -05:00
def user_doesnt_already_exist
@email_already_exists = false
return if email.blank?
if User.where("email = ?", Email.downcase(email)).exists?
2013-02-05 14:16:51 -05:00
@email_already_exists = true
errors.add(:email)
end
end
def redeemed?
redeemed_at.present?
end
def expired?
created_at < SiteSetting.invite_expiry_days.days.ago
end
def redeem
result = nil
Invite.transaction do
# Avoid a race condition
2013-02-07 10:45:24 -05:00
row_count = Invite.update_all('redeemed_at = CURRENT_TIMESTAMP',
['id = ? AND redeemed_at IS NULL AND created_at >= ?', id, SiteSetting.invite_expiry_days.days.ago])
2013-02-05 14:16:51 -05:00
if row_count == 1
# Create the user if we are redeeming the invite and the user doesn't exist
result = User.where(email: email).first
result ||= User.create_for_email(email, trust_level: SiteSetting.default_invitee_trust_level)
2013-02-05 14:16:51 -05:00
result.send_welcome_message = false
2013-02-07 10:45:24 -05:00
2013-02-05 14:16:51 -05:00
# If there are topic invites for private topics
topics.private_messages.each do |t|
t.topic_allowed_users.create(user_id: result.id)
end
2013-02-07 10:45:24 -05:00
# Check for other invites by the same email. Don't redeem them, but approve their
2013-02-05 14:16:51 -05:00
# topics.
Invite.where('invites.email = ? and invites.id != ?', email, id).includes(:topics).where(topics: { archetype: Archetype::private_message }).each do |i|
2013-02-05 14:16:51 -05:00
i.topics.each do |t|
t.topic_allowed_users.create(user_id: result.id)
end
end
if Invite.update_all(['user_id = ?', result.id], ['email = ?', email]) == 1
2013-02-05 14:16:51 -05:00
result.send_welcome_message = true
end
# Notify the invitee
2013-03-01 07:07:44 -05:00
invited_by.notifications.create(notification_type: Notification.types[:invitee_accepted],
data: { display_username: result.username }.to_json)
2013-02-05 14:16:51 -05:00
else
# Otherwise return the existing user
result = User.where(email: email).first
end
2013-02-07 10:45:24 -05:00
end
2013-02-05 14:16:51 -05:00
result
end
end
# == Schema Information
#
# Table name: invites
#
# id :integer not null, primary key
# invite_key :string(32) not null
# email :string(255) not null
# invited_by_id :integer not null
# user_id :integer
# redeemed_at :datetime
# created_at :datetime not null
# updated_at :datetime not null
# deleted_at :datetime
#
# Indexes
#
# index_invites_on_email_and_invited_by_id (email,invited_by_id) UNIQUE
# index_invites_on_invite_key (invite_key) UNIQUE
#