| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- package infra
- import (
- "net/http"
- "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/ee/integrations/httpbackend"
- "github.com/porter-dev/porter/internal/models"
- )
- type InfraGetCurrentHandler struct {
- handlers.PorterHandlerWriter
- }
- func NewInfraGetCurrentHandler(
- config *config.Config,
- writer shared.ResultWriter,
- ) *InfraGetCurrentHandler {
- return &InfraGetCurrentHandler{
- PorterHandlerWriter: handlers.NewDefaultPorterHandler(config, nil, writer),
- }
- }
- func (c *InfraGetCurrentHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
- infra, _ := r.Context().Value(types.InfraScope).(*models.Infra)
- // TODO: move client out of this call
- client := httpbackend.NewClient(c.Config().ServerConf.ProvisionerBackendURL)
- // get the unique infra name and query from the TF HTTP backend
- current, err := client.GetCurrentState(infra.GetUniqueName())
- if err != nil {
- c.HandleAPIError(w, r, apierrors.NewErrInternal(err))
- return
- }
- c.WriteResult(w, r, current)
- }
|