mirror of https://github.com/portainer/portainer
				
				
				
			
		
			
				
	
	
		
			50 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Go
		
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Go
		
	
	
package users
 | 
						|
 | 
						|
import (
 | 
						|
	"net/http"
 | 
						|
 | 
						|
	portainer "github.com/portainer/portainer/api"
 | 
						|
	"github.com/portainer/portainer/api/http/errors"
 | 
						|
	"github.com/portainer/portainer/api/http/security"
 | 
						|
	httperror "github.com/portainer/portainer/pkg/libhttp/error"
 | 
						|
	"github.com/portainer/portainer/pkg/libhttp/request"
 | 
						|
	"github.com/portainer/portainer/pkg/libhttp/response"
 | 
						|
)
 | 
						|
 | 
						|
// @id UserMembershipsInspect
 | 
						|
// @summary Inspect a user memberships
 | 
						|
// @description Inspect a user memberships.
 | 
						|
// @description **Access policy**: restricted
 | 
						|
// @tags users
 | 
						|
// @security ApiKeyAuth
 | 
						|
// @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]
 | 
						|
func (handler *Handler) userMemberships(w http.ResponseWriter, r *http.Request) *httperror.HandlerError {
 | 
						|
	userID, err := request.RetrieveNumericRouteVariableValue(r, "id")
 | 
						|
	if err != nil {
 | 
						|
		return httperror.BadRequest("Invalid user identifier route variable", err)
 | 
						|
	}
 | 
						|
 | 
						|
	tokenData, err := security.RetrieveTokenData(r)
 | 
						|
	if err != nil {
 | 
						|
		return httperror.InternalServerError("Unable to retrieve user authentication token", err)
 | 
						|
	}
 | 
						|
 | 
						|
	if tokenData.Role != portainer.AdministratorRole && tokenData.ID != portainer.UserID(userID) {
 | 
						|
		return httperror.Forbidden("Permission denied to update user memberships", errors.ErrUnauthorized)
 | 
						|
	}
 | 
						|
 | 
						|
	memberships, err := handler.DataStore.TeamMembership().TeamMembershipsByUserID(portainer.UserID(userID))
 | 
						|
	if err != nil {
 | 
						|
		return httperror.InternalServerError("Unable to persist membership changes inside the database", err)
 | 
						|
	}
 | 
						|
 | 
						|
	return response.JSON(w, memberships)
 | 
						|
}
 |