我正在做一个概念证明来演示我们如何在我们的堆栈中实现3scale 。在一个示例中,我想做一些 POST请求正文操作,以创建一个 API 外观,将可能是旧 API 格式的内容映射到新的内部格式。例如。改变类似的东西
{ "foo" : "bar" , "deprecated" : true }
进入
{ "FOO" : "bar" }
content_by_lua的Lua 模块文档,这似乎是合适的方法
不要在同一位置使用此指令和其他内容处理程序指令。例如,此指令和proxy_pass指令不应在同一位置使用。
我的理解是 content_by_lua 是一个类似于 proxy_pass 的内容处理程序,每个位置只能使用其中一个。
我认为没有任何方法可以删除proxy_pass,因为这是代理工作的基础,所以是否可以在单独的位置捕获请求,使用content_by_lua,然后传递到实现proxy_pass的位置,或者是否有不同的方法,如rewrite_by_lua哪个更合适?
如果它对其他人有帮助,我添加了以下函数(我的 Lua 的第一个位),它删除了user_key
3scale 授权所需的参数,但如果转发则对我们的 API 无效:
function remove_user_key()
ngx.req.read_body()
-- log the original body so we can compare to the new one later
local oldbody = ngx.req.get_body_data()
log(oldbody)
-- grab the POST parameters as a table
local params = ngx.req.get_post_args()
-- build up the new JSON string
local newbody = "{"
for k,v in pairs(params) do
-- add all the params we want to keep
if k ~= "user_key" then
log("adding"..k.." as "..v)
newbody = newbody..'"'..k..'":"'..v..'",'
else
log("not adding user_key")
end
end
--remove the last trailing comma before closing this off
newbody = string.sub(newbody, 0, #newbody-1)
newbody = newbody.."}"
ngx.req.set_body_data(newbody)
log(newbody)
end
if ngx.req.get_method() == "POST" then
remove_user_key()
end