115 lines
3.4 KiB
Go
115 lines
3.4 KiB
Go
package sources
|
|
|
|
import (
|
|
"errors"
|
|
"net/http"
|
|
|
|
portainer "github.com/portainer/portainer/api"
|
|
"github.com/portainer/portainer/api/dataservices"
|
|
gittypes "github.com/portainer/portainer/api/git/types"
|
|
httperror "github.com/portainer/portainer/pkg/libhttp/error"
|
|
"github.com/portainer/portainer/pkg/libhttp/request"
|
|
"github.com/portainer/portainer/pkg/libhttp/response"
|
|
)
|
|
|
|
var (
|
|
ErrNotGitSource = errors.New("source is not a Git source")
|
|
ErrDuplicateSourceURL = errors.New("a source with this URL already exists")
|
|
)
|
|
|
|
// @id GitOpsSourcesUpdateGit
|
|
// @summary Update a Git source
|
|
// @description Updates an existing GitOps source backed by a Git repository.
|
|
// @description **Access policy**: admin
|
|
// @tags gitops
|
|
// @security ApiKeyAuth
|
|
// @security jwt
|
|
// @accept json
|
|
// @produce json
|
|
// @param id path int true "Source identifier"
|
|
// @param body body GitSourceCreatePayload true "Git source details"
|
|
// @success 200 {object} portainer.Source
|
|
// @failure 400 "Invalid request payload"
|
|
// @failure 403 "Access denied"
|
|
// @failure 404 "Source not found"
|
|
// @failure 409 "A source with this URL already exists"
|
|
// @failure 500 "Server error"
|
|
// @router /gitops/sources/{id} [put]
|
|
func (h *Handler) gitSourceUpdate(w http.ResponseWriter, r *http.Request) *httperror.HandlerError {
|
|
sourceID, err := request.RetrieveNumericRouteVariableValue(r, "id")
|
|
if err != nil {
|
|
return httperror.BadRequest("Invalid source identifier route variable", err)
|
|
}
|
|
|
|
var payload GitSourceCreatePayload
|
|
|
|
if err := request.DecodeAndValidateJSONPayload(r, &payload); err != nil {
|
|
return httperror.BadRequest("Invalid request payload", err)
|
|
}
|
|
|
|
var src *portainer.Source
|
|
|
|
if err := h.dataStore.UpdateTx(func(tx dataservices.DataStoreTx) error {
|
|
var err error
|
|
|
|
if src, err = tx.Source().Read(portainer.SourceID(sourceID)); err != nil {
|
|
return err
|
|
}
|
|
|
|
if src.Type != portainer.SourceTypeGit {
|
|
return ErrNotGitSource
|
|
}
|
|
|
|
normalizedURL, err := gittypes.NormalizeURL(payload.URL)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
existing, err := tx.Source().ReadAll(func(s portainer.Source) bool {
|
|
if s.ID == src.ID || s.Type != portainer.SourceTypeGit || s.GitConfig == nil {
|
|
return false
|
|
}
|
|
|
|
normalized, err := gittypes.NormalizeURL(s.GitConfig.URL)
|
|
|
|
return err == nil && normalized == normalizedURL
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if len(existing) > 0 {
|
|
return ErrDuplicateSourceURL
|
|
}
|
|
|
|
var existingAuth *gittypes.GitAuthentication
|
|
if src.GitConfig != nil {
|
|
existingAuth = src.GitConfig.Authentication
|
|
}
|
|
|
|
updated := BuildGitSource(payload)
|
|
src.Name = updated.Name
|
|
src.GitConfig = updated.GitConfig
|
|
|
|
if payload.Authentication == nil {
|
|
src.GitConfig.Authentication = existingAuth
|
|
} else if *payload.Authentication == (GitAuthenticationPayload{}) {
|
|
src.GitConfig.Authentication = nil
|
|
}
|
|
|
|
return tx.Source().Update(src.ID, src)
|
|
}); h.dataStore.IsErrObjectNotFound(err) {
|
|
return httperror.NotFound("Unable to find a source with the specified identifier", err)
|
|
} else if errors.Is(err, ErrNotGitSource) {
|
|
return httperror.BadRequest("Source is not a Git source", err)
|
|
} else if errors.Is(err, ErrDuplicateSourceURL) {
|
|
return httperror.Conflict("A source with this URL already exists", err)
|
|
} else if err != nil {
|
|
return httperror.InternalServerError("Unable to update source", err)
|
|
}
|
|
|
|
src.GitConfig = gittypes.SanitizeRepoConfig(src.GitConfig)
|
|
|
|
return response.JSON(w, src)
|
|
}
|