Disallow empty comments
Cette révision appartient à :
Parent
d98d918301
révision
e11759a4f1
1 fichiers modifiés avec 5 ajouts et 0 suppressions
|
@ -3,6 +3,7 @@ package router
|
|||
import (
|
||||
"net/http"
|
||||
"strconv"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/ewhal/nyaa/db"
|
||||
|
@ -40,6 +41,10 @@ func PostCommentHandler(w http.ResponseWriter, r *http.Request) {
|
|||
vars := mux.Vars(r)
|
||||
id := vars["id"]
|
||||
|
||||
if strings.TrimSpace(r.FormValue("comment")) == "" {
|
||||
http.Error(w, "comment empty", 406)
|
||||
}
|
||||
|
||||
userCaptcha := captcha.Extract(r)
|
||||
if !captcha.Authenticate(userCaptcha) {
|
||||
http.Error(w, "bad captcha", 403)
|
||||
|
|
Référencer dans un nouveau ticket