2023-12-25 17:08:19 +00:00
|
|
|
package userkindboxreqservice
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2023-12-26 13:11:29 +00:00
|
|
|
"git.gocasts.ir/ebhomengo/niki/entity"
|
|
|
|
errmsg "git.gocasts.ir/ebhomengo/niki/pkg/err_msg"
|
2023-12-25 17:08:19 +00:00
|
|
|
|
|
|
|
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 {
|
2023-12-26 13:11:29 +00:00
|
|
|
return param.KindBoxReqDeleteResponse{}, richerror.New(op).WithErr(gErr).WithKind(richerror.KindUnexpected)
|
2023-12-25 17:08:19 +00:00
|
|
|
}
|
2023-12-26 13:11:29 +00:00
|
|
|
if kbr.Status != entity.KindBoxReqPendingStatus {
|
|
|
|
return param.KindBoxReqDeleteResponse{}, richerror.New(op).WithMessage(errmsg.ErrorMsgInvalidStatus).WithKind(richerror.KindInvalid)
|
2023-12-25 17:08:19 +00:00
|
|
|
}
|
2023-12-26 13:11:29 +00:00
|
|
|
if kbr.BenefactorID != req.BenfactorID {
|
|
|
|
return param.KindBoxReqDeleteResponse{}, richerror.New(op).WithMessage(errmsg.ErrorMsgUserNotAllowed).WithKind(richerror.KindForbidden)
|
2023-12-25 17:08:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dErr := s.repo.DeleteKindBoxReq(ctx, req.KindBoxReqID)
|
|
|
|
if dErr != nil {
|
2023-12-26 13:11:29 +00:00
|
|
|
return param.KindBoxReqDeleteResponse{}, richerror.New(op).WithErr(dErr).WithKind(richerror.KindUnexpected)
|
2023-12-25 17:08:19 +00:00
|
|
|
}
|
|
|
|
|
2023-12-26 13:11:29 +00:00
|
|
|
return param.KindBoxReqDeleteResponse{}, nil
|
2023-12-25 17:08:19 +00:00
|
|
|
}
|