017bcc9ce1
- Fix indentation - Split awkward initializer into separate methods - Rename credentials to passkeys - Simplify authenticator registry loading - Flatten nested errors under ActionPack::WebAuthn - Set passkey current params only requests that use it - Inline anemic methods - Replace custom validation with ActiveModel::Validation - Rename identity to holder in Passkey - Rename credentials to passkeys in JS - Extract framework library out of controllers - Pass params hashes down to ActionPack - Attempt to simplify public interface - Push data decoding down to the classes representing the data - Introduce has_passkeys - Add CBOR bigint support - Rename ActionPack::WebAuthn::Passkey to ActionPack::Passkey - Add create_passkey_button helper - Rename public-key to creation-options - Add sign_in_with_passkey_button helper - Dispatch events for the whole Passkey lifecycle - Add ED25519 support - Prevent crash on missing meta tag - Validate resident key options - Don't clobber existing ActionPack config options - Validate cryptographic params - Move CurrentWebAuthnRequest into ActionPack::Passkey - Use ActiveModel::Attributes for Options objects - Implement expiring challanges - Add lifecycle events - Extract param helpers into Request - Add passkey_creation_options and passkey_request_options helpers - Add create_passkey_challenge to make it easier to override the create method if needed - Prefix all view helpers with passkey_ - Auto-include ActionPack::Passkey::Holder - Make the passkey challange url configurable - Add a reminder about Passkeys to the magic link email
74 lines
2.0 KiB
Ruby
74 lines
2.0 KiB
Ruby
class SessionsController < ApplicationController
|
|
include ActionPack::Passkey::Request
|
|
|
|
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
|
|
@request_options = passkey_request_options
|
|
end
|
|
|
|
def create
|
|
if identity = Identity.find_by(email_address: email_address)
|
|
sign_in identity
|
|
elsif Account.accepting_signups?
|
|
sign_up
|
|
else
|
|
redirect_to_fake_session_magic_link email_address
|
|
end
|
|
end
|
|
|
|
def destroy
|
|
terminate_session
|
|
|
|
respond_to do |format|
|
|
format.html { redirect_to_logout_url }
|
|
format.json { head :no_content }
|
|
end
|
|
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)
|
|
signup.create_identity if signup.valid?(:identity_creation) && Account.accepting_signups?
|
|
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
|
|
|
|
def sign_in(identity)
|
|
redirect_to_session_magic_link identity.send_magic_link
|
|
end
|
|
|
|
def sign_up
|
|
signup = Signup.new(email_address: email_address)
|
|
|
|
if signup.valid?(:identity_creation)
|
|
magic_link = signup.create_identity
|
|
redirect_to_session_magic_link magic_link
|
|
else
|
|
respond_to do |format|
|
|
format.html { redirect_to new_session_path, alert: "Something went wrong" }
|
|
format.json { render json: { message: "Something went wrong" }, status: :unprocessable_entity }
|
|
end
|
|
end
|
|
end
|
|
end
|