discourse/app/controllers/invites_controller.rb

42 lines
1.1 KiB
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
class InvitesController < ApplicationController
skip_before_filter :check_xhr, :check_restricted_access
before_filter :ensure_logged_in, only: [:destroy]
def show
invite = Invite.where(invite_key: params[:id]).first
if invite.present?
user = invite.redeem
2013-02-07 10:45:24 -05:00
if user.present?
2013-02-05 14:16:51 -05:00
log_on_user(user)
# Send a welcome message if required
user.enqueue_welcome_message('welcome_invite') if user.send_welcome_message
# We skip the access password if we come in via an invite link
cookies.permanent['_access'] = SiteSetting.access_password if SiteSetting.access_password.present?
2013-02-05 14:16:51 -05:00
topic = invite.topics.first
if topic.present?
redirect_to "#{Discourse.base_uri}#{topic.relative_url}"
2013-02-05 14:16:51 -05:00
return
end
end
end
redirect_to root_path
end
def destroy
requires_parameter(:email)
2013-02-07 10:45:24 -05:00
invite = Invite.where(invited_by_id: current_user.id, email: params[:email]).first
2013-02-05 14:16:51 -05:00
raise Discourse::InvalidParameters.new(:email) if invite.blank?
invite.trash!
2013-02-05 14:16:51 -05:00
render nothing: true
end
end