phoenix/views/pages/registration.go
Ivan R. 6d25c4e8af
feat!: migrate to net/http
With the release of Go 1.22, the standard library now has
all the necessary functions that allow us to abandon Gin.

I hope this rewrite will lower the entry barrier for new developers.
As a nice bonus, the size of the program has decreased from 20 to 15.4 MB.

To solve issue #81, request logging has been improved.
Now all errors are displayed in the logs.
2024-03-25 15:52:18 +05:00

51 lines
1.2 KiB
Go

package pages
import (
"errors"
"net/http"
"github.com/ordinary-dev/phoenix/database"
"github.com/ordinary-dev/phoenix/jwttoken"
)
func ShowRegistrationForm(w http.ResponseWriter, _ *http.Request) {
if database.CountAdmins() > 0 {
ShowError(w, http.StatusBadRequest, errors.New("at least 1 user already exists"))
return
}
Render("auth.html.tmpl", w, map[string]any{
"title": "Create an account",
"description": "To prevent other people from seeing your links, create an account.",
"button": "Create",
"formAction": "/registration",
})
}
func CreateUser(w http.ResponseWriter, r *http.Request) {
if database.CountAdmins() > 0 {
ShowError(w, http.StatusBadRequest, errors.New("at least 1 user already exists"))
return
}
// Try to create a user.
username := r.FormValue("username")
password := r.FormValue("password")
_, err := database.CreateAdmin(username, password)
if err != nil {
ShowError(w, http.StatusInternalServerError, err)
return
}
// Generate access token.
token, err := jwttoken.GetJWTToken()
if err != nil {
ShowError(w, http.StatusInternalServerError, err)
return
}
http.SetCookie(w, jwttoken.TokenToCookie(token))
// Redirect to homepage.
http.Redirect(w, r, "/", http.StatusFound)
}