2023-12-30 19:51:22 +00:00
|
|
|
package userkindboxreqvalidator
|
2023-12-21 13:00:31 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
errmsg "git.gocasts.ir/ebhomengo/niki/pkg/err_msg"
|
2023-12-30 19:51:22 +00:00
|
|
|
validation "github.com/go-ozzo/ozzo-validation/v4"
|
2023-12-21 13:00:31 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
MinKindBoxReq = 1
|
|
|
|
MaxKindBoxReq = 100
|
|
|
|
)
|
|
|
|
|
|
|
|
type Repository interface {
|
2023-12-28 13:43:06 +00:00
|
|
|
BenefactorExist(id uint) (bool, error)
|
|
|
|
KindBoxReqExist(id uint) (bool, error)
|
|
|
|
TypeExist(id uint) (bool, error)
|
2024-01-01 07:22:14 +00:00
|
|
|
KindBoxBelongToBenefactor(bID uint, kbID uint) (bool, error)
|
2023-12-28 13:43:06 +00:00
|
|
|
PendingStatus(id uint) (bool, error)
|
2023-12-21 13:00:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Validator struct {
|
|
|
|
repo Repository
|
|
|
|
}
|
|
|
|
|
|
|
|
func New(repo Repository) Validator {
|
|
|
|
return Validator{repo: repo}
|
|
|
|
}
|
|
|
|
|
2023-12-27 21:55:15 +00:00
|
|
|
func (v Validator) doesBenefactorExist(value interface{}) error {
|
2024-01-01 07:22:14 +00:00
|
|
|
benefactorID, ok := value.(uint)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf(errmsg.ErrorMsgSomethingWentWrong)
|
|
|
|
}
|
2023-12-27 21:55:15 +00:00
|
|
|
_, err := v.repo.BenefactorExist(benefactorID)
|
2023-12-21 13:00:31 +00:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf(errmsg.ErrorMsgNotFound)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v Validator) doesTypeExist(value interface{}) error {
|
2024-01-01 07:22:14 +00:00
|
|
|
typeID, ok := value.(uint)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf(errmsg.ErrorMsgSomethingWentWrong)
|
|
|
|
}
|
2023-12-22 21:25:16 +00:00
|
|
|
_, err := v.repo.TypeExist(typeID)
|
2023-12-21 13:00:31 +00:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf(errmsg.ErrorMsgNotFound)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2023-12-27 21:55:15 +00:00
|
|
|
|
|
|
|
func (v Validator) doesKindBoxRequestExist(value interface{}) error {
|
2024-01-01 07:22:14 +00:00
|
|
|
kindBoxReqID, ok := value.(uint)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf(errmsg.ErrorMsgSomethingWentWrong)
|
|
|
|
}
|
2023-12-27 21:55:15 +00:00
|
|
|
_, err := v.repo.KindBoxReqExist(kindBoxReqID)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf(errmsg.ErrorMsgNotFound)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2023-12-28 13:43:06 +00:00
|
|
|
|
2023-12-30 19:51:22 +00:00
|
|
|
func (v Validator) doesKindBoxBelongToBenefactor(benefactorID uint) validation.RuleFunc {
|
|
|
|
return func(value interface{}) error {
|
2024-01-01 07:22:14 +00:00
|
|
|
kbID, ok := value.(uint)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf(errmsg.ErrorMsgNotFound)
|
|
|
|
}
|
|
|
|
_, err := v.repo.KindBoxBelongToBenefactor(benefactorID, kbID)
|
2023-12-30 19:51:22 +00:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf(errmsg.ErrorMsgNotFound)
|
|
|
|
}
|
2023-12-28 13:43:06 +00:00
|
|
|
|
2023-12-30 19:51:22 +00:00
|
|
|
return nil
|
|
|
|
}
|
2023-12-28 13:43:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (v Validator) hasPendingStatus(value interface{}) error {
|
2024-01-01 07:22:14 +00:00
|
|
|
kindboxID, ok := value.(uint)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf(errmsg.ErrorMsgSomethingWentWrong)
|
|
|
|
}
|
2023-12-28 13:43:06 +00:00
|
|
|
_, err := v.repo.PendingStatus(kindboxID)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf(errmsg.ErrorMsgNotFound)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|