mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 05:59:39 +08:00
0af6c5efdc
This is part 1 of 3, split up of PR #23529. This PR refactors the webauthn code to support passkey authentication/registration. Passkeys aren't used yet, that is coming in PRs 2 and 3. Co-authored-by: Alan Guo Xiang Tan <gxtan1990@gmail.com>
23 lines
485 B
Ruby
23 lines
485 B
Ruby
# frozen_string_literal: true
|
|
module DiscourseWebauthn
|
|
class ChallengeGenerator
|
|
class ChallengeSession
|
|
attr_reader :challenge
|
|
|
|
def initialize(params)
|
|
@challenge = params[:challenge]
|
|
end
|
|
|
|
def commit_to_session(secure_session, user)
|
|
secure_session[DiscourseWebauthn.session_challenge_key(user)] = @challenge
|
|
|
|
self
|
|
end
|
|
end
|
|
|
|
def self.generate
|
|
ChallengeSession.new(challenge: SecureRandom.hex(30))
|
|
end
|
|
end
|
|
end
|