Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

Disallow empty comments

Cette révision appartient à :
sfan5 2017-05-10 22:09:17 +02:00
Parent d98d918301
révision e11759a4f1

Voir le fichier

@ -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)