614527e9c2
The magic link verification endpoint now returns `requires_signup_completion` to indicate whether the client needs to collect a name and complete signup. The signup completion endpoint now supports JSON responses with the account ID. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
90 lines
2.7 KiB
Ruby
90 lines
2.7 KiB
Ruby
class Sessions::MagicLinksController < ApplicationController
|
|
disallow_account_scope
|
|
require_unauthenticated_access
|
|
rate_limit to: 10, within: 15.minutes, only: :create, with: :rate_limit_exceeded
|
|
before_action :ensure_that_email_address_pending_authentication_exists
|
|
|
|
layout "public"
|
|
|
|
def show
|
|
end
|
|
|
|
def create
|
|
if magic_link = MagicLink.consume(code)
|
|
authenticate magic_link
|
|
else
|
|
invalid_code
|
|
end
|
|
end
|
|
|
|
private
|
|
def ensure_that_email_address_pending_authentication_exists
|
|
unless email_address_pending_authentication.present?
|
|
alert_message = "Enter your email address to sign in."
|
|
respond_to do |format|
|
|
format.html { redirect_to new_session_path, alert: alert_message }
|
|
format.json { render json: { message: alert_message }, status: :unauthorized }
|
|
end
|
|
end
|
|
end
|
|
|
|
def code
|
|
params.expect(:code)
|
|
end
|
|
|
|
def authenticate(magic_link)
|
|
if ActiveSupport::SecurityUtils.secure_compare(email_address_pending_authentication || "", magic_link.identity.email_address)
|
|
sign_in magic_link
|
|
else
|
|
email_address_mismatch
|
|
end
|
|
end
|
|
|
|
def sign_in(magic_link)
|
|
clear_pending_authentication_token
|
|
start_new_session_for magic_link.identity
|
|
|
|
respond_to do |format|
|
|
format.html { redirect_to after_sign_in_url(magic_link) }
|
|
format.json { render json: { session_token: session_token, requires_signup_completion: requires_signup_completion?(magic_link) } }
|
|
end
|
|
end
|
|
|
|
def email_address_mismatch
|
|
clear_pending_authentication_token
|
|
alert_message = "Something went wrong. Please try again."
|
|
|
|
respond_to do |format|
|
|
format.html { redirect_to new_session_path, alert: alert_message }
|
|
format.json { render json: { message: alert_message }, status: :unauthorized }
|
|
end
|
|
end
|
|
|
|
def invalid_code
|
|
respond_to do |format|
|
|
format.html { redirect_to session_magic_link_path, flash: { shake: true } }
|
|
format.json { render json: { message: "Try another code." }, status: :unauthorized }
|
|
end
|
|
end
|
|
|
|
def after_sign_in_url(magic_link)
|
|
if requires_signup_completion?(magic_link)
|
|
new_signup_completion_path
|
|
else
|
|
after_authentication_url
|
|
end
|
|
end
|
|
|
|
def rate_limit_exceeded
|
|
rate_limit_exceeded_message = "Try again in 15 minutes."
|
|
respond_to do |format|
|
|
format.html { redirect_to session_magic_link_path, alert: rate_limit_exceeded_message }
|
|
format.json { render json: { message: rate_limit_exceeded_message }, status: :too_many_requests }
|
|
end
|
|
end
|
|
|
|
def requires_signup_completion?(magic_link)
|
|
magic_link.for_sign_up?
|
|
end
|
|
end
|