Captcha Gateway Toolkit

This commit is contained in:
LittleSheep 2025-03-22 19:50:40 +08:00
parent 62dcbbf424
commit e670724c4c

19
pkg/nex/captcha.go Normal file
View File

@ -0,0 +1,19 @@
package nex
import (
"context"
"git.solsynth.dev/hypernet/nexus/pkg/proto"
)
func (v *Conn) ValidateCaptcha(token, ip string) bool {
client := proto.NewCaptchaServiceClient(v.nexusConn)
resp, err := client.CheckCaptcha(context.Background(), &proto.CheckCaptchaRequest{
Token: token,
RemoteIp: ip,
})
if err != nil {
return false
}
return resp.GetIsValid()
}