15ce12e7b7
* feat(license): add liblicense dep * feat(license): add bolt license service * feat(license): introduce license service * feat(license): validate license before adding * feat(license): aggregate info after changing of licenses * feat(http): implement http handlers * feat(license-management): introduce license service * feat(licenses): introduce empty view * feat(license-management): add datatable * feat(licenses): show license info * fix(license): inject services * feat(licenses): add buttons to buy/renew license * feat(licenses): introduce add license route * feat(licenses): add license form * feat(license): datatable * feat(license): show more details about license * refactor(license): rename components name * feat(licenses): show expiration date * feat(license): introduce init license route * feat(license): validate license * feat(license): save licenses * feat(bouncer): check if license is valid on restricted * feat(bouncer): remove license check on api * feat(home): add node warning * feat(licenses): remove license * feat(licenses): listen to info changes * feat(license): show license expiration message * feat(license): block regular users from licenses view * feat(license): prevent removing of last license * fix(license): show message when failed delete * feat(license): remove trial license when applying oneoff * feat(license): hide the number of nodes for trial * feat(auth): disable login if license is invalid * feat(licenses): add confirmation before removal of license * feat(nodes): count nodes in env * feat(license): show message if nodes exceed allowed * feat(deps): update liblicense * feat(licenses): show validation errors * feat(license): use information panel for node info * fix(license): reload license data on remove * fix(license): always send list of failed keys * fix(license): rename buttons * feat(license): replace icon * feat(license): add link to licenses page in add license * fix(licenses): show green valid icon * fix(licenses): rename expires at * fix(licenses): rename Attach to add * fix(licenses): show license type label * feat(license): aggregate revoked info * chore(deps): update liblicense * fix(license): remove space * fix(sidebar): align icon * fix(license): change info layout * feat(license): aggregate only valid licenses * fix(licenses): move add license to a new line * style(license): remove console * refactor(license): move license line to component * feat(license): check server validation * fix(licenses): check form validation before submit * feat(licenses): send only invalid licenses * fix(license): hide panels when not needed * feat(licnese): receive a single license on init * refactor(header): move header to module * feat(license): move license panel to header * fix(header): set min height * fix(home): show node warning only if subscription * feat(licenses): minor UI updates * feat(licenses): minor UI update * feat(licenses-datatable): add copy button * fix(licenses-datatable): show date without hours * feat(license): show expiration message * fix(users): get user info only on restriced access * fix(license): clear check for single license Co-authored-by: Anthony Lapenna <lapenna.anthony@gmail.com>
141 lines
6.8 KiB
Go
141 lines
6.8 KiB
Go
package handler
|
|
|
|
import (
|
|
"net/http"
|
|
"strings"
|
|
|
|
"github.com/portainer/portainer/api/http/handler/auth"
|
|
"github.com/portainer/portainer/api/http/handler/customtemplates"
|
|
"github.com/portainer/portainer/api/http/handler/dockerhub"
|
|
"github.com/portainer/portainer/api/http/handler/edgegroups"
|
|
"github.com/portainer/portainer/api/http/handler/edgejobs"
|
|
"github.com/portainer/portainer/api/http/handler/edgestacks"
|
|
"github.com/portainer/portainer/api/http/handler/edgetemplates"
|
|
"github.com/portainer/portainer/api/http/handler/endpointedge"
|
|
"github.com/portainer/portainer/api/http/handler/endpointgroups"
|
|
"github.com/portainer/portainer/api/http/handler/endpointproxy"
|
|
"github.com/portainer/portainer/api/http/handler/endpoints"
|
|
"github.com/portainer/portainer/api/http/handler/file"
|
|
"github.com/portainer/portainer/api/http/handler/licenses"
|
|
"github.com/portainer/portainer/api/http/handler/motd"
|
|
"github.com/portainer/portainer/api/http/handler/registries"
|
|
"github.com/portainer/portainer/api/http/handler/resourcecontrols"
|
|
"github.com/portainer/portainer/api/http/handler/roles"
|
|
"github.com/portainer/portainer/api/http/handler/settings"
|
|
"github.com/portainer/portainer/api/http/handler/stacks"
|
|
"github.com/portainer/portainer/api/http/handler/status"
|
|
"github.com/portainer/portainer/api/http/handler/tags"
|
|
"github.com/portainer/portainer/api/http/handler/teammemberships"
|
|
"github.com/portainer/portainer/api/http/handler/teams"
|
|
"github.com/portainer/portainer/api/http/handler/templates"
|
|
"github.com/portainer/portainer/api/http/handler/upload"
|
|
"github.com/portainer/portainer/api/http/handler/users"
|
|
"github.com/portainer/portainer/api/http/handler/webhooks"
|
|
"github.com/portainer/portainer/api/http/handler/websocket"
|
|
)
|
|
|
|
// Handler is a collection of all the service handlers.
|
|
type Handler struct {
|
|
AuthHandler *auth.Handler
|
|
CustomTemplatesHandler *customtemplates.Handler
|
|
DockerHubHandler *dockerhub.Handler
|
|
EdgeGroupsHandler *edgegroups.Handler
|
|
EdgeJobsHandler *edgejobs.Handler
|
|
EdgeStacksHandler *edgestacks.Handler
|
|
EdgeTemplatesHandler *edgetemplates.Handler
|
|
EndpointEdgeHandler *endpointedge.Handler
|
|
EndpointGroupHandler *endpointgroups.Handler
|
|
EndpointHandler *endpoints.Handler
|
|
EndpointProxyHandler *endpointproxy.Handler
|
|
FileHandler *file.Handler
|
|
MOTDHandler *motd.Handler
|
|
LicenseHandler *licenses.Handler
|
|
RegistryHandler *registries.Handler
|
|
ResourceControlHandler *resourcecontrols.Handler
|
|
RoleHandler *roles.Handler
|
|
SettingsHandler *settings.Handler
|
|
StackHandler *stacks.Handler
|
|
StatusHandler *status.Handler
|
|
TagHandler *tags.Handler
|
|
TeamMembershipHandler *teammemberships.Handler
|
|
TeamHandler *teams.Handler
|
|
TemplatesHandler *templates.Handler
|
|
UploadHandler *upload.Handler
|
|
UserHandler *users.Handler
|
|
WebSocketHandler *websocket.Handler
|
|
WebhookHandler *webhooks.Handler
|
|
}
|
|
|
|
// ServeHTTP delegates a request to the appropriate subhandler.
|
|
func (h *Handler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
switch {
|
|
case strings.HasPrefix(r.URL.Path, "/api/auth"):
|
|
http.StripPrefix("/api", h.AuthHandler).ServeHTTP(w, r)
|
|
case strings.HasPrefix(r.URL.Path, "/api/dockerhub"):
|
|
http.StripPrefix("/api", h.DockerHubHandler).ServeHTTP(w, r)
|
|
case strings.HasPrefix(r.URL.Path, "/api/custom_templates"):
|
|
http.StripPrefix("/api", h.CustomTemplatesHandler).ServeHTTP(w, r)
|
|
case strings.HasPrefix(r.URL.Path, "/api/edge_stacks"):
|
|
http.StripPrefix("/api", h.EdgeStacksHandler).ServeHTTP(w, r)
|
|
case strings.HasPrefix(r.URL.Path, "/api/edge_groups"):
|
|
http.StripPrefix("/api", h.EdgeGroupsHandler).ServeHTTP(w, r)
|
|
case strings.HasPrefix(r.URL.Path, "/api/edge_jobs"):
|
|
http.StripPrefix("/api", h.EdgeJobsHandler).ServeHTTP(w, r)
|
|
case strings.HasPrefix(r.URL.Path, "/api/edge_stacks"):
|
|
http.StripPrefix("/api", h.EdgeStacksHandler).ServeHTTP(w, r)
|
|
case strings.HasPrefix(r.URL.Path, "/api/edge_templates"):
|
|
http.StripPrefix("/api", h.EdgeTemplatesHandler).ServeHTTP(w, r)
|
|
case strings.HasPrefix(r.URL.Path, "/api/endpoint_groups"):
|
|
http.StripPrefix("/api", h.EndpointGroupHandler).ServeHTTP(w, r)
|
|
case strings.HasPrefix(r.URL.Path, "/api/endpoints"):
|
|
switch {
|
|
case strings.Contains(r.URL.Path, "/docker/"):
|
|
http.StripPrefix("/api/endpoints", h.EndpointProxyHandler).ServeHTTP(w, r)
|
|
case strings.Contains(r.URL.Path, "/kubernetes/"):
|
|
http.StripPrefix("/api/endpoints", h.EndpointProxyHandler).ServeHTTP(w, r)
|
|
case strings.Contains(r.URL.Path, "/storidge/"):
|
|
http.StripPrefix("/api/endpoints", h.EndpointProxyHandler).ServeHTTP(w, r)
|
|
case strings.Contains(r.URL.Path, "/azure/"):
|
|
http.StripPrefix("/api/endpoints", h.EndpointProxyHandler).ServeHTTP(w, r)
|
|
case strings.Contains(r.URL.Path, "/edge/"):
|
|
http.StripPrefix("/api/endpoints", h.EndpointEdgeHandler).ServeHTTP(w, r)
|
|
default:
|
|
http.StripPrefix("/api", h.EndpointHandler).ServeHTTP(w, r)
|
|
}
|
|
case strings.HasPrefix(r.URL.Path, "/api/licenses"):
|
|
http.StripPrefix("/api", h.LicenseHandler).ServeHTTP(w, r)
|
|
case strings.HasPrefix(r.URL.Path, "/api/motd"):
|
|
http.StripPrefix("/api", h.MOTDHandler).ServeHTTP(w, r)
|
|
case strings.HasPrefix(r.URL.Path, "/api/registries"):
|
|
http.StripPrefix("/api", h.RegistryHandler).ServeHTTP(w, r)
|
|
case strings.HasPrefix(r.URL.Path, "/api/resource_controls"):
|
|
http.StripPrefix("/api", h.ResourceControlHandler).ServeHTTP(w, r)
|
|
case strings.HasPrefix(r.URL.Path, "/api/roles"):
|
|
http.StripPrefix("/api", h.RoleHandler).ServeHTTP(w, r)
|
|
case strings.HasPrefix(r.URL.Path, "/api/settings"):
|
|
http.StripPrefix("/api", h.SettingsHandler).ServeHTTP(w, r)
|
|
case strings.HasPrefix(r.URL.Path, "/api/stacks"):
|
|
http.StripPrefix("/api", h.StackHandler).ServeHTTP(w, r)
|
|
case strings.HasPrefix(r.URL.Path, "/api/status"):
|
|
http.StripPrefix("/api", h.StatusHandler).ServeHTTP(w, r)
|
|
case strings.HasPrefix(r.URL.Path, "/api/tags"):
|
|
http.StripPrefix("/api", h.TagHandler).ServeHTTP(w, r)
|
|
case strings.HasPrefix(r.URL.Path, "/api/templates"):
|
|
http.StripPrefix("/api", h.TemplatesHandler).ServeHTTP(w, r)
|
|
case strings.HasPrefix(r.URL.Path, "/api/upload"):
|
|
http.StripPrefix("/api", h.UploadHandler).ServeHTTP(w, r)
|
|
case strings.HasPrefix(r.URL.Path, "/api/users"):
|
|
http.StripPrefix("/api", h.UserHandler).ServeHTTP(w, r)
|
|
case strings.HasPrefix(r.URL.Path, "/api/teams"):
|
|
http.StripPrefix("/api", h.TeamHandler).ServeHTTP(w, r)
|
|
case strings.HasPrefix(r.URL.Path, "/api/team_memberships"):
|
|
http.StripPrefix("/api", h.TeamMembershipHandler).ServeHTTP(w, r)
|
|
case strings.HasPrefix(r.URL.Path, "/api/websocket"):
|
|
http.StripPrefix("/api", h.WebSocketHandler).ServeHTTP(w, r)
|
|
case strings.HasPrefix(r.URL.Path, "/api/webhooks"):
|
|
http.StripPrefix("/api", h.WebhookHandler).ServeHTTP(w, r)
|
|
case strings.HasPrefix(r.URL.Path, "/"):
|
|
h.FileHandler.ServeHTTP(w, r)
|
|
}
|
|
}
|