29 lines
802 B
Go
29 lines
802 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) PackagesModules(ctx context.Context, req *pb.PackagesModulesReq, rsp *pb.PackagesModulesRsp) error {
|
|
logger.Debug(ctx, "PackagesModuleshandler start")
|
|
|
|
modules, err := h.store.PackagesModules(ctx, req)
|
|
if err != nil {
|
|
logger.Errorf(ctx, "error db response: %v", err)
|
|
httpsrv.SetRspCode(ctx, http.StatusInternalServerError)
|
|
return httpsrv.SetError(NewInternalError(err))
|
|
}
|
|
|
|
for _, mod := range modules {
|
|
rsp.Modules = append(rsp.Modules, models.NewModule(mod))
|
|
}
|
|
logger.Debug(ctx, "PackagesModules handler stop")
|
|
return nil
|
|
}
|