Skip to content

Commit 5efd018

Browse files
committed
update otp
1 parent f56f705 commit 5efd018

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

internal/http/server/handlers/v1/auth.go

+6-6
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ type signInGoogleRequest struct {
3131
Token string `json:"google_token" validate:"required"`
3232
}
3333

34-
type otpEmailGetRequest struct {
34+
type otpEmailSendRequest struct {
3535
Email string `json:"email" validate:"required,email,max=191"`
3636
}
3737

38-
type otpEmailValidateRequest struct {
38+
type otpEmailVerifyRequest struct {
3939
Email string `json:"email" validate:"required,email,max=191"`
4040
Otp string `json:"otp" validate:"required"`
4141
}
@@ -112,9 +112,9 @@ func AuthSignUp(ctr *container.Container) echo.HandlerFunc {
112112
}
113113
}
114114

115-
func AuthOtpEmailGenerate(ctr *container.Container) echo.HandlerFunc {
115+
func AuthOtpEmailSend(ctr *container.Container) echo.HandlerFunc {
116116
return func(ctx echo.Context) error {
117-
var r otpEmailGetRequest
117+
var r otpEmailSendRequest
118118
if err := ctx.Bind(&r); err != nil {
119119
return ctx.JSON(http.StatusBadRequest, map[string]string{
120120
"message": "Cannot parse the request body.",
@@ -134,9 +134,9 @@ func AuthOtpEmailGenerate(ctr *container.Container) echo.HandlerFunc {
134134
}
135135
}
136136

137-
func AuthOtpEmailSubmit(ctr *container.Container) echo.HandlerFunc {
137+
func AuthOtpEmailVerify(ctr *container.Container) echo.HandlerFunc {
138138
return func(ctx echo.Context) error {
139-
var r otpEmailValidateRequest
139+
var r otpEmailVerifyRequest
140140
if err := ctx.Bind(&r); err != nil {
141141
return ctx.JSON(http.StatusBadRequest, map[string]string{
142142
"message": "Cannot parse the request body.",

internal/http/server/routes.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ func (s *Server) registerRoutes() {
2323
public.POST("auth/sign-in/email", v1.AuthSignInEmail(s.container))
2424
public.POST("auth/sign-in/username", v1.AuthSignInUsername(s.container))
2525
public.POST("auth/sign-in/google", v1.AuthSignInGoogle(s.container))
26-
public.POST("auth/otp/email/generate", v1.AuthOtpEmailGenerate(s.container))
27-
public.POST("auth/otp/email/submit", v1.AuthOtpEmailSubmit(s.container))
26+
public.POST("auth/otp/email/send", v1.AuthOtpEmailSend(s.container))
27+
public.POST("auth/otp/email/verify", v1.AuthOtpEmailVerify(s.container))
2828
}
2929

3030
private := v1Api.Group("/", mw.Authorize(s.container))

internal/mailer/mailer.go

+2
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,9 @@ func (m *Mailer) SendOtp(to, otp string) {
4848
message := strings.Join([]string{
4949
"Dear user,",
5050
"Your One-Time Password (OTP) for accessing your account is:",
51+
"",
5152
otp,
53+
"",
5254
"Please enter this code within the next 3 minutes to complete your verification process.",
5355
"For your security, do not share this code with anyone.",
5456
"If you did not request this code, please ignore this email.",

0 commit comments

Comments
 (0)