FIX: invite link should not auto-accept invitation if user is already logged in

This commit is contained in:
Arpit Jalan 2016-02-23 19:03:12 +05:30 committed by Robin Ward
parent 8dad58ba78
commit 9de5c340b0
4 changed files with 27 additions and 0 deletions

View file

@ -6,6 +6,7 @@ class InvitesController < ApplicationController
before_filter :ensure_logged_in, only: [:destroy, :create, :create_invite_link, :resend_invite, :check_csv_chunk, :upload_csv_chunk] before_filter :ensure_logged_in, only: [:destroy, :create, :create_invite_link, :resend_invite, :check_csv_chunk, :upload_csv_chunk]
before_filter :ensure_new_registrations_allowed, only: [:show, :redeem_disposable_invite] before_filter :ensure_new_registrations_allowed, only: [:show, :redeem_disposable_invite]
before_filter :ensure_not_logged_in, only: [:show, :redeem_disposable_invite]
def show def show
invite = Invite.find_by(invite_key: params[:id]) invite = Invite.find_by(invite_key: params[:id])
@ -195,4 +196,12 @@ class InvitesController < ApplicationController
false false
end end
end end
def ensure_not_logged_in
if current_user
flash[:error] = I18n.t("login.already_logged_in", current_user: current_user.username)
render layout: 'no_ember'
false
end
end
end end

View file

@ -0,0 +1,7 @@
<div id='simple-container'>
<%if flash[:error]%>
<div class='alert alert-error'>
<%=flash[:error]%>
</div>
<%end%>
</div>

View file

@ -1386,6 +1386,7 @@ en:
reserved_username: "That username is not allowed." reserved_username: "That username is not allowed."
missing_user_field: "You have not completed all the user fields" missing_user_field: "You have not completed all the user fields"
close_window: "Authentication is complete. Close this window to continue." close_window: "Authentication is complete. Close this window to continue."
already_logged_in: "Oops, looks like you are attempting to accept an invitation for another user. If you are not %{current_user}, please log out and try again?"
user: user:
no_accounts_associated: "No accounts associated" no_accounts_associated: "No accounts associated"

View file

@ -218,6 +218,16 @@ describe InvitesController do
end end
end end
context 'user is already logged in' do
let!(:user) { log_in }
let(:topic) { Fabricate(:topic) }
let(:invite) { topic.invite_by_email(topic.user, "iceking@adventuretime.ooo") }
it "doesn't redeem the invite" do
Invite.any_instance.stubs(:redeem).never
get :show, id: invite.invite_key
end
end
end end
context '.create_disposable_invite' do context '.create_disposable_invite' do