51 lines
1.3 KiB
Ruby
51 lines
1.3 KiB
Ruby
class SessionsController < ApplicationController
|
|
disallow_account_scope
|
|
require_unauthenticated_access except: :destroy
|
|
rate_limit to: 10, within: 3.minutes, only: :create, with: :rate_limit_exceeded
|
|
|
|
layout "public"
|
|
|
|
def new
|
|
end
|
|
|
|
def create
|
|
if identity = Identity.find_by_email_address(email_address)
|
|
magic_link = identity.send_magic_link
|
|
else
|
|
signup = Signup.new(email_address: email_address)
|
|
if signup.valid?(:identity_creation)
|
|
magic_link = signup.create_identity if Account.accepting_signups?
|
|
else
|
|
head :unprocessable_entity
|
|
return
|
|
end
|
|
end
|
|
|
|
respond_to do |format|
|
|
format.html { redirect_to_session_magic_link magic_link }
|
|
format.json do
|
|
response.set_header("X-Magic-Link-Code", magic_link&.code) if Rails.env.development? && magic_link
|
|
head :created
|
|
end
|
|
end
|
|
end
|
|
|
|
def destroy
|
|
terminate_session
|
|
redirect_to_logout_url
|
|
end
|
|
|
|
private
|
|
def email_address
|
|
params.expect(:email_address)
|
|
end
|
|
|
|
def rate_limit_exceeded
|
|
rate_limit_exceeded_message = "Try again later."
|
|
respond_to do |format|
|
|
format.html { redirect_to new_session_path, alert: rate_limit_exceeded_message }
|
|
format.json { render json: { message: rate_limit_exceeded_message }, status: :too_many_requests }
|
|
end
|
|
end
|
|
end
|