| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- package api_contract
- import (
- "fmt"
- "net/http"
- "strconv"
- "github.com/go-chi/chi/v5"
- "github.com/porter-dev/porter/api/server/handlers"
- "github.com/porter-dev/porter/api/server/shared"
- "github.com/porter-dev/porter/api/server/shared/apierrors"
- "github.com/porter-dev/porter/api/server/shared/config"
- "github.com/porter-dev/porter/api/types"
- "github.com/porter-dev/porter/internal/models"
- )
- type APIContractRevisionListHandler struct {
- handlers.PorterHandlerReadWriter
- }
- func NewAPIContractRevisionListHandler(
- config *config.Config,
- decoderValidator shared.RequestDecoderValidator,
- writer shared.ResultWriter,
- ) *APIContractRevisionListHandler {
- return &APIContractRevisionListHandler{
- PorterHandlerReadWriter: handlers.NewDefaultPorterHandler(config, decoderValidator, writer),
- }
- }
- // ServeHTTP returns a list of Porter API contract revisions for a given project.
- // If clusterID is also given, it will list by project_id, cluster_id
- func (c *APIContractRevisionListHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
- proj, _ := r.Context().Value(types.ProjectScope).(*models.Project)
- clusterID := 0
- clusterIDParam := chi.URLParam(r, "cluster_id")
- if clusterIDParam != "" {
- i, err := strconv.Atoi(clusterIDParam)
- if err != nil {
- e := fmt.Errorf("invalid cluster_id query param given: %w", err)
- c.HandleAPIError(w, r, apierrors.NewErrInternal(e))
- return
- }
- clusterID = i
- }
- ctx := r.Context()
- revisions, err := c.Config().Repo.APIContractRevisioner().List(ctx, proj.ID, uint(clusterID))
- if err != nil {
- e := fmt.Errorf("error listing api contract revision: %w", err)
- c.HandleAPIError(w, r, apierrors.NewErrInternal(e))
- return
- }
- w.WriteHeader(http.StatusOK)
- c.WriteResult(w, r, revisions)
- }
|