forked from ebhomengo/niki
30 lines
944 B
Go
30 lines
944 B
Go
package agentkindboxservice
|
|
|
|
import (
|
|
"context"
|
|
|
|
paginationparam "git.gocasts.ir/ebhomengo/niki/param"
|
|
param "git.gocasts.ir/ebhomengo/niki/param/agent/kind_box"
|
|
richerror "git.gocasts.ir/ebhomengo/niki/pkg/rich_error"
|
|
)
|
|
|
|
func (s Service) GetAll(ctx context.Context, req param.GetAllRequest) (param.GetAllResponse, error) {
|
|
const op = "agentkindboxservice.GetAll"
|
|
if fieldErrors, vErr := s.vld.ValidateGetAll(req); vErr != nil {
|
|
return param.GetAllResponse{FieldErrors: fieldErrors}, richerror.New(op).WithErr(vErr)
|
|
}
|
|
allKindBoxes, total, err := s.repo.GetAllKindBox(ctx, req.Filter, req.Pagination, req.Sort)
|
|
if err != nil {
|
|
return param.GetAllResponse{}, richerror.New(op).WithErr(err)
|
|
}
|
|
|
|
return param.GetAllResponse{
|
|
AllKindBoxes: allKindBoxes,
|
|
Pagination: paginationparam.PaginationResponse{
|
|
PageSize: req.Pagination.GetPageSize(),
|
|
PageNumber: req.Pagination.GetPageNumber(),
|
|
Total: total,
|
|
},
|
|
}, nil
|
|
}
|