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

54 lines
1.4 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 magic_link = magic_link_from_sign_in_or_sign_up
serve_development_magic_link magic_link
respond_to do |format|
format.html { redirect_to_session_magic_link magic_link }
format.json { head :created }
end
else
head :unprocessable_entity
end
end
def destroy
terminate_session
redirect_to_logout_url
end
private
def magic_link_from_sign_in_or_sign_up
if identity = Identity.find_by_email_address(email_address)
identity.send_magic_link
else
signup = Signup.new(email_address: email_address)
if signup.valid?(:identity_creation)
signup.create_identity if Account.accepting_signups?
end
end
end
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