Skip to content

Commit cd556b2

Browse files
alexsong93mhamann
authored andcommitted
Implement request.path for path parameter mapping
1 parent 055b262 commit cd556b2

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

doc/v2/management_interface_v2.md

+2
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,8 @@ See below for a list of policies that are supported in the gateway and how they
308308
}
309309
```
310310
* `target-url`: the backend url
311+
* _optional:_ to pass the path of your managed url down to the `target-url`, append `/${request.path}` to the end of `target-url`.
312+
Eg. `"target-url": "https://openwhisk.ng.bluemix.net/api/some/action/path.http/${request.path}"`
311313
* `verb`: the method to use when invoking the target-url (use "keep" to use the keep the same verb as the API)
312314

313315
To set a different `target-url` for different paths, use the `operation-switch` policy inside `x-gateway-configuration`.

scripts/lua/policies/backendRouting.lua

+9-3
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,23 @@ local logger = require "lib/logger"
2626
local _M = {}
2727

2828
--- Set upstream based on the backendUrl
29-
function _M.setRoute(backendUrl)
29+
function _M.setRoute(backendUrl, gatewayPath)
3030
local u = url.parse(backendUrl)
3131
if u.scheme == nil then
3232
u = url.parse(utils.concatStrings({'http://', backendUrl}))
3333
end
34+
-- pass down gateway path to upstream path if $(request.path) is specified at the end of backendUrl
35+
if u.path:sub(-15) == '$(request.path)' then
36+
u.path = utils.concatStrings({u.path:sub(1, -16), u.path:sub(-16, -16) == '/' and '' or '/', gatewayPath})
37+
ngx.req.set_uri(u.path)
38+
else
39+
ngx.req.set_uri(getUriPath(u.path))
40+
end
3441
ngx.var.backendUrl = backendUrl
35-
ngx.req.set_uri(getUriPath(u.path))
3642
setUpstream(u)
3743
end
3844

39-
--- Set dynamic route based on the based on the header that is passed in
45+
--- Set dynamic route based on the header that is passed in
4046
function _M.setDynamicRoute(obj)
4147
local whitelist = obj.whitelist
4248
for k in pairs(whitelist) do

scripts/lua/routing.lua

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ local cjson = require "cjson"
2222
local url = require "url"
2323
local utils = require "lib/utils"
2424
local request = require "lib/request"
25+
local logger = require "lib/logger"
2526
-- load policies
2627
local security = require "policies/security"
2728
local mapping = require "policies/mapping"
@@ -85,7 +86,7 @@ function _M.processCall(dataStore)
8586
setVerb(opFields.backendMethod)
8687
end
8788
-- Set backend upstream and uri
88-
backendRouting.setRoute(opFields.backendUrl)
89+
backendRouting.setRoute(opFields.backendUrl, gatewayPath)
8990
-- Parse policies
9091
if opFields.policies ~= nil then
9192
parsePolicies(dataStore, opFields.policies, key)

tools/travis/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export OPENWHISK_HOME=$WHISKDIR
5050
# Tests
5151
cd $WHISKDIR
5252
cat whisk.properties
53-
WSK_TESTS_DEPS_EXCLUDE="-x :core:swift3Action:distDocker -x :core:pythonAction:distDocker -x :core:javaAction:distDocker -x :core:nodejsAction:distDocker -x :core:actionProxy:distDocker -x :sdk:docker:distDocker -x :core:python2Action:copyFiles -x :core:python2Action:distDocker -x :tests:dat:blackbox:badaction:distDocker -x :tests:dat:blackbox:badproxy:distDocker"
53+
WSK_TESTS_DEPS_EXCLUDE="-x :core:swift3Action:distDocker -x :core:pythonAction:distDocker -x :core:javaAction:distDocker -x :core:nodejsAction:distDocker -x :core:actionProxy:distDocker -x :sdk:docker:distDocker -x :core:python2Action:distDocker -x :tests:dat:blackbox:badaction:distDocker -x :tests:dat:blackbox:badproxy:distDocker"
5454
TERM=dumb ./gradlew tests:test --tests apigw.healthtests.* ${WSK_TESTS_DEPS_EXCLUDE}
5555
sleep 60
5656
TERM=dumb ./gradlew tests:test --tests whisk.core.apigw.* ${WSK_TESTS_DEPS_EXCLUDE}

0 commit comments

Comments
 (0)