You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
812 B
Go
39 lines
812 B
Go
package account
|
|
|
|
import (
|
|
"crypto/rand"
|
|
"fmt"
|
|
|
|
"github.com/pagefaultgames/pokerogue-server/db"
|
|
)
|
|
|
|
// /account/register - register account
|
|
func Register(username, password string) error {
|
|
if !isValidUsername(username) {
|
|
return fmt.Errorf("invalid username")
|
|
}
|
|
|
|
if len(password) < 6 {
|
|
return fmt.Errorf("invalid password")
|
|
}
|
|
|
|
uuid := make([]byte, UUIDSize)
|
|
_, err := rand.Read(uuid)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to generate uuid: %s", err)
|
|
}
|
|
|
|
salt := make([]byte, ArgonSaltSize)
|
|
_, err = rand.Read(salt)
|
|
if err != nil {
|
|
return fmt.Errorf(fmt.Sprintf("failed to generate salt: %s", err))
|
|
}
|
|
|
|
err = db.AddAccountRecord(uuid, username, deriveArgon2IDKey([]byte(password), salt), salt)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to add account record: %s", err)
|
|
}
|
|
|
|
return nil
|
|
}
|