2023-08-16 13:17:42 +03:00
|
|
|
package handler
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"git.unistack.org/unistack-org/pkgdash/internal/models"
|
|
|
|
pb "git.unistack.org/unistack-org/pkgdash/proto"
|
2023-08-18 23:59:15 +03:00
|
|
|
httpsrv "go.unistack.org/micro-server-http/v4"
|
|
|
|
"go.unistack.org/micro/v4/logger"
|
2023-08-16 13:17:42 +03:00
|
|
|
)
|
|
|
|
|
2023-08-20 14:19:57 +03:00
|
|
|
func (h *Handler) ModuleList(ctx context.Context, req *pb.ModuleListReq, rsp *pb.ModuleListRsp) error {
|
2023-08-16 13:17:42 +03:00
|
|
|
logger.Debug(ctx, "Start GetModule")
|
|
|
|
|
|
|
|
err := req.Validate()
|
|
|
|
if err != nil {
|
2024-03-25 22:54:25 +03:00
|
|
|
logger.Error(ctx, "validate error", err)
|
2023-08-16 13:17:42 +03:00
|
|
|
httpsrv.SetRspCode(ctx, http.StatusBadRequest)
|
|
|
|
return httpsrv.SetError(NewValidationError(err))
|
|
|
|
}
|
|
|
|
|
2023-08-20 14:19:57 +03:00
|
|
|
modules, err := h.store.ModuleList(ctx, req)
|
2023-08-16 13:17:42 +03:00
|
|
|
if err != nil {
|
2024-03-25 22:54:25 +03:00
|
|
|
logger.Error(ctx, "module list error", err)
|
2023-08-16 13:17:42 +03:00
|
|
|
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, "Success finish getModule")
|
|
|
|
return nil
|
|
|
|
}
|