2018-06-11 13:13:19 +00:00
package endpointproxy
2018-12-09 03:49:27 +00:00
// TODO: legacy extension management
2018-06-11 13:13:19 +00:00
import (
"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 ) proxyRequestsToStoridgeAPI ( 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 }
}
2020-05-20 05:23:15 +00:00
endpoint , err := handler . DataStore . Endpoint ( ) . 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 }
}
2019-05-24 06:04:58 +00:00
err = handler . requestBouncer . AuthorizedEndpointOperation ( r , endpoint , false )
2018-06-11 13:13:19 +00:00
if err != nil {
2019-05-24 06:04:58 +00:00
return & httperror . HandlerError { http . StatusForbidden , "Permission denied to access endpoint" , err }
2018-06-11 13:13:19 +00:00
}
var storidgeExtension * portainer . EndpointExtension
for _ , extension := range endpoint . Extensions {
if extension . Type == portainer . StoridgeEndpointExtension {
storidgeExtension = & extension
}
}
if storidgeExtension == nil {
return & httperror . HandlerError { http . StatusServiceUnavailable , "Storidge extension not supported on this endpoint" , portainer . ErrEndpointExtensionNotSupported }
}
2019-05-24 21:53:10 +00:00
proxyExtensionKey := strconv . Itoa ( endpointID ) + "_" + strconv . Itoa ( int ( portainer . StoridgeEndpointExtension ) ) + "_" + storidgeExtension . URL
2018-06-11 13:13:19 +00:00
var proxy http . Handler
2018-12-09 03:49:27 +00:00
proxy = handler . ProxyManager . GetLegacyExtensionProxy ( proxyExtensionKey )
2018-06-11 13:13:19 +00:00
if proxy == nil {
2018-12-09 03:49:27 +00:00
proxy , err = handler . ProxyManager . CreateLegacyExtensionProxy ( proxyExtensionKey , storidgeExtension . URL )
2018-06-11 13:13:19 +00:00
if err != nil {
return & httperror . HandlerError { http . StatusInternalServerError , "Unable to create extension proxy" , err }
}
}
id := strconv . Itoa ( endpointID )
2019-05-26 22:41:12 +00:00
http . StripPrefix ( "/" + id + "/storidge" , proxy ) . ServeHTTP ( w , r )
2018-06-11 13:13:19 +00:00
return nil
}