2022-03-03 11:20:43 +00:00
|
|
|
package handlers
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/url"
|
2023-01-07 03:21:27 +00:00
|
|
|
"strings"
|
2022-03-03 11:20:43 +00:00
|
|
|
|
2022-03-03 23:46:38 +00:00
|
|
|
"github.com/go-webauthn/webauthn/protocol"
|
|
|
|
"github.com/go-webauthn/webauthn/webauthn"
|
2022-03-03 11:20:43 +00:00
|
|
|
|
|
|
|
"github.com/authelia/authelia/v4/internal/middlewares"
|
2022-03-06 05:47:40 +00:00
|
|
|
"github.com/authelia/authelia/v4/internal/model"
|
2022-03-03 11:20:43 +00:00
|
|
|
"github.com/authelia/authelia/v4/internal/session"
|
|
|
|
)
|
|
|
|
|
2023-02-11 15:47:03 +00:00
|
|
|
func getWebauthnUser(ctx *middlewares.AutheliaCtx, userSession session.UserSession) (user *model.WebauthnUser, err error) {
|
|
|
|
return getWebauthnUserByRPID(ctx, userSession, "")
|
|
|
|
}
|
|
|
|
|
|
|
|
func getWebauthnUserByRPID(ctx *middlewares.AutheliaCtx, userSession session.UserSession, rpid string) (user *model.WebauthnUser, err error) {
|
2022-03-06 05:47:40 +00:00
|
|
|
user = &model.WebauthnUser{
|
2022-03-03 11:20:43 +00:00
|
|
|
Username: userSession.Username,
|
|
|
|
DisplayName: userSession.DisplayName,
|
|
|
|
}
|
|
|
|
|
|
|
|
if user.DisplayName == "" {
|
|
|
|
user.DisplayName = user.Username
|
|
|
|
}
|
|
|
|
|
2023-02-11 15:47:03 +00:00
|
|
|
if user.Devices, err = ctx.Providers.StorageProvider.LoadWebauthnDevicesByUsername(ctx, rpid, userSession.Username); err != nil {
|
2022-03-03 11:20:43 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return user, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func newWebauthn(ctx *middlewares.AutheliaCtx) (w *webauthn.WebAuthn, err error) {
|
|
|
|
var (
|
2023-02-11 15:47:03 +00:00
|
|
|
origin *url.URL
|
2022-03-03 11:20:43 +00:00
|
|
|
)
|
|
|
|
|
2023-02-11 15:47:03 +00:00
|
|
|
if origin, err = ctx.GetOrigin(); err != nil {
|
2022-03-03 11:20:43 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
config := &webauthn.Config{
|
|
|
|
RPDisplayName: ctx.Configuration.Webauthn.DisplayName,
|
2023-02-11 15:47:03 +00:00
|
|
|
RPID: origin.Hostname(),
|
|
|
|
RPOrigins: []string{origin.String()},
|
2022-03-03 11:20:43 +00:00
|
|
|
RPIcon: "",
|
|
|
|
|
|
|
|
AttestationPreference: ctx.Configuration.Webauthn.ConveyancePreference,
|
|
|
|
AuthenticatorSelection: protocol.AuthenticatorSelection{
|
|
|
|
AuthenticatorAttachment: protocol.CrossPlatform,
|
|
|
|
UserVerification: ctx.Configuration.Webauthn.UserVerification,
|
2022-03-03 23:46:38 +00:00
|
|
|
RequireResidentKey: protocol.ResidentKeyNotRequired(),
|
2022-03-03 11:20:43 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
Timeout: int(ctx.Configuration.Webauthn.Timeout.Milliseconds()),
|
|
|
|
}
|
|
|
|
|
2023-01-07 03:21:27 +00:00
|
|
|
ctx.Logger.Tracef("Creating new Webauthn RP instance with ID %s and Origins %s", config.RPID, strings.Join(config.RPOrigins, ", "))
|
2022-03-03 11:20:43 +00:00
|
|
|
|
|
|
|
return webauthn.New(config)
|
|
|
|
}
|