/* Copyright (C) 2024 - 2025 Pagefault Games This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . */ package account import ( "bytes" "crypto/rand" "database/sql" "encoding/base64" "errors" "fmt" ) type LoginResponse GenericAuthResponse // Interface for database operations needed for login. type LoginStore interface { FetchAccountKeySaltFromUsername(username string) (key, salt []byte, err error) AddAccountSession(username string, token []byte) error } // /account/login - log into account func Login[T LoginStore](store T, username, password string) (LoginResponse, error) { var response LoginResponse if !isValidUsername(username) { return response, fmt.Errorf("invalid username") } if len(password) < 6 { return response, fmt.Errorf("invalid password") } key, salt, err := store.FetchAccountKeySaltFromUsername(username) if err != nil { if errors.Is(err, sql.ErrNoRows) { return response, fmt.Errorf("account doesn't exist") } return response, err } if !bytes.Equal(key, deriveArgon2IDKey([]byte(password), salt)) { return response, fmt.Errorf("password doesn't match") } response.Token, err = GenerateTokenForUsername(store, username) if err != nil { return response, fmt.Errorf("failed to generate token: %s", err) } return response, nil } type GenerateTokenForUsernameStore interface { AddAccountSession(username string, token []byte) error } // GenerateTokenForUsername generates a session token and stores it using the provided DBAccountStore. func GenerateTokenForUsername[T GenerateTokenForUsernameStore](store T, username string) (string, error) { token := make([]byte, TokenSize) _, err := rand.Read(token) if err != nil { return "", fmt.Errorf("failed to generate token: %s", err) } err = store.AddAccountSession(username, token) if err != nil { return "", fmt.Errorf("failed to add account session") } return base64.StdEncoding.EncodeToString(token), nil }