2017-05-23 18:56:10 +00:00
|
|
|
package handler
|
2016-12-18 05:21:29 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"strings"
|
2017-05-23 18:56:10 +00:00
|
|
|
|
2019-10-09 21:59:27 +00:00
|
|
|
"github.com/portainer/portainer/api/http/handler/support"
|
|
|
|
|
2019-05-24 06:04:58 +00:00
|
|
|
"github.com/portainer/portainer/api/http/handler/schedules"
|
|
|
|
|
|
|
|
"github.com/portainer/portainer/api/http/handler/roles"
|
|
|
|
|
2019-03-21 01:20:14 +00:00
|
|
|
"github.com/portainer/portainer/api/http/handler/auth"
|
|
|
|
"github.com/portainer/portainer/api/http/handler/dockerhub"
|
|
|
|
"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/extensions"
|
|
|
|
"github.com/portainer/portainer/api/http/handler/file"
|
|
|
|
"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/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"
|
2016-12-18 05:21:29 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Handler is a collection of all the service handlers.
|
|
|
|
type Handler struct {
|
2019-05-24 06:04:58 +00:00
|
|
|
AuthHandler *auth.Handler
|
2018-06-11 13:13:19 +00:00
|
|
|
DockerHubHandler *dockerhub.Handler
|
|
|
|
EndpointGroupHandler *endpointgroups.Handler
|
|
|
|
EndpointHandler *endpoints.Handler
|
|
|
|
EndpointProxyHandler *endpointproxy.Handler
|
|
|
|
FileHandler *file.Handler
|
2018-08-21 18:40:42 +00:00
|
|
|
MOTDHandler *motd.Handler
|
2018-12-09 03:49:27 +00:00
|
|
|
ExtensionHandler *extensions.Handler
|
2018-06-11 13:13:19 +00:00
|
|
|
RegistryHandler *registries.Handler
|
|
|
|
ResourceControlHandler *resourcecontrols.Handler
|
2019-05-24 06:04:58 +00:00
|
|
|
RoleHandler *roles.Handler
|
|
|
|
SchedulesHanlder *schedules.Handler
|
2018-06-11 13:13:19 +00:00
|
|
|
SettingsHandler *settings.Handler
|
|
|
|
StackHandler *stacks.Handler
|
|
|
|
StatusHandler *status.Handler
|
2019-10-09 21:59:27 +00:00
|
|
|
SupportHandler *support.Handler
|
2018-06-15 07:18:25 +00:00
|
|
|
TagHandler *tags.Handler
|
2018-06-11 13:13:19 +00:00
|
|
|
TeamMembershipHandler *teammemberships.Handler
|
|
|
|
TeamHandler *teams.Handler
|
|
|
|
TemplatesHandler *templates.Handler
|
|
|
|
UploadHandler *upload.Handler
|
|
|
|
UserHandler *users.Handler
|
|
|
|
WebSocketHandler *websocket.Handler
|
2018-09-03 10:08:03 +00:00
|
|
|
WebhookHandler *webhooks.Handler
|
2018-06-11 13:13:19 +00:00
|
|
|
}
|
2016-12-18 05:21:29 +00:00
|
|
|
|
|
|
|
// ServeHTTP delegates a request to the appropriate subhandler.
|
|
|
|
func (h *Handler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
2017-08-13 14:45:55 +00:00
|
|
|
switch {
|
|
|
|
case strings.HasPrefix(r.URL.Path, "/api/auth"):
|
2016-12-18 05:21:29 +00:00
|
|
|
http.StripPrefix("/api", h.AuthHandler).ServeHTTP(w, r)
|
2017-08-13 14:45:55 +00:00
|
|
|
case strings.HasPrefix(r.URL.Path, "/api/dockerhub"):
|
|
|
|
http.StripPrefix("/api", h.DockerHubHandler).ServeHTTP(w, r)
|
2018-04-26 16:08:46 +00:00
|
|
|
case strings.HasPrefix(r.URL.Path, "/api/endpoint_groups"):
|
|
|
|
http.StripPrefix("/api", h.EndpointGroupHandler).ServeHTTP(w, r)
|
2017-08-13 14:45:55 +00:00
|
|
|
case strings.HasPrefix(r.URL.Path, "/api/endpoints"):
|
2018-02-23 02:10:26 +00:00
|
|
|
switch {
|
2018-03-12 23:06:38 +00:00
|
|
|
case strings.Contains(r.URL.Path, "/docker/"):
|
2018-06-11 13:13:19 +00:00
|
|
|
http.StripPrefix("/api/endpoints", h.EndpointProxyHandler).ServeHTTP(w, r)
|
2019-05-26 22:41:12 +00:00
|
|
|
case strings.Contains(r.URL.Path, "/storidge/"):
|
2018-06-11 13:13:19 +00:00
|
|
|
http.StripPrefix("/api/endpoints", h.EndpointProxyHandler).ServeHTTP(w, r)
|
2018-05-28 14:40:33 +00:00
|
|
|
case strings.Contains(r.URL.Path, "/azure/"):
|
2018-06-11 13:13:19 +00:00
|
|
|
http.StripPrefix("/api/endpoints", h.EndpointProxyHandler).ServeHTTP(w, r)
|
2018-02-23 02:10:26 +00:00
|
|
|
default:
|
2017-07-20 14:22:27 +00:00
|
|
|
http.StripPrefix("/api", h.EndpointHandler).ServeHTTP(w, r)
|
|
|
|
}
|
2018-12-09 03:49:27 +00:00
|
|
|
case strings.HasPrefix(r.URL.Path, "/api/extensions"):
|
|
|
|
http.StripPrefix("/api", h.ExtensionHandler).ServeHTTP(w, r)
|
2019-05-24 06:04:58 +00:00
|
|
|
case strings.HasPrefix(r.URL.Path, "/api/motd"):
|
|
|
|
http.StripPrefix("/api", h.MOTDHandler).ServeHTTP(w, r)
|
2017-08-13 14:45:55 +00:00
|
|
|
case strings.HasPrefix(r.URL.Path, "/api/registries"):
|
2017-06-20 11:00:32 +00:00
|
|
|
http.StripPrefix("/api", h.RegistryHandler).ServeHTTP(w, r)
|
2017-08-13 14:45:55 +00:00
|
|
|
case strings.HasPrefix(r.URL.Path, "/api/resource_controls"):
|
2018-06-11 13:13:19 +00:00
|
|
|
http.StripPrefix("/api", h.ResourceControlHandler).ServeHTTP(w, r)
|
2019-05-24 06:04:58 +00:00
|
|
|
case strings.HasPrefix(r.URL.Path, "/api/roles"):
|
|
|
|
http.StripPrefix("/api", h.RoleHandler).ServeHTTP(w, r)
|
|
|
|
case strings.HasPrefix(r.URL.Path, "/api/schedules"):
|
|
|
|
http.StripPrefix("/api", h.SchedulesHanlder).ServeHTTP(w, r)
|
2017-08-13 14:45:55 +00:00
|
|
|
case strings.HasPrefix(r.URL.Path, "/api/settings"):
|
2016-12-18 05:21:29 +00:00
|
|
|
http.StripPrefix("/api", h.SettingsHandler).ServeHTTP(w, r)
|
2018-06-11 13:13:19 +00:00
|
|
|
case strings.HasPrefix(r.URL.Path, "/api/stacks"):
|
|
|
|
http.StripPrefix("/api", h.StackHandler).ServeHTTP(w, r)
|
2017-08-13 14:45:55 +00:00
|
|
|
case strings.HasPrefix(r.URL.Path, "/api/status"):
|
2017-06-01 08:14:55 +00:00
|
|
|
http.StripPrefix("/api", h.StatusHandler).ServeHTTP(w, r)
|
2019-10-09 21:59:27 +00:00
|
|
|
case strings.HasPrefix(r.URL.Path, "/api/support"):
|
|
|
|
http.StripPrefix("/api", h.SupportHandler).ServeHTTP(w, r)
|
2018-06-15 07:18:25 +00:00
|
|
|
case strings.HasPrefix(r.URL.Path, "/api/tags"):
|
|
|
|
http.StripPrefix("/api", h.TagHandler).ServeHTTP(w, r)
|
2017-08-13 14:45:55 +00:00
|
|
|
case strings.HasPrefix(r.URL.Path, "/api/templates"):
|
2016-12-18 05:21:29 +00:00
|
|
|
http.StripPrefix("/api", h.TemplatesHandler).ServeHTTP(w, r)
|
2017-08-13 14:45:55 +00:00
|
|
|
case strings.HasPrefix(r.URL.Path, "/api/upload"):
|
2016-12-25 20:34:02 +00:00
|
|
|
http.StripPrefix("/api", h.UploadHandler).ServeHTTP(w, r)
|
2017-08-13 14:45:55 +00:00
|
|
|
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"):
|
2016-12-18 05:21:29 +00:00
|
|
|
http.StripPrefix("/api", h.WebSocketHandler).ServeHTTP(w, r)
|
2018-09-03 10:08:03 +00:00
|
|
|
case strings.HasPrefix(r.URL.Path, "/api/webhooks"):
|
|
|
|
http.StripPrefix("/api", h.WebhookHandler).ServeHTTP(w, r)
|
2017-08-13 14:45:55 +00:00
|
|
|
case strings.HasPrefix(r.URL.Path, "/"):
|
2016-12-18 05:21:29 +00:00
|
|
|
h.FileHandler.ServeHTTP(w, r)
|
|
|
|
}
|
|
|
|
}
|