You've already forked nyx
mirror of
https://github.com/rls-moe/nyx
synced 2025-08-19 06:18:38 +00:00
ignore captcha when creatig new thread
This commit is contained in:
@@ -2,12 +2,14 @@ package board
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"net/http"
|
||||||
|
|
||||||
"github.com/pressly/chi"
|
"github.com/pressly/chi"
|
||||||
"github.com/tidwall/buntdb"
|
"github.com/tidwall/buntdb"
|
||||||
|
"go.rls.moe/nyx/config"
|
||||||
"go.rls.moe/nyx/http/errw"
|
"go.rls.moe/nyx/http/errw"
|
||||||
"go.rls.moe/nyx/http/middle"
|
"go.rls.moe/nyx/http/middle"
|
||||||
"go.rls.moe/nyx/resources"
|
"go.rls.moe/nyx/resources"
|
||||||
"net/http"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func handleNewThread(w http.ResponseWriter, r *http.Request) {
|
func handleNewThread(w http.ResponseWriter, r *http.Request) {
|
||||||
@@ -22,12 +24,14 @@ func handleNewThread(w http.ResponseWriter, r *http.Request) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if !resources.VerifyCaptcha(r) {
|
if middle.GetConfig(r).Captcha.Mode != config.CaptchaDisabled {
|
||||||
http.Redirect(w, r,
|
if !resources.VerifyCaptcha(r) {
|
||||||
fmt.Sprintf("/%s/board.html?err=wrong_captcha",
|
http.Redirect(w, r,
|
||||||
chi.URLParam(r, "board")),
|
fmt.Sprintf("/%s/board.html?err=wrong_captcha",
|
||||||
http.StatusSeeOther)
|
chi.URLParam(r, "board")),
|
||||||
return
|
http.StatusSeeOther)
|
||||||
|
return
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var thread = &resources.Thread{}
|
var thread = &resources.Thread{}
|
||||||
|
Reference in New Issue
Block a user