2018-06-11 15:13:19 +02:00
|
|
|
package users
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
2018-09-10 12:01:38 +02:00
|
|
|
httperror "github.com/portainer/libhttp/error"
|
|
|
|
"github.com/portainer/libhttp/request"
|
|
|
|
"github.com/portainer/libhttp/response"
|
2021-02-23 05:21:39 +02:00
|
|
|
portainer "github.com/portainer/portainer/api"
|
2020-07-08 00:57:52 +03:00
|
|
|
"github.com/portainer/portainer/api/http/errors"
|
2019-03-21 14:20:14 +13:00
|
|
|
"github.com/portainer/portainer/api/http/security"
|
2018-06-11 15:13:19 +02:00
|
|
|
)
|
|
|
|
|
2021-02-23 05:21:39 +02:00
|
|
|
// @id UserMembershipsInspect
|
|
|
|
// @summary Inspect a user memberships
|
|
|
|
// @description Inspect a user memberships.
|
2021-10-12 12:12:08 +13:00
|
|
|
// @description **Access policy**: restricted
|
2021-02-23 05:21:39 +02:00
|
|
|
// @tags users
|
2021-11-30 15:31:16 +13:00
|
|
|
// @security ApiKeyAuth
|
2021-02-23 05:21:39 +02:00
|
|
|
// @security jwt
|
|
|
|
// @produce json
|
|
|
|
// @param id path int true "User identifier"
|
|
|
|
// @success 200 {object} portainer.TeamMembership "Success"
|
|
|
|
// @failure 400 "Invalid request"
|
|
|
|
// @failure 403 "Permission denied"
|
|
|
|
// @failure 500 "Server error"
|
|
|
|
// @router /users/{id}/memberships [get]
|
2018-06-11 15:13:19 +02:00
|
|
|
func (handler *Handler) userMemberships(w http.ResponseWriter, r *http.Request) *httperror.HandlerError {
|
|
|
|
userID, err := request.RetrieveNumericRouteVariableValue(r, "id")
|
|
|
|
if err != nil {
|
2022-09-14 20:42:39 -03:00
|
|
|
return httperror.BadRequest("Invalid user identifier route variable", err)
|
2018-06-11 15:13:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
tokenData, err := security.RetrieveTokenData(r)
|
|
|
|
if err != nil {
|
2022-09-14 20:42:39 -03:00
|
|
|
return httperror.InternalServerError("Unable to retrieve user authentication token", err)
|
2018-06-11 15:13:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if tokenData.Role != portainer.AdministratorRole && tokenData.ID != portainer.UserID(userID) {
|
2022-09-14 20:42:39 -03:00
|
|
|
return httperror.Forbidden("Permission denied to update user memberships", errors.ErrUnauthorized)
|
2018-06-11 15:13:19 +02:00
|
|
|
}
|
|
|
|
|
2020-05-20 17:23:15 +12:00
|
|
|
memberships, err := handler.DataStore.TeamMembership().TeamMembershipsByUserID(portainer.UserID(userID))
|
2018-06-11 15:13:19 +02:00
|
|
|
if err != nil {
|
2022-09-14 20:42:39 -03:00
|
|
|
return httperror.InternalServerError("Unable to persist membership changes inside the database", err)
|
2018-06-11 15:13:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return response.JSON(w, memberships)
|
|
|
|
}
|