blob: 6b135dcbbc0eeceb1de35d2e6cbf204d72ae978a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
package session
import (
"net"
"time"
"github.com/fasthttp/session/v2"
"github.com/go-webauthn/webauthn/webauthn"
"github.com/authelia/authelia/v4/internal/authorization"
)
// ProviderConfig is the configuration used to create the session provider.
type ProviderConfig struct {
config session.Config
providerName string
}
// UserSession is the structure representing the session of a user.
type UserSession struct {
CookieDomain string
Username string
DisplayName string
// TODO(c.michaud): move groups out of the session.
Groups []string
Emails []string
KeepMeLoggedIn bool
LastActivity int64
FirstFactorAuthnTimestamp int64
SecondFactorAuthnTimestamp int64
AuthenticationMethodRefs authorization.AuthenticationMethodsReferences
// WebAuthn holds the session registration data for this session.
WebAuthn *WebAuthn
TOTP *TOTP
// This boolean is set to true after identity verification and checked
// while doing the query actually updating the password.
PasswordResetUsername *string
RefreshTTL time.Time
Elevations Elevations
}
// TOTP holds the TOTP registration session data.
type TOTP struct {
Issuer string
Algorithm string
Digits uint32
Period uint
Secret string
Expires time.Time
}
// WebAuthn holds the standard WebAuthn session data plus some extra.
type WebAuthn struct {
*webauthn.SessionData
Description string `json:"description"`
}
// Identity of the user who is being verified.
type Identity struct {
Username string
Email string
DisplayName string
}
// Elevations describes various session elevations.
type Elevations struct {
User *Elevation
}
// Elevation is an individual elevation.
type Elevation struct {
ID int
RemoteIP net.IP
Expires time.Time
}
|