forked from ebhomengo/niki
69 lines
1.4 KiB
Go
69 lines
1.4 KiB
Go
|
package adminkindboxreq
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
errmsg "git.gocasts.ir/ebhomengo/niki/pkg/err_msg"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
MinKindBoxReq = 1
|
||
|
MaxKindBoxReq = 100
|
||
|
)
|
||
|
|
||
|
type Repository interface {
|
||
|
BenefactorExist(id int) (bool, error)
|
||
|
KindBoxRequestExist(id int) (bool, error)
|
||
|
TypeExist(id int) (bool, error)
|
||
|
KindBoxBelongToBenefactor(benefactorID uint, kindboxID uint) (bool, error)
|
||
|
}
|
||
|
|
||
|
type Validator struct {
|
||
|
repo Repository
|
||
|
}
|
||
|
|
||
|
func New(repo Repository) Validator {
|
||
|
return Validator{repo: repo}
|
||
|
}
|
||
|
|
||
|
func (v Validator) doesBenefactorExist(value interface{}) error {
|
||
|
benefactorID := value.(int)
|
||
|
_, err := v.repo.BenefactorExist(benefactorID)
|
||
|
if err != nil {
|
||
|
return fmt.Errorf(errmsg.ErrorMsgNotFound)
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (v Validator) doesKindBoxBelongToBenefactor(benefactorID interface{}, kindBoxID interface{}) error {
|
||
|
kbId := kindBoxID.(uint)
|
||
|
bId := benefactorID.(uint)
|
||
|
_, err := v.repo.KindBoxBelongToBenefactor(bId, kbId)
|
||
|
if err != nil {
|
||
|
return fmt.Errorf(errmsg.ErrorMsgNotFound)
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (v Validator) doesKindBoxRequestExist(value interface{}) error {
|
||
|
kindboxreqID := value.(int)
|
||
|
_, err := v.repo.KindBoxRequestExist(kindboxreqID)
|
||
|
if err != nil {
|
||
|
return fmt.Errorf(errmsg.ErrorMsgNotFound)
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (v Validator) doesTypeExist(value interface{}) error {
|
||
|
typeID := value.(int)
|
||
|
_, err := v.repo.TypeExist(typeID)
|
||
|
if err != nil {
|
||
|
return fmt.Errorf(errmsg.ErrorMsgNotFound)
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|