2024-01-22 14:07:51 +00:00
|
|
|
package adminkindboxreqvalidator
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
|
|
|
|
param "git.gocasts.ir/ebhomengo/niki/param/admin/kind_box_req"
|
|
|
|
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) ValidateAcceptRequest(req param.KindBoxReqAcceptRequest) (map[string]string, error) {
|
|
|
|
const op = "adminkindboxreqvalidator.ValidateAcceptRequest"
|
|
|
|
|
|
|
|
if err := validation.ValidateStruct(&req,
|
2024-01-22 15:21:13 +00:00
|
|
|
validation.Field(&req.ID, validation.Required, validation.By(v.doesKindBoxRequestExist), validation.By(v.CheckKindBoxReqStatusForAccepting)),
|
2024-01-22 14:07:51 +00:00
|
|
|
|
|
|
|
validation.Field(&req.CountAccepted,
|
|
|
|
validation.Required,
|
|
|
|
validation.Min(uint(MinKindBoxReq)), validation.Max(uint(MaxKindBoxReq)),
|
2024-05-21 16:23:47 +00:00
|
|
|
validation.By(v.checkCountAcceptedMustBeLessThanCountRequested(req.ID)),
|
2024-01-22 14:07:51 +00:00
|
|
|
),
|
|
|
|
); err != nil {
|
|
|
|
fieldErrors := make(map[string]string)
|
|
|
|
|
|
|
|
var errV validation.Errors
|
|
|
|
if errors.As(err, &errV) {
|
|
|
|
for key, value := range errV {
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
|
|
|
return map[string]string{}, nil
|
|
|
|
}
|