forked from ebhomengo/niki
44 lines
1.3 KiB
Go
44 lines
1.3 KiB
Go
package benefactorvalidator
|
|
|
|
import (
|
|
"errors"
|
|
"regexp"
|
|
|
|
benefactoreparam "git.gocasts.ir/ebhomengo/niki/param/benefactor/benefactore"
|
|
errmsg "git.gocasts.ir/ebhomengo/niki/pkg/err_msg"
|
|
richerror "git.gocasts.ir/ebhomengo/niki/pkg/rich_error"
|
|
validation "github.com/go-ozzo/ozzo-validation/v4"
|
|
)
|
|
|
|
func (v Validator) ValidateLoginRegisterRequest(req benefactoreparam.LoginOrRegisterRequest) (map[string]string, error) {
|
|
const op = "benefactorvalidator.ValidateRegisterRequest"
|
|
|
|
if err := validation.ValidateStruct(&req,
|
|
// TODO - add length of code config from benefactor config
|
|
// validation.Field(&req.VerificationCode,
|
|
// validation.Required,
|
|
// validation.Length(3, 50)),
|
|
|
|
validation.Field(&req.PhoneNumber,
|
|
validation.Required,
|
|
validation.Match(regexp.MustCompile(phoneNumberRegex)).Error(errmsg.ErrorMsgPhoneNumberIsNotValid))); err != nil {
|
|
fieldErrors := make(map[string]string)
|
|
|
|
vErr := validation.Errors{}
|
|
if errors.As(err, &vErr) {
|
|
for key, value := range vErr {
|
|
if value != nil {
|
|
fieldErrors[key] = value.Error()
|
|
}
|
|
}
|
|
}
|
|
|
|
return fieldErrors, richerror.New(op).WithMessage(errmsg.ErrorMsgInvalidInput).
|
|
WithKind(richerror.KindInvalid).
|
|
WithMeta(map[string]interface{}{"req": req}).WithErr(err)
|
|
}
|
|
|
|
//nolint
|
|
return nil, nil
|
|
}
|