package agentkindboxservice

import (
	"context"

	param "git.gocasts.ir/ebhomengo/niki/param/agent/kind_box"
	richerror "git.gocasts.ir/ebhomengo/niki/pkg/rich_error"
)

func (s Service) Get(ctx context.Context, req param.GetKindBoxRequest) (param.GetKindBoxResponse, error) {
	const op = "agentkindboxservice.Get"
	if fieldErrors, vErr := s.vld.ValidateGetRequest(ctx, req); vErr != nil {
		return param.GetKindBoxResponse{FieldErrors: fieldErrors}, richerror.New(op).WithErr(vErr)
	}
	kindBox, err := s.repo.GetAwaitingReturnByAgent(ctx, req.KindBoxID, req.AgentID)
	if err != nil {
		return param.GetKindBoxResponse{}, richerror.New(op).WithErr(err)
	}

	return param.GetKindBoxResponse{
		KindBox: kindBox,
	}, nil
}