2024-01-02 14:04:16 +00:00
|
|
|
package benefactorkindboxreqvalidator
|
2023-12-21 13:00:31 +00:00
|
|
|
|
|
|
|
import (
|
2024-01-16 16:13:06 +00:00
|
|
|
"context"
|
2023-12-21 13:00:31 +00:00
|
|
|
"fmt"
|
|
|
|
|
2024-01-16 16:13:06 +00:00
|
|
|
"git.gocasts.ir/ebhomengo/niki/entity"
|
|
|
|
addressparam "git.gocasts.ir/ebhomengo/niki/param/benefactor/address"
|
|
|
|
param "git.gocasts.ir/ebhomengo/niki/param/benefactor/benefactore"
|
2023-12-21 13:00:31 +00:00
|
|
|
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 (
|
2024-01-16 16:13:06 +00:00
|
|
|
MinKindBoxReq uint = 1
|
|
|
|
MaxKindBoxReq uint = 100
|
2023-12-21 13:00:31 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Repository interface {
|
2024-01-16 16:13:06 +00:00
|
|
|
// KindBoxReqExist(id uint) (bool, error)
|
|
|
|
// KindBoxBelongToBenefactor(bID uint, kbID uint) (bool, error)
|
|
|
|
// PendingStatus(id uint) (bool, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
type BenefactorSvc interface {
|
|
|
|
BenefactorExistByID(ctx context.Context, request param.BenefactorExistByIDRequest) (param.BenefactorExistByIDResponse, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
type AddressSvc interface {
|
|
|
|
AddressExistByID(ctx context.Context, request addressparam.GetAddressByIDRequest) (addressparam.GetAddressByIDResponse, error)
|
2023-12-21 13:00:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Validator struct {
|
2024-01-16 16:13:06 +00:00
|
|
|
repo Repository
|
|
|
|
benefactorSvc BenefactorSvc
|
|
|
|
addressSvc AddressSvc
|
2023-12-21 13:00:31 +00:00
|
|
|
}
|
|
|
|
|
2024-01-16 16:13:06 +00:00
|
|
|
func New(repo Repository, benefactorSvc BenefactorSvc, addressSvc AddressSvc) Validator {
|
|
|
|
return Validator{repo: repo, benefactorSvc: benefactorSvc, addressSvc: addressSvc}
|
2023-12-21 13:00:31 +00:00
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
}
|
2024-01-16 16:13:06 +00:00
|
|
|
_, err := v.benefactorSvc.BenefactorExistByID(context.Background(), param.BenefactorExistByIDRequest{ID: 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-16 16:13:06 +00:00
|
|
|
typeID, ok := value.(entity.KindBoxType)
|
2024-01-01 07:22:14 +00:00
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf(errmsg.ErrorMsgSomethingWentWrong)
|
|
|
|
}
|
2024-01-16 16:13:06 +00:00
|
|
|
if !typeID.IsValid() {
|
2023-12-27 21:55:15 +00:00
|
|
|
return fmt.Errorf(errmsg.ErrorMsgNotFound)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2023-12-28 13:43:06 +00:00
|
|
|
|
2024-01-16 16:13:06 +00:00
|
|
|
func (v Validator) doesAddressExist(benefactorID uint) validation.RuleFunc {
|
2023-12-30 19:51:22 +00:00
|
|
|
return func(value interface{}) error {
|
2024-01-16 16:13:06 +00:00
|
|
|
addressID, ok := value.(uint)
|
2024-01-01 07:22:14 +00:00
|
|
|
if !ok {
|
2024-01-16 16:13:06 +00:00
|
|
|
return fmt.Errorf(errmsg.ErrorMsgSomethingWentWrong)
|
2024-01-01 07:22:14 +00:00
|
|
|
}
|
2024-01-16 16:13:06 +00:00
|
|
|
address, err := v.addressSvc.AddressExistByID(context.Background(), addressparam.GetAddressByIDRequest{ID: addressID})
|
2023-12-30 19:51:22 +00:00
|
|
|
if err != nil {
|
2024-01-16 16:13:06 +00:00
|
|
|
return fmt.Errorf(errmsg.ErrorMsgSomethingWentWrong)
|
|
|
|
}
|
|
|
|
if address.Address == nil {
|
|
|
|
return fmt.Errorf(errmsg.ErrorMsgNotFound)
|
|
|
|
}
|
|
|
|
if address.Address.BenefactorID != benefactorID {
|
2023-12-30 19:51:22 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2024-01-16 16:13:06 +00:00
|
|
|
// func (v Validator) doesKindBoxRequestExist(value interface{}) error {
|
|
|
|
// kindBoxReqID, ok := value.(uint)
|
|
|
|
// if !ok {
|
|
|
|
// return fmt.Errorf(errmsg.ErrorMsgSomethingWentWrong)
|
|
|
|
// }
|
|
|
|
// _, err := v.repo.KindBoxReqExist(kindBoxReqID)
|
|
|
|
// if err != nil {
|
|
|
|
// return fmt.Errorf(errmsg.ErrorMsgNotFound)
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// return nil
|
|
|
|
//}
|
|
|
|
//
|
|
|
|
// func (v Validator) doesKindBoxBelongToBenefactor(benefactorID uint) validation.RuleFunc {
|
|
|
|
// return func(value interface{}) error {
|
|
|
|
// kbID, ok := value.(uint)
|
|
|
|
// if !ok {
|
|
|
|
// return fmt.Errorf(errmsg.ErrorMsgNotFound)
|
|
|
|
// }
|
|
|
|
// _, err := v.repo.KindBoxBelongToBenefactor(benefactorID, kbID)
|
|
|
|
// if err != nil {
|
|
|
|
// return fmt.Errorf(errmsg.ErrorMsgNotFound)
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// return nil
|
|
|
|
// }
|
|
|
|
//}
|
|
|
|
//
|
|
|
|
// func (v Validator) hasPendingStatus(value interface{}) error {
|
|
|
|
// kindboxID, ok := value.(uint)
|
|
|
|
// if !ok {
|
|
|
|
// return fmt.Errorf(errmsg.ErrorMsgSomethingWentWrong)
|
|
|
|
// }
|
|
|
|
// _, err := v.repo.PendingStatus(kindboxID)
|
|
|
|
// if err != nil {
|
|
|
|
// return fmt.Errorf(errmsg.ErrorMsgNotFound)
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// return nil
|
|
|
|
//}
|