68 lines
1.5 KiB
Go
68 lines
1.5 KiB
Go
|
|
package authhttp
|
||
|
|
|
||
|
|
import (
|
||
|
|
"net/http"
|
||
|
|
|
||
|
|
domain "github.com/ardeman/project-legalgo-go/internal/domain/auth"
|
||
|
|
serviceauth "github.com/ardeman/project-legalgo-go/internal/services/auth"
|
||
|
|
"github.com/ardeman/project-legalgo-go/internal/utilities/response"
|
||
|
|
"github.com/ardeman/project-legalgo-go/internal/utilities/utils"
|
||
|
|
"github.com/go-chi/chi/v5"
|
||
|
|
"github.com/go-playground/validator/v10"
|
||
|
|
)
|
||
|
|
|
||
|
|
func LoginStaff(
|
||
|
|
router chi.Router,
|
||
|
|
authSvc serviceauth.LoginStaffIntf,
|
||
|
|
validate *validator.Validate,
|
||
|
|
) {
|
||
|
|
router.Post("/staff/login", func(w http.ResponseWriter, r *http.Request) {
|
||
|
|
ctx := r.Context()
|
||
|
|
|
||
|
|
var request domain.StaffLoginReq
|
||
|
|
|
||
|
|
if err := utils.UnmarshalBody(r, &request); err != nil {
|
||
|
|
response.ResponseWithErrorCode(
|
||
|
|
ctx,
|
||
|
|
w,
|
||
|
|
err,
|
||
|
|
response.ErrBadRequest.Code,
|
||
|
|
response.ErrBadRequest.HttpCode,
|
||
|
|
"failed to unmarshal request",
|
||
|
|
)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
|
||
|
|
if err := validate.Struct(request); err != nil {
|
||
|
|
response.ResponseWithErrorCode(
|
||
|
|
ctx,
|
||
|
|
w,
|
||
|
|
err,
|
||
|
|
response.ErrBadRequest.Code,
|
||
|
|
response.ErrBadRequest.HttpCode,
|
||
|
|
err.(validator.ValidationErrors).Error(),
|
||
|
|
)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
|
||
|
|
token, err := authSvc.LoginAsStaff(request.Email)
|
||
|
|
if err != nil {
|
||
|
|
response.ResponseWithErrorCode(
|
||
|
|
ctx,
|
||
|
|
w,
|
||
|
|
err,
|
||
|
|
response.ErrBadRequest.Code,
|
||
|
|
response.ErrBadRequest.HttpCode,
|
||
|
|
err.Error(),
|
||
|
|
)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
|
||
|
|
responsePayload := &domain.StaffLoginResponse{
|
||
|
|
Token: token,
|
||
|
|
}
|
||
|
|
|
||
|
|
response.RespondJsonSuccess(ctx, w, responsePayload)
|
||
|
|
})
|
||
|
|
}
|