mirror of https://github.com/portainer/portainer
54 lines
2.0 KiB
Go
54 lines
2.0 KiB
Go
package teams
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
httperror "github.com/portainer/libhttp/error"
|
|
"github.com/portainer/libhttp/request"
|
|
"github.com/portainer/libhttp/response"
|
|
portainer "github.com/portainer/portainer/api"
|
|
"github.com/portainer/portainer/api/http/errors"
|
|
"github.com/portainer/portainer/api/http/security"
|
|
)
|
|
|
|
// @id TeamInspect
|
|
// @summary Inspect a team
|
|
// @description Retrieve details about a team. Access is only available for administrator and leaders of that team.
|
|
// @description **Access policy**: administrator
|
|
// @tags teams
|
|
// @security ApiKeyAuth
|
|
// @security jwt
|
|
// @produce json
|
|
// @param id path int true "Team identifier"
|
|
// @success 200 {object} portainer.Team "Success"
|
|
// @success 204 "Success"
|
|
// @failure 400 "Invalid request"
|
|
// @failure 403 "Permission denied"
|
|
// @failure 404 "Team not found"
|
|
// @failure 500 "Server error"
|
|
// @router /teams/{id} [get]
|
|
func (handler *Handler) teamInspect(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}
|
|
}
|
|
|
|
securityContext, err := security.RetrieveRestrictedRequestContext(r)
|
|
if err != nil {
|
|
return &httperror.HandlerError{http.StatusInternalServerError, "Unable to retrieve info from request context", err}
|
|
}
|
|
|
|
if !security.AuthorizedTeamManagement(portainer.TeamID(teamID), securityContext) {
|
|
return &httperror.HandlerError{http.StatusForbidden, "Access denied to team", errors.ErrResourceAccessDenied}
|
|
}
|
|
|
|
team, err := handler.DataStore.Team().Team(portainer.TeamID(teamID))
|
|
if handler.DataStore.IsErrObjectNotFound(err) {
|
|
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}
|
|
}
|
|
|
|
return response.JSON(w, team)
|
|
}
|