package adminkindboxservice import ( "context" entity "git.gocasts.ir/ebhomengo/niki/entity" param "git.gocasts.ir/ebhomengo/niki/param/admin/kind_box" richerror "git.gocasts.ir/ebhomengo/niki/pkg/rich_error" ) func (s Service) Add(ctx context.Context, req param.KindBoxAddRequest) (param.KindBoxAddResponse, error) { const op = "adminkindboxservice.Add" // TODO: check validation // exist, err := s.benefactorService.IsBenefactorExist(ctx, req.BenefactorID) // if err != nil { // return param.KindBoxAddResponse{}, richerror.New(op).WithErr(err).WithKind(richerror.KindUnexpected) //} //if !exist { // return param.KindBoxAddResponse{}, richerror.New(op).WithMessage(errmsg.ErrorMsgUserNotFound).WithKind(richerror.KindInvalid) //} kindBox, err := s.repo.AddKindBox(ctx, entity.KindBox{ BenefactorID: req.BenefactorID, KindBoxReqID: req.KindBoxReqID, SenderID: req.SenderID, SerialNumber: req.SerialNumber, Status: entity.KindBoxPendingSendStatus, }) if err != nil { return param.KindBoxAddResponse{}, richerror.New(op).WithErr(err).WithKind(richerror.KindUnexpected) } return param.KindBoxAddResponse{KindBox: kindBox}, nil }