2018-06-11 13:13:19 +00:00
|
|
|
package teams
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
2018-09-10 10:01:38 +00:00
|
|
|
httperror "github.com/portainer/libhttp/error"
|
|
|
|
"github.com/portainer/libhttp/request"
|
|
|
|
"github.com/portainer/libhttp/response"
|
2019-03-21 01:20:14 +00:00
|
|
|
"github.com/portainer/portainer/api"
|
2018-06-11 13:13:19 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type teamUpdatePayload struct {
|
|
|
|
Name string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (payload *teamUpdatePayload) Validate(r *http.Request) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// PUT request on /api/teams/:id
|
|
|
|
func (handler *Handler) teamUpdate(w http.ResponseWriter, r *http.Request) *httperror.HandlerError {
|
|
|
|
teamID, err := request.RetrieveNumericRouteVariableValue(r, "id")
|
|
|
|
if err != nil {
|
|
|
|
return &httperror.HandlerError{http.StatusBadRequest, "Invalid team identifier route variable", err}
|
|
|
|
}
|
|
|
|
|
|
|
|
var payload teamUpdatePayload
|
|
|
|
err = request.DecodeAndValidateJSONPayload(r, &payload)
|
|
|
|
if err != nil {
|
|
|
|
return &httperror.HandlerError{http.StatusBadRequest, "Invalid request payload", err}
|
|
|
|
}
|
|
|
|
|
|
|
|
team, err := handler.TeamService.Team(portainer.TeamID(teamID))
|
2018-06-19 11:15:10 +00:00
|
|
|
if err == portainer.ErrObjectNotFound {
|
2018-06-11 13:13:19 +00:00
|
|
|
return &httperror.HandlerError{http.StatusNotFound, "Unable to find a team with the specified identifier inside the database", err}
|
|
|
|
} else if err != nil {
|
|
|
|
return &httperror.HandlerError{http.StatusInternalServerError, "Unable to find a team with the specified identifier inside the database", err}
|
|
|
|
}
|
|
|
|
|
|
|
|
if payload.Name != "" {
|
|
|
|
team.Name = payload.Name
|
|
|
|
}
|
|
|
|
|
|
|
|
err = handler.TeamService.UpdateTeam(team.ID, team)
|
|
|
|
if err != nil {
|
|
|
|
return &httperror.HandlerError{http.StatusNotFound, "Unable to persist team changes inside the database", err}
|
|
|
|
}
|
|
|
|
|
|
|
|
return response.JSON(w, team)
|
|
|
|
}
|