2018-06-11 13:13:19 +00:00
|
|
|
package endpointproxy
|
|
|
|
|
|
|
|
import (
|
2018-11-13 03:08:12 +00:00
|
|
|
"errors"
|
2018-06-11 13:13:19 +00:00
|
|
|
"strconv"
|
|
|
|
|
2018-09-10 10:01:38 +00:00
|
|
|
httperror "github.com/portainer/libhttp/error"
|
|
|
|
"github.com/portainer/libhttp/request"
|
2019-03-21 01:20:14 +00:00
|
|
|
"github.com/portainer/portainer/api"
|
2018-06-11 13:13:19 +00:00
|
|
|
|
|
|
|
"net/http"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (handler *Handler) proxyRequestsToDockerAPI(w http.ResponseWriter, r *http.Request) *httperror.HandlerError {
|
|
|
|
endpointID, err := request.RetrieveNumericRouteVariableValue(r, "id")
|
|
|
|
if err != nil {
|
|
|
|
return &httperror.HandlerError{http.StatusBadRequest, "Invalid endpoint identifier route variable", err}
|
|
|
|
}
|
|
|
|
|
|
|
|
endpoint, err := handler.EndpointService.Endpoint(portainer.EndpointID(endpointID))
|
2018-06-19 11:15:10 +00:00
|
|
|
if err == portainer.ErrObjectNotFound {
|
2018-06-11 13:13:19 +00:00
|
|
|
return &httperror.HandlerError{http.StatusNotFound, "Unable to find an endpoint with the specified identifier inside the database", err}
|
|
|
|
} else if err != nil {
|
|
|
|
return &httperror.HandlerError{http.StatusInternalServerError, "Unable to find an endpoint with the specified identifier inside the database", err}
|
|
|
|
}
|
|
|
|
|
2018-11-13 03:08:12 +00:00
|
|
|
if endpoint.Status == portainer.EndpointStatusDown {
|
|
|
|
return &httperror.HandlerError{http.StatusServiceUnavailable, "Unable to query endpoint", errors.New("Endpoint is down")}
|
|
|
|
}
|
|
|
|
|
2018-06-18 09:56:31 +00:00
|
|
|
err = handler.requestBouncer.EndpointAccess(r, endpoint)
|
2018-06-11 13:13:19 +00:00
|
|
|
if err != nil {
|
2018-06-18 09:56:31 +00:00
|
|
|
return &httperror.HandlerError{http.StatusForbidden, "Permission denied to access endpoint", portainer.ErrEndpointAccessDenied}
|
2018-06-11 13:13:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var proxy http.Handler
|
|
|
|
proxy = handler.ProxyManager.GetProxy(string(endpointID))
|
|
|
|
if proxy == nil {
|
|
|
|
proxy, err = handler.ProxyManager.CreateAndRegisterProxy(endpoint)
|
|
|
|
if err != nil {
|
|
|
|
return &httperror.HandlerError{http.StatusInternalServerError, "Unable to create proxy", err}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
id := strconv.Itoa(endpointID)
|
|
|
|
http.StripPrefix("/"+id+"/docker", proxy).ServeHTTP(w, r)
|
|
|
|
return nil
|
|
|
|
}
|