forked from ebhomengo/niki
33 lines
1.2 KiB
Go
33 lines
1.2 KiB
Go
|
package userkindboxreqservice
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
entity "git.gocasts.ir/ebhomengo/niki/entity"
|
||
|
param "git.gocasts.ir/ebhomengo/niki/param/benefactor/kind_box_req"
|
||
|
richerror "git.gocasts.ir/ebhomengo/niki/pkg/rich_error"
|
||
|
)
|
||
|
|
||
|
func (s Service) Delete(ctx context.Context, req param.KindBoxReqDeleteRequest) (param.KindBoxReqDeleteResponse, error) {
|
||
|
//TODO: Does bussiness domain need to delete an kindboxreq ?
|
||
|
const op = "userkindboxreqservice.Delete"
|
||
|
|
||
|
kbr, gErr := s.repo.GetKindBoxReq(ctx, req.KindBoxReqID)
|
||
|
if gErr != nil {
|
||
|
return param.KindBoxReqUpdateResponse{}, richerror.New(op).WithErr(gErr).WithKind(richerror.KindUnexpected)
|
||
|
}
|
||
|
if kbr.Status != KindBoxReqPendingStatus {
|
||
|
return param.KindBoxReqUpdateResponse{}, richerror.New(op).WithMessage(errmsg.ErrorMsgInvalidStatus).WithKind(richerror.KindInvalid)
|
||
|
}
|
||
|
if kbr.BenefactorID != req.BenefactorID {
|
||
|
return param.KindBoxReqGetResponse{}, richerror.New(op).WithMessage(errmsg.ErrorMsgUserNotAllowed).WithKind(richerror.KindForbidden)
|
||
|
}
|
||
|
|
||
|
dErr := s.repo.DeleteKindBoxReq(ctx, req.KindBoxReqID)
|
||
|
if dErr != nil {
|
||
|
return param.KindBoxReqDeleteResponse{}, richerror.New(op).WithErr(err).WithKind(richerror.KindUnexpected)
|
||
|
}
|
||
|
|
||
|
return param.KindBoxReqDeleteResponse{KindBoxReq: kindBoxReq}, nil
|
||
|
}
|