2023-12-30 19:51:22 +00:00
|
|
|
package adminkindboxvalidator
|
2023-12-27 21:55:15 +00:00
|
|
|
|
2024-07-01 17:13:28 +00:00
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
errmsg "git.gocasts.ir/ebhomengo/niki/pkg/err_msg"
|
|
|
|
)
|
|
|
|
|
2023-12-27 21:55:15 +00:00
|
|
|
type Repository interface {
|
2024-07-01 17:13:28 +00:00
|
|
|
KindBoxExist(ctx context.Context, kindBoxID uint) (bool, error)
|
2023-12-27 21:55:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Validator struct {
|
|
|
|
repo Repository
|
|
|
|
}
|
|
|
|
|
|
|
|
func New(repo Repository) Validator {
|
|
|
|
return Validator{repo: repo}
|
|
|
|
}
|
2024-07-01 17:13:28 +00:00
|
|
|
|
|
|
|
func (v Validator) doesKindBoxExist(value interface{}) error {
|
|
|
|
kindBoxID, ok := value.(uint)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf(errmsg.ErrorMsgSomethingWentWrong)
|
|
|
|
}
|
|
|
|
exists, err := v.repo.KindBoxExist(context.Background(), kindBoxID)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf(errmsg.ErrorMsgSomethingWentWrong)
|
|
|
|
}
|
|
|
|
if !exists {
|
|
|
|
return fmt.Errorf(errmsg.ErrorMsgNotFound)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|