mirror of https://github.com/portainer/portainer
				
				
				
			
		
			
				
	
	
		
			26 lines
		
	
	
		
			892 B
		
	
	
	
		
			Go
		
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			892 B
		
	
	
	
		
			Go
		
	
	
package endpointgroups
 | 
						|
 | 
						|
import (
 | 
						|
	"net/http"
 | 
						|
 | 
						|
	httperror "github.com/portainer/libhttp/error"
 | 
						|
	"github.com/portainer/libhttp/response"
 | 
						|
	"github.com/portainer/portainer/api/http/security"
 | 
						|
)
 | 
						|
 | 
						|
// GET request on /api/endpoint_groups
 | 
						|
func (handler *Handler) endpointGroupList(w http.ResponseWriter, r *http.Request) *httperror.HandlerError {
 | 
						|
	endpointGroups, err := handler.DataStore.EndpointGroup().EndpointGroups()
 | 
						|
	if err != nil {
 | 
						|
		return &httperror.HandlerError{http.StatusInternalServerError, "Unable to retrieve endpoint groups from the database", err}
 | 
						|
	}
 | 
						|
 | 
						|
	securityContext, err := security.RetrieveRestrictedRequestContext(r)
 | 
						|
	if err != nil {
 | 
						|
		return &httperror.HandlerError{http.StatusInternalServerError, "Unable to retrieve info from request context", err}
 | 
						|
	}
 | 
						|
 | 
						|
	endpointGroups = security.FilterEndpointGroups(endpointGroups, securityContext)
 | 
						|
	return response.JSON(w, endpointGroups)
 | 
						|
}
 |