From 2c6b124664607e88ba1b992e22a7041dd2f2b807 Mon Sep 17 00:00:00 2001 From: Elizabeth Hunt Date: Sun, 31 Mar 2024 11:47:54 -0600 Subject: guestbook qol improvements --- api/guestbook.go | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) (limited to 'api/guestbook.go') diff --git a/api/guestbook.go b/api/guestbook.go index 2037e7e..7b84f45 100644 --- a/api/guestbook.go +++ b/api/guestbook.go @@ -27,8 +27,8 @@ func validateGuestbookEntry(entry *database.GuestbookEntry) []string { } messageLength := len(entry.Message) - if messageLength < 10 || messageLength > 500 { - errors = append(errors, "message must be between 10 and 500 characters") + if messageLength > 500 { + errors = append(errors, "message cannot be longer than 500 characters") } newLines := strings.Count(entry.Message, "\n") @@ -58,19 +58,17 @@ func SignGuestbookContinuation(context *RequestContext, req *http.Request, resp Name: name, Message: message, } - formErrors.Errors = append(formErrors.Errors, validateGuestbookEntry(entry)...) - if len(formErrors.Errors) > 0 { - (*context.TemplateData)["FormError"] = formErrors - return failure(context, req, resp) - } - err := verifyHCaptcha(context.Args.HcaptchaSecret, hCaptchaResponse) if err != nil { log.Println(err) - resp.WriteHeader(http.StatusBadRequest) + formErrors.Errors = append(formErrors.Errors, "hCaptcha verification failed") + } + if len(formErrors.Errors) > 0 { + (*context.TemplateData)["FormError"] = formErrors + (*context.TemplateData)["EntryForm"] = entry return failure(context, req, resp) } -- cgit v1.2.3-70-g09d2