Reserved username check on signup page

face-detect
Noah Petherbridge 2023-09-09 12:26:51 -07:00
parent 618acc9f92
commit 1e7ea6830c
1 changed files with 11 additions and 0 deletions

View File

@ -5,6 +5,7 @@ import (
"net/http"
"strings"
"code.nonshy.com/nonshy/website/pkg/config"
"code.nonshy.com/nonshy/website/pkg/models"
)
@ -49,6 +50,16 @@ func UsernameCheck() http.HandlerFunc {
return
}
// Is it reserved?
for _, cmp := range config.ReservedUsernames {
if username == cmp {
SendJSON(w, http.StatusOK, Response{
Error: "That username is reserved, please choose a different username.",
})
return
}
}
// Send success response.
SendJSON(w, http.StatusOK, Response{
OK: true,