package environment import ( "net/http" "github.com/porter-dev/porter/api/server/authz" "github.com/porter-dev/porter/api/server/handlers" "github.com/porter-dev/porter/api/server/handlers/gitinstallation" "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" "github.com/porter-dev/porter/internal/models/integrations" ) type UpdateDeploymentStatusHandler struct { handlers.PorterHandlerReadWriter authz.KubernetesAgentGetter } func NewUpdateDeploymentStatusHandler( config *config.Config, decoderValidator shared.RequestDecoderValidator, writer shared.ResultWriter, ) *UpdateDeploymentStatusHandler { return &UpdateDeploymentStatusHandler{ PorterHandlerReadWriter: handlers.NewDefaultPorterHandler(config, decoderValidator, writer), KubernetesAgentGetter: authz.NewOutOfClusterAgentGetter(config), } } func (c *UpdateDeploymentStatusHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { ga, _ := r.Context().Value(types.GitInstallationScope).(*integrations.GithubAppInstallation) project, _ := r.Context().Value(types.ProjectScope).(*models.Project) cluster, _ := r.Context().Value(types.ClusterScope).(*models.Cluster) owner, name, ok := gitinstallation.GetOwnerAndNameParams(c, w, r) if !ok { return } request := &types.UpdateDeploymentStatusRequest{} if ok := c.DecodeAndValidate(w, r, request); !ok { return } // read the environment to get the environment id env, err := c.Repo().Environment().ReadEnvironment(project.ID, cluster.ID, uint(ga.InstallationID), owner, name) if err != nil { c.HandleAPIError(w, r, apierrors.NewErrInternal(err)) return } // read the deployment depl, err := c.Repo().Environment().ReadDeployment(env.ID, request.Namespace) if err != nil { c.HandleAPIError(w, r, apierrors.NewErrInternal(err)) return } depl.Status = types.DeploymentStatus(request.Status) // create the deployment depl, err = c.Repo().Environment().UpdateDeployment(depl) if err != nil { c.HandleAPIError(w, r, apierrors.NewErrInternal(err)) return } c.WriteResult(w, r, depl.ToDeploymentType()) }