2020-07-06 23:18:39 +00:00
|
|
|
package customtemplates
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"strconv"
|
|
|
|
|
|
|
|
httperror "github.com/portainer/libhttp/error"
|
|
|
|
"github.com/portainer/libhttp/request"
|
|
|
|
"github.com/portainer/libhttp/response"
|
2021-02-23 03:21:39 +00:00
|
|
|
portainer "github.com/portainer/portainer/api"
|
2020-07-08 00:25:37 +00:00
|
|
|
bolterrors "github.com/portainer/portainer/api/bolt/errors"
|
|
|
|
httperrors "github.com/portainer/portainer/api/http/errors"
|
2020-07-06 23:18:39 +00:00
|
|
|
"github.com/portainer/portainer/api/http/security"
|
|
|
|
)
|
|
|
|
|
2021-02-23 03:21:39 +00:00
|
|
|
// @id CustomTemplateInspect
|
|
|
|
// @summary Inspect a custom template
|
|
|
|
// @description Retrieve details about a template.
|
|
|
|
// @description **Access policy**: authenticated
|
|
|
|
// @tags custom_templates
|
|
|
|
// @security jwt
|
|
|
|
// @accept json
|
|
|
|
// @produce json
|
|
|
|
// @param id path int true "Template identifier"
|
|
|
|
// @success 200 {object} portainer.CustomTemplate "Success"
|
|
|
|
// @failure 400 "Invalid request"
|
|
|
|
// @failure 404 "Template not found"
|
|
|
|
// @failure 500 "Server error"
|
|
|
|
// @router /custom_templates/{id} [get]
|
2020-07-06 23:18:39 +00:00
|
|
|
func (handler *Handler) customTemplateInspect(w http.ResponseWriter, r *http.Request) *httperror.HandlerError {
|
|
|
|
customTemplateID, err := request.RetrieveNumericRouteVariableValue(r, "id")
|
|
|
|
if err != nil {
|
|
|
|
return &httperror.HandlerError{http.StatusBadRequest, "Invalid Custom template identifier route variable", err}
|
|
|
|
}
|
|
|
|
|
|
|
|
customTemplate, err := handler.DataStore.CustomTemplate().CustomTemplate(portainer.CustomTemplateID(customTemplateID))
|
2020-07-08 00:25:37 +00:00
|
|
|
if err == bolterrors.ErrObjectNotFound {
|
2020-07-06 23:18:39 +00:00
|
|
|
return &httperror.HandlerError{http.StatusNotFound, "Unable to find a custom template with the specified identifier inside the database", err}
|
|
|
|
} else if err != nil {
|
|
|
|
return &httperror.HandlerError{http.StatusInternalServerError, "Unable to find a custom template with the specified identifier inside the database", err}
|
|
|
|
}
|
|
|
|
|
|
|
|
securityContext, err := security.RetrieveRestrictedRequestContext(r)
|
|
|
|
if err != nil {
|
|
|
|
return &httperror.HandlerError{http.StatusInternalServerError, "Unable to retrieve user info from request context", err}
|
|
|
|
}
|
|
|
|
|
|
|
|
resourceControl, err := handler.DataStore.ResourceControl().ResourceControlByResourceIDAndType(strconv.Itoa(customTemplateID), portainer.CustomTemplateResourceControl)
|
|
|
|
if err != nil {
|
|
|
|
return &httperror.HandlerError{http.StatusInternalServerError, "Unable to retrieve a resource control associated to the custom template", err}
|
|
|
|
}
|
|
|
|
|
|
|
|
access := userCanEditTemplate(customTemplate, securityContext)
|
|
|
|
if !access {
|
2020-07-08 00:25:37 +00:00
|
|
|
return &httperror.HandlerError{http.StatusForbidden, "Access denied to resource", httperrors.ErrResourceAccessDenied}
|
2020-07-06 23:18:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if resourceControl != nil {
|
|
|
|
customTemplate.ResourceControl = resourceControl
|
|
|
|
}
|
|
|
|
|
|
|
|
return response.JSON(w, customTemplate)
|
|
|
|
}
|