34 lines
876 B
Go
34 lines
876 B
Go
|
package handler
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"net/http"
|
||
|
|
||
|
"git.unistack.org/unistack-org/pkgdash/internal/models"
|
||
|
pb "git.unistack.org/unistack-org/pkgdash/proto"
|
||
|
httpsrv "go.unistack.org/micro-server-http/v4"
|
||
|
"go.unistack.org/micro/v4/logger"
|
||
|
)
|
||
|
|
||
|
func (h *Handler) PackagesLookup(ctx context.Context, req *pb.PackagesLookupReq, rsp *pb.PackagesLookupRsp) error {
|
||
|
logger.Debug(ctx, "Start PackagesLookup")
|
||
|
|
||
|
if err := req.Validate(); err != nil {
|
||
|
logger.Error(ctx, err)
|
||
|
httpsrv.SetRspCode(ctx, http.StatusBadRequest)
|
||
|
return httpsrv.SetError(NewValidationError(err))
|
||
|
}
|
||
|
|
||
|
pkg, err := h.store.PackagesLookup(ctx, req)
|
||
|
if err != nil {
|
||
|
logger.Error(ctx, err)
|
||
|
httpsrv.SetRspCode(ctx, http.StatusInternalServerError)
|
||
|
return httpsrv.SetError(NewInternalError(err))
|
||
|
}
|
||
|
|
||
|
rsp.Package = models.NewPackage(pkg)
|
||
|
|
||
|
logger.Debug(ctx, "Success finish PackagesLookup")
|
||
|
return nil
|
||
|
}
|