rogueserver/api/account/login.go

70 lines
1.9 KiB
Go
Raw Normal View History

2024-04-29 14:26:46 -07:00
/*
Copyright (C) 2024 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 <http://www.gnu.org/licenses/>.
*/
2024-04-29 12:32:58 -07:00
package account
import (
"bytes"
"crypto/rand"
"database/sql"
"encoding/base64"
"fmt"
2024-05-15 11:57:58 -07:00
"net/http"
2024-04-29 12:22:27 -07:00
"github.com/pagefaultgames/rogueserver/db"
2024-05-15 11:57:58 -07:00
"github.com/pagefaultgames/rogueserver/errors"
)
type LoginResponse GenericAuthResponse
// /account/login - log into account
func Login(username, password string) (LoginResponse, error) {
2024-04-15 00:15:10 -07:00
var response LoginResponse
2024-05-15 11:57:58 -07:00
if err := validateUsernamePassword(username, password); err != nil {
return response, err
}
key, salt, err := db.FetchAccountKeySaltFromUsername(username)
if err != nil {
if err == sql.ErrNoRows {
2024-05-15 11:57:58 -07:00
return response, errors.NewHttpError(http.StatusNotFound, "account doesn't exist")
}
2024-04-15 00:15:10 -07:00
return response, err
}
if !bytes.Equal(key, deriveArgon2IDKey([]byte(password), salt)) {
2024-05-15 11:57:58 -07:00
return response, errors.NewHttpError(http.StatusUnauthorized, "password doesn't match")
}
token := make([]byte, TokenSize)
_, err = rand.Read(token)
if err != nil {
2024-04-15 00:15:10 -07:00
return response, fmt.Errorf("failed to generate token: %s", err)
}
err = db.AddAccountSession(username, token)
if err != nil {
2024-04-15 00:15:10 -07:00
return response, fmt.Errorf("failed to add account session")
}
2024-04-15 00:15:10 -07:00
response.Token = base64.StdEncoding.EncodeToString(token)
return response, nil
}