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-07-03 17:18:06 +00:00
|
|
|
params "git.gocasts.ir/ebhomengo/niki/param"
|
|
|
|
"slices"
|
2024-06-14 08:41:36 +00:00
|
|
|
"time"
|
|
|
|
|
2024-01-16 16:13:06 +00:00
|
|
|
"git.gocasts.ir/ebhomengo/niki/entity"
|
2024-05-31 12:36:48 +00:00
|
|
|
refertimeparam "git.gocasts.ir/ebhomengo/niki/param/admin/refer_time"
|
2024-01-16 16:13:06 +00:00
|
|
|
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
|
|
|
)
|
|
|
|
|
2024-01-16 16:13:06 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2024-05-31 12:36:48 +00:00
|
|
|
type ReferTimeSvc interface {
|
|
|
|
GetReferTimeByID(ctx context.Context, req refertimeparam.GetReferTimeRequest) (refertimeparam.GetReferTimeResponse, error)
|
|
|
|
}
|
|
|
|
|
2024-05-31 14:49:04 +00:00
|
|
|
type Repository interface {
|
|
|
|
GetKindBoxReqByID(ctx context.Context, kindBoxReqID uint) (entity.KindBoxReq, error)
|
|
|
|
}
|
|
|
|
|
2023-12-21 13:00:31 +00:00
|
|
|
type Validator struct {
|
2024-01-16 16:13:06 +00:00
|
|
|
benefactorSvc BenefactorSvc
|
|
|
|
addressSvc AddressSvc
|
2024-05-31 12:36:48 +00:00
|
|
|
referTimeSvc ReferTimeSvc
|
2024-05-31 14:49:04 +00:00
|
|
|
repo Repository
|
2023-12-21 13:00:31 +00:00
|
|
|
}
|
|
|
|
|
2024-01-26 12:11:50 +00:00
|
|
|
type ValidatorError struct {
|
|
|
|
Fields map[string]string `json:"error"`
|
|
|
|
Err error `json:"message"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v ValidatorError) Error() string {
|
|
|
|
var err string
|
|
|
|
|
|
|
|
for key, value := range v.Fields {
|
|
|
|
err += fmt.Sprintf("%s: %s\n", key, value)
|
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2024-07-03 17:18:06 +00:00
|
|
|
func New(benefactorSvc BenefactorSvc, addressSvc AddressSvc, referTimeSvc ReferTimeSvc, repo Repository) Validator {
|
|
|
|
return Validator{benefactorSvc: benefactorSvc, addressSvc: addressSvc, referTimeSvc: referTimeSvc, repo: repo}
|
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-07-03 17:18:06 +00:00
|
|
|
kindBoxType, ok := value.(entity.KindBoxType)
|
2024-01-01 07:22:14 +00:00
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf(errmsg.ErrorMsgSomethingWentWrong)
|
|
|
|
}
|
2024-07-03 17:18:06 +00:00
|
|
|
if !kindBoxType.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-05-21 17:38:43 +00:00
|
|
|
func (v Validator) isDateValid(value interface{}) error {
|
2024-05-31 12:36:48 +00:00
|
|
|
date, ok := value.(time.Time)
|
2024-05-21 17:38:43 +00:00
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf(errmsg.ErrorMsgSomethingWentWrong)
|
|
|
|
}
|
2024-05-31 12:36:48 +00:00
|
|
|
if date.Before(time.Now()) {
|
2024-05-21 17:38:43 +00:00
|
|
|
return fmt.Errorf(errmsg.ErrorMsgInvalidInput)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-05-31 12:36:48 +00:00
|
|
|
func (v Validator) isReferTimeIDValid(value interface{}) error {
|
|
|
|
referTimeID, ok := value.(uint)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf(errmsg.ErrorMsgSomethingWentWrong)
|
|
|
|
}
|
|
|
|
resp, gErr := v.referTimeSvc.GetReferTimeByID(context.Background(), refertimeparam.GetReferTimeRequest{
|
|
|
|
ReferTimeID: referTimeID,
|
|
|
|
})
|
|
|
|
if gErr != nil {
|
|
|
|
return fmt.Errorf(errmsg.ErrorMsgReferTimeNotFound)
|
|
|
|
}
|
|
|
|
if resp.ReferTime.Status != entity.ReferTimeActiveStatus {
|
|
|
|
return fmt.Errorf(errmsg.ErrorMsgReferTimeIsNotActive)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-05-31 14:49:04 +00:00
|
|
|
func (v Validator) doesKindBoxBelongToBenefactor(benefactorID uint) validation.RuleFunc {
|
|
|
|
return func(value interface{}) error {
|
|
|
|
kindBoxReqID, ok := value.(uint)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf(errmsg.ErrorMsgNotFound)
|
|
|
|
}
|
|
|
|
kindBoxReq, err := v.repo.GetKindBoxReqByID(context.Background(), kindBoxReqID)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf(errmsg.ErrorMsgNotFound)
|
|
|
|
}
|
|
|
|
if kindBoxReq.BenefactorID != benefactorID {
|
|
|
|
return fmt.Errorf(errmsg.ErrorMsgKindBoxReqDoesntBelongToBenefactor)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v Validator) doesKindBoxRequestHavePendingStatus(value interface{}) error {
|
|
|
|
kindBoxReqID, ok := value.(uint)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf(errmsg.ErrorMsgNotFound)
|
|
|
|
}
|
|
|
|
kindBoxReq, err := v.repo.GetKindBoxReqByID(context.Background(), kindBoxReqID)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf(errmsg.ErrorMsgNotFound)
|
|
|
|
}
|
|
|
|
if kindBoxReq.Status != entity.KindBoxReqPendingStatus {
|
|
|
|
return fmt.Errorf(errmsg.ErrorMsgInvalidStatus)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2024-07-03 17:18:06 +00:00
|
|
|
|
|
|
|
func (v Validator) areFilterFieldsValid(validFilters []string) validation.RuleFunc {
|
|
|
|
return func(value interface{}) error {
|
|
|
|
filters, ok := value.(params.FilterRequest)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf(errmsg.ErrorMsgSomethingWentWrong)
|
|
|
|
}
|
|
|
|
for filter := range filters {
|
|
|
|
if !slices.Contains(validFilters, filter) {
|
|
|
|
return fmt.Errorf(errmsg.ErrorMsgFiltersAreNotValid)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v Validator) areSortFieldsValid(validSortFields []string) validation.RuleFunc {
|
|
|
|
return func(value interface{}) error {
|
|
|
|
sort, ok := value.(params.SortRequest)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf(errmsg.ErrorMsgSomethingWentWrong)
|
|
|
|
}
|
|
|
|
if sort.Field == "" && sort.Direction != "" {
|
|
|
|
return fmt.Errorf(errmsg.ErrorMsgSortFieldIsRequired)
|
|
|
|
}
|
|
|
|
if sort.Direction != "" && sort.Direction != params.AscSortDirection && sort.Direction != params.DescSortDirection {
|
|
|
|
return fmt.Errorf(errmsg.ErrorMsgSortDirectionShouldBeAscOrDesc)
|
|
|
|
}
|
|
|
|
if sort.Field != "" && !slices.Contains(validSortFields, sort.Field) {
|
|
|
|
return fmt.Errorf(errmsg.ErrorMsgSortFieldIsNotValid)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|