Some checks failed
Build and Release / Create Release (push) Successful in 0s
Trigger Vault Plugin Rebuild / Trigger Vault Rebuild (push) Successful in 0s
Build and Release / Integration Tests (PostgreSQL) (push) Successful in 2m48s
Build and Release / Lint (push) Failing after 5m2s
Build and Release / Build Binaries (amd64, windows, windows-latest) (push) Has been skipped
Build and Release / Build Binaries (amd64, darwin, linux-latest) (push) Has been skipped
Build and Release / Build Binaries (amd64, linux, linux-latest) (push) Has been skipped
Build and Release / Build Binaries (arm64, darwin, linux-latest) (push) Has been skipped
Build and Release / Build Binaries (arm64, linux, linux-latest) (push) Has been skipped
Build and Release / Unit Tests (push) Successful in 5m37s
Go's semantic import versioning requires v2+ modules to include the major version in the module path. This enables using proper version tags (v3.x.x) instead of pseudo-versions. Updated module path: code.gitcaddy.com/server/v3
81 lines
2.2 KiB
Go
81 lines
2.2 KiB
Go
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package webauthn
|
|
|
|
import (
|
|
"context"
|
|
"encoding/binary"
|
|
"encoding/gob"
|
|
|
|
"code.gitcaddy.com/server/v3/models/auth"
|
|
user_model "code.gitcaddy.com/server/v3/models/user"
|
|
"code.gitcaddy.com/server/v3/modules/setting"
|
|
"code.gitcaddy.com/server/v3/modules/util"
|
|
|
|
"github.com/go-webauthn/webauthn/protocol"
|
|
"github.com/go-webauthn/webauthn/webauthn"
|
|
)
|
|
|
|
// WebAuthn represents the global WebAuthn instance
|
|
var WebAuthn *webauthn.WebAuthn
|
|
|
|
// Init initializes the WebAuthn instance from the config.
|
|
func Init() {
|
|
gob.Register(&webauthn.SessionData{}) // TODO: CHI-SESSION-GOB-REGISTER.
|
|
|
|
appURL, _ := protocol.FullyQualifiedOrigin(setting.AppURL)
|
|
|
|
WebAuthn = &webauthn.WebAuthn{
|
|
Config: &webauthn.Config{
|
|
RPDisplayName: setting.AppName,
|
|
RPID: setting.Domain,
|
|
RPOrigins: []string{appURL},
|
|
AuthenticatorSelection: protocol.AuthenticatorSelection{
|
|
UserVerification: protocol.VerificationDiscouraged,
|
|
},
|
|
AttestationPreference: protocol.PreferDirectAttestation,
|
|
},
|
|
}
|
|
}
|
|
|
|
// user represents an implementation of webauthn.User based on User model
|
|
type user struct {
|
|
ctx context.Context
|
|
User *user_model.User
|
|
|
|
defaultAuthFlags protocol.AuthenticatorFlags
|
|
}
|
|
|
|
var _ webauthn.User = (*user)(nil)
|
|
|
|
func NewWebAuthnUser(ctx context.Context, u *user_model.User, defaultAuthFlags ...protocol.AuthenticatorFlags) webauthn.User {
|
|
return &user{ctx: ctx, User: u, defaultAuthFlags: util.OptionalArg(defaultAuthFlags)}
|
|
}
|
|
|
|
// WebAuthnID implements the webauthn.User interface
|
|
func (u *user) WebAuthnID() []byte {
|
|
id := make([]byte, 8)
|
|
binary.PutVarint(id, u.User.ID)
|
|
return id
|
|
}
|
|
|
|
// WebAuthnName implements the webauthn.User interface
|
|
func (u *user) WebAuthnName() string {
|
|
return util.IfZero(u.User.LoginName, u.User.Name)
|
|
}
|
|
|
|
// WebAuthnDisplayName implements the webauthn.User interface
|
|
func (u *user) WebAuthnDisplayName() string {
|
|
return u.User.DisplayName()
|
|
}
|
|
|
|
// WebAuthnCredentials implements the webauthn.User interface
|
|
func (u *user) WebAuthnCredentials() []webauthn.Credential {
|
|
dbCreds, err := auth.GetWebAuthnCredentialsByUID(u.ctx, u.User.ID)
|
|
if err != nil {
|
|
return nil
|
|
}
|
|
return dbCreds.ToCredentials(u.defaultAuthFlags)
|
|
}
|