mirror of https://github.com/portainer/portainer
69 lines
1.9 KiB
Go
69 lines
1.9 KiB
Go
package helm
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"net/url"
|
|
|
|
httperror "github.com/portainer/libhttp/error"
|
|
"github.com/portainer/libhttp/request"
|
|
"github.com/portainer/portainer/pkg/libhelm/options"
|
|
|
|
"github.com/pkg/errors"
|
|
"github.com/rs/zerolog/log"
|
|
)
|
|
|
|
// @id HelmShow
|
|
// @summary Show Helm Chart Information
|
|
// @description
|
|
// @description **Access policy**: authenticated
|
|
// @tags helm
|
|
// @param repo query string true "Helm repository URL"
|
|
// @param chart query string true "Chart name"
|
|
// @param command path string true "chart/values/readme"
|
|
// @security ApiKeyAuth
|
|
// @security jwt
|
|
// @accept json
|
|
// @produce text/plain
|
|
// @success 200 {object} string "Success"
|
|
// @failure 401 "Unauthorized"
|
|
// @failure 404 "Environment(Endpoint) or ServiceAccount not found"
|
|
// @failure 500 "Server error"
|
|
// @router /templates/helm/{command} [get]
|
|
func (handler *Handler) helmShow(w http.ResponseWriter, r *http.Request) *httperror.HandlerError {
|
|
repo := r.URL.Query().Get("repo")
|
|
if repo == "" {
|
|
return httperror.BadRequest("Bad request", errors.New("missing `repo` query parameter"))
|
|
}
|
|
_, err := url.ParseRequestURI(repo)
|
|
if err != nil {
|
|
return httperror.BadRequest("Bad request", errors.Wrap(err, fmt.Sprintf("provided URL %q is not valid", repo)))
|
|
}
|
|
|
|
chart := r.URL.Query().Get("chart")
|
|
if chart == "" {
|
|
return httperror.BadRequest("Bad request", errors.New("missing `chart` query parameter"))
|
|
}
|
|
|
|
cmd, err := request.RetrieveRouteVariableValue(r, "command")
|
|
if err != nil {
|
|
cmd = "all"
|
|
log.Debug().Str("default_command", cmd).Msg("command not provided, using default")
|
|
}
|
|
|
|
showOptions := options.ShowOptions{
|
|
OutputFormat: options.ShowOutputFormat(cmd),
|
|
Chart: chart,
|
|
Repo: repo,
|
|
}
|
|
result, err := handler.helmPackageManager.Show(showOptions)
|
|
if err != nil {
|
|
return httperror.InternalServerError("Unable to show chart", err)
|
|
}
|
|
|
|
w.Header().Set("Content-Type", "text/plain")
|
|
w.Write(result)
|
|
|
|
return nil
|
|
}
|