Files
fizzy/app/controllers/sessions_controller.rb
T
2025-12-19 19:21:57 +01:00

48 lines
1.2 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 { head :created }
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