36 lines
903 B
Go
36 lines
903 B
Go
|
package handler
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"net/http"
|
||
|
|
||
|
httpsrv "go.unistack.org/micro-server-http/v4"
|
||
|
"git.unistack.org/unistack-org/pkgdash/internal/models"
|
||
|
pb "git.unistack.org/unistack-org/pkgdash/proto"
|
||
|
)
|
||
|
|
||
|
func (h *Handler) ModulesList(ctx context.Context, req *pb.ModulesListReq, rsp *pb.ModulesListRsp) error {
|
||
|
logger := h.svc.Logger()
|
||
|
logger.Debug(ctx, "Start GetModule")
|
||
|
|
||
|
err := req.Validate()
|
||
|
if err != nil {
|
||
|
logger.Error(ctx, err)
|
||
|
httpsrv.SetRspCode(ctx, http.StatusBadRequest)
|
||
|
return httpsrv.SetError(NewValidationError(err))
|
||
|
}
|
||
|
|
||
|
modules, err := h.store.ModulesList(ctx, req)
|
||
|
if err != nil {
|
||
|
logger.Error(ctx, 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, "Success finish getModule")
|
||
|
return nil
|
||
|
}
|