portainer/portainer

View on GitHub
api/http/handler/teams/handler.go

Summary

Maintainability
A
0 mins
Test Coverage
package teams

import (
    "net/http"

    "github.com/portainer/portainer/api/dataservices"
    "github.com/portainer/portainer/api/http/security"
    httperror "github.com/portainer/portainer/pkg/libhttp/error"

    "github.com/gorilla/mux"
)

// Handler is the HTTP handler used to handle team operations.
type Handler struct {
    *mux.Router
    DataStore dataservices.DataStore
}

// NewHandler creates a handler to manage team operations.
func NewHandler(bouncer security.BouncerService) *Handler {
    h := &Handler{
        Router: mux.NewRouter(),
    }

    adminRouter := h.NewRoute().Subrouter()
    adminRouter.Use(bouncer.AdminAccess)

    restrictedRouter := h.NewRoute().Subrouter()
    restrictedRouter.Use(bouncer.RestrictedAccess)

    teamLeaderRouter := h.NewRoute().Subrouter()
    teamLeaderRouter.Use(bouncer.TeamLeaderAccess)

    adminRouter.Handle("/teams", httperror.LoggerHandler(h.teamCreate)).Methods(http.MethodPost)
    restrictedRouter.Handle("/teams", httperror.LoggerHandler(h.teamList)).Methods(http.MethodGet)
    teamLeaderRouter.Handle("/teams/{id}", httperror.LoggerHandler(h.teamInspect)).Methods(http.MethodGet)
    adminRouter.Handle("/teams/{id}", httperror.LoggerHandler(h.teamUpdate)).Methods(http.MethodPut)
    adminRouter.Handle("/teams/{id}", httperror.LoggerHandler(h.teamDelete)).Methods(http.MethodDelete)
    teamLeaderRouter.Handle("/teams/{id}/memberships", httperror.LoggerHandler(h.teamMemberships)).Methods(http.MethodGet)

    return h
}