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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
package auth
import (
"context"
"errors"
"log/slog"
"time"
"github.com/jackc/pgx/v5"
"golang.org/x/crypto/bcrypt"
"albatross-2026-backend/account"
"albatross-2026-backend/db"
"albatross-2026-backend/fortee"
)
var ErrForteeLoginTimeout = errors.New("fortee login timeout")
const (
forteeAPITimeout = 3 * time.Second
)
type Authenticator struct {
q db.Querier
txm db.TxManager
}
func NewAuthenticator(q db.Querier, txm db.TxManager) *Authenticator {
return &Authenticator{q: q, txm: txm}
}
func (a *Authenticator) Login(
ctx context.Context,
username string,
password string,
) (int, error) {
userAuth, err := a.q.GetUserAuthByUsername(ctx, username)
if err != nil && !errors.Is(err, pgx.ErrNoRows) {
return 0, err
}
if userAuth.AuthType == "password" {
passwordHash := userAuth.PasswordHash
if passwordHash == nil {
return 0, errors.New("inconsistent data: password auth type but no password hash")
}
err := bcrypt.CompareHashAndPassword([]byte(*passwordHash), []byte(password))
if err != nil {
return 0, err
}
return int(userAuth.UserID), nil
}
return a.verifyForteeAccountOrSignup(ctx, username, password)
}
func (a *Authenticator) verifyForteeAccountOrSignup(
ctx context.Context,
username string,
password string,
) (int, error) {
canonicalizedUsername, err := verifyForteeAccount(ctx, username, password)
if err != nil {
return 0, err
}
userID, err := a.q.GetUserIDByUsername(ctx, canonicalizedUsername)
if err != nil {
if errors.Is(err, pgx.ErrNoRows) {
return a.signup(ctx, canonicalizedUsername)
}
return 0, err
}
return int(userID), nil
}
func (a *Authenticator) signup(
ctx context.Context,
username string,
) (int, error) {
var userID int32
err := a.txm.RunInTx(ctx, func(qtx db.Querier) error {
var err error
userID, err = qtx.CreateUser(ctx, username)
if err != nil {
return err
}
return qtx.CreateUserAuth(ctx, db.CreateUserAuthParams{
UserID: userID,
AuthType: "fortee",
})
})
if err != nil {
return 0, err
}
go func() {
err := account.FetchIcon(context.Background(), a.q, int(userID))
if err != nil {
slog.Error("failed to fetch icon", "error", err)
}
}()
return int(userID), nil
}
func verifyForteeAccount(ctx context.Context, username string, password string) (string, error) {
ctx, cancel := context.WithTimeout(ctx, forteeAPITimeout)
defer cancel()
canonicalizedUsername, err := fortee.Login(ctx, username, password)
if errors.Is(err, context.DeadlineExceeded) {
return "", ErrForteeLoginTimeout
}
return canonicalizedUsername, err
}
|