| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- package environment
- import (
- "context"
- "errors"
- "fmt"
- "net/http"
- "reflect"
- "strings"
- "github.com/porter-dev/porter/api/server/authz"
- "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/server/shared/requestutils"
- "github.com/porter-dev/porter/api/types"
- "github.com/porter-dev/porter/internal/models"
- "gorm.io/gorm"
- )
- type UpdateEnvironmentSettingsHandler struct {
- handlers.PorterHandlerReadWriter
- authz.KubernetesAgentGetter
- }
- func NewUpdateEnvironmentSettingsHandler(
- config *config.Config,
- decoderValidator shared.RequestDecoderValidator,
- writer shared.ResultWriter,
- ) *UpdateEnvironmentSettingsHandler {
- return &UpdateEnvironmentSettingsHandler{
- PorterHandlerReadWriter: handlers.NewDefaultPorterHandler(config, decoderValidator, writer),
- KubernetesAgentGetter: authz.NewOutOfClusterAgentGetter(config),
- }
- }
- func (c *UpdateEnvironmentSettingsHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
- project, _ := r.Context().Value(types.ProjectScope).(*models.Project)
- cluster, _ := r.Context().Value(types.ClusterScope).(*models.Cluster)
- envID, reqErr := requestutils.GetURLParamUint(r, "environment_id")
- if reqErr != nil {
- c.HandleAPIError(w, r, reqErr)
- return
- }
- request := &types.UpdateEnvironmentSettingsRequest{}
- if ok := c.DecodeAndValidate(w, r, request); !ok {
- return
- }
- env, err := c.Repo().Environment().ReadEnvironmentByID(project.ID, cluster.ID, envID)
- if err != nil {
- if errors.Is(err, gorm.ErrRecordNotFound) {
- c.HandleAPIError(w, r, apierrors.NewErrNotFound(fmt.Errorf("no such environment with ID: %d", envID)))
- return
- }
- c.HandleAPIError(w, r, apierrors.NewErrInternal(err))
- return
- }
- var newBranches []string
- for _, br := range request.GitRepoBranches {
- name := strings.TrimSpace(br)
- if len(name) > 0 {
- newBranches = append(newBranches, name)
- }
- }
- changed := !reflect.DeepEqual(env.ToEnvironmentType().GitRepoBranches, newBranches)
- if changed {
- env.GitRepoBranches = strings.Join(request.GitRepoBranches, ",")
- }
- newBranches = []string{}
- for _, br := range request.GitDeployBranches {
- name := strings.TrimSpace(br)
- if len(name) > 0 {
- newBranches = append(newBranches, name)
- }
- }
- changed = !reflect.DeepEqual(env.ToEnvironmentType().GitDeployBranches, newBranches)
- if changed {
- // let us check if the webhook has access to the "push" event
- client, err := getGithubClientFromEnvironment(c.Config(), env)
- if err != nil {
- c.HandleAPIError(w, r, apierrors.NewErrInternal(err))
- return
- }
- hook, _, err := client.Repositories.GetHook(
- context.Background(), env.GitRepoOwner, env.GitRepoName, env.GithubWebhookID,
- )
- if err != nil {
- c.HandleAPIError(w, r, apierrors.NewErrInternal(err))
- return
- }
- found := false
- for _, ev := range hook.Events {
- if ev == "push" {
- found = true
- break
- }
- }
- if !found {
- hook.Events = append(hook.Events, "push")
- _, _, err := client.Repositories.EditHook(
- context.Background(), env.GitRepoOwner, env.GitRepoName, env.GithubWebhookID, hook,
- )
- if err != nil {
- c.HandleAPIError(w, r, apierrors.NewErrInternal(err))
- return
- }
- }
- env.GitDeployBranches = strings.Join(request.GitDeployBranches, ",")
- if len(request.GitDeployBranches) > 0 && c.Config().ServerConf.EnableAutoPreviewBranchDeploy {
- errs := autoDeployBranch(env, c.Config(), request.GitDeployBranches, true)
- if len(errs) > 0 {
- errString := errs[0].Error()
- for _, e := range errs {
- errString += ": " + e.Error()
- }
- c.HandleAPIError(w, r, apierrors.NewErrPassThroughToClient(
- fmt.Errorf("error auto deploying preview branches: %s", errString), http.StatusConflict),
- )
- return
- }
- }
- }
- if request.DisableNewComments != env.NewCommentsDisabled {
- env.NewCommentsDisabled = request.DisableNewComments
- changed = true
- }
- if request.Mode != env.Mode {
- env.Mode = request.Mode
- changed = true
- }
- if len(request.NamespaceLabels) > 0 {
- var labels []string
- for k, v := range request.NamespaceLabels {
- labels = append(labels, fmt.Sprintf("%s=%s", k, v))
- }
- env.NamespaceLabels = []byte(strings.Join(labels, ","))
- changed = true
- } else {
- env.NamespaceLabels = []byte{}
- changed = true
- }
- if changed {
- env, err = c.Repo().Environment().UpdateEnvironment(env)
- if err != nil {
- c.HandleAPIError(w, r, apierrors.NewErrInternal(err))
- return
- }
- }
- c.WriteResult(w, r, env.ToEnvironmentType())
- }
|