#73 setup password hashing with argin2id and update some infra
Some checks failed
Build Docker Image / Explore-Gitea-Actions (push) Failing after 59s

This commit is contained in:
Tim
2024-08-10 00:14:38 +02:00
parent 2f1b4fc8a7
commit 0df0e7f6f9
15 changed files with 139 additions and 344 deletions

49
api/controller/auth.go Normal file
View File

@@ -0,0 +1,49 @@
package controller
import (
"crypto/rand"
"database/sql"
"encoding/base64"
"log"
"net/http"
"github.com/google/uuid"
"golang.org/x/crypto/argon2"
)
func PostSignup(db *sql.DB) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
// metrics.WithLabelValues("new").Inc()
var email = r.FormValue("email")
var password = r.FormValue("password")
if email == "" || password == "" {
http.Error(w, "Missing required fields", http.StatusBadRequest)
return
}
salt := make([]byte, 16)
rand.Read(salt)
hash := argon2.IDKey([]byte(password), salt, 1, 64*1024, 1, 16)
hashStr := base64.StdEncoding.EncodeToString(hash)
user_uuid, err := uuid.NewRandom()
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
log.Printf("Could not generate UUID: %v", err)
return
}
_, err = db.Exec("INSERT INTO user (user_uuid, email, email_verified, is_admin, password, salt, created_at) VALUES (?, ?, FALSE, FALSE, ?, ?, CURRENT_DATE)", user_uuid, email, hash, salt)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
log.Printf("Could not insert user: %v", err)
return
}
w.WriteHeader(http.StatusCreated)
w.Write([]byte(hashStr))
}
}