added hcaptcha
This commit is contained in:
@@ -4,10 +4,11 @@ import "tm/pkg/response"
|
||||
|
||||
// CreateContactForm represents the form for creating a new contact message
|
||||
type CreateContactForm struct {
|
||||
FullName string `json:"full_name" valid:"required,length(2|100)" example:"John Doe"`
|
||||
Email string `json:"email" valid:"required,email" example:"john.doe@example.com"`
|
||||
Phone string `json:"phone" valid:"required,length(10|20)" example:"+1234567890"`
|
||||
Message string `json:"message" valid:"required,length(10|1000)" example:"I have a question about your services"`
|
||||
FullName string `json:"full_name" valid:"required,length(2|100)" example:"John Doe"`
|
||||
Email string `json:"email" valid:"required,email" example:"john.doe@example.com"`
|
||||
Phone string `json:"phone" valid:"required,length(10|20)" example:"+1234567890"`
|
||||
Message string `json:"message" valid:"required,length(10|1000)" example:"I have a question about your services"`
|
||||
HCaptchaToken string `json:"hcaptcha_token" valid:"required" example:"P0_eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9..."`
|
||||
}
|
||||
|
||||
// UpdateContactStatusForm represents the form for updating contact status (admin only)
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
package contact
|
||||
|
||||
import (
|
||||
"tm/pkg/hcaptcha"
|
||||
"tm/pkg/response"
|
||||
|
||||
"github.com/labstack/echo/v4"
|
||||
@@ -8,13 +9,15 @@ import (
|
||||
|
||||
// Handler handles HTTP requests for contact operations
|
||||
type Handler struct {
|
||||
service Service
|
||||
service Service
|
||||
hcaptchaVerifier hcaptcha.Verifier
|
||||
}
|
||||
|
||||
// NewHandler creates a new contact handler
|
||||
func NewHandler(service Service) *Handler {
|
||||
func NewHandler(service Service, hcaptchaVerifier hcaptcha.Verifier) *Handler {
|
||||
return &Handler{
|
||||
service: service,
|
||||
service: service,
|
||||
hcaptchaVerifier: hcaptchaVerifier,
|
||||
}
|
||||
}
|
||||
|
||||
@@ -35,6 +38,17 @@ func (h *Handler) Create(c echo.Context) error {
|
||||
return response.ValidationError(c, "Invalid request data", err.Error())
|
||||
}
|
||||
|
||||
// Verify hCaptcha token
|
||||
remoteIP := c.RealIP()
|
||||
verificationResponse, err := h.hcaptchaVerifier.Verify(form.HCaptchaToken, remoteIP)
|
||||
if err != nil {
|
||||
return response.BadRequest(c, "Failed to verify hCaptcha token", "")
|
||||
}
|
||||
|
||||
if !verificationResponse.Success {
|
||||
return response.BadRequest(c, "hCaptcha verification failed", "")
|
||||
}
|
||||
|
||||
// Create contact
|
||||
contact, err := h.service.Create(c.Request().Context(), form)
|
||||
if err != nil {
|
||||
|
||||
Reference in New Issue
Block a user