Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(body-transformer): support mulipart content-type #11767

Merged
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions apisix-master-0.rockspec
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ dependencies = {
"brotli-ffi = 0.3-1",
"lua-ffi-zlib = 0.6-0",
"api7-lua-resty-aws == 2.0.2-1",
"multipart = 0.5.9-1",
}

build = {
Expand Down
23 changes: 21 additions & 2 deletions apisix/plugins/body-transformer.lua
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,14 @@ local type = type
local pcall = pcall
local pairs = pairs
local next = next
local multipart = require("multipart")
local setmetatable = setmetatable

local transform_schema = {
type = "object",
properties = {
input_format = { type = "string", enum = {"xml", "json", "encoded", "args", "plain"} },
input_format = { type = "string",
enum = {"xml", "json", "encoded", "args", "plain", "multipart",}},
template = { type = "string" },
template_is_base64 = { type = "boolean" },
},
Expand Down Expand Up @@ -118,6 +120,10 @@ local decoders = {
args = function()
return req_get_uri_args()
end,
multipart = function (data, content_type_header)
local res = multipart(data, content_type_header)
return res
end
}


Expand All @@ -128,11 +134,20 @@ end

local function transform(conf, body, typ, ctx, request_method)
local out = {}
local _multipart
local format = conf[typ].input_format
local ct = ctx.var.http_content_type
if typ == "response" then
ct = ngx.header.content_type
end
if (body or request_method == "GET") and format ~= "plain" then
local err
if format then
out, err = decoders[format](body)
out, err = decoders[format](body, ct)
if format == "multipart" then
_multipart = out
out = out:get_all_with_arrays()
end
if not out then
err = str_format("%s body decode: %s", typ, err)
core.log.error(err, ", body=", body)
Expand Down Expand Up @@ -160,7 +175,9 @@ local function transform(conf, body, typ, ctx, request_method)
_body = body,
_escape_xml = escape_xml,
_escape_json = escape_json,
_multipart = _multipart
}})

local ok, render_out = pcall(render, out)
if not ok then
local err = str_format("%s template rendering: %s", typ, render_out)
Expand All @@ -184,6 +201,8 @@ local function set_input_format(conf, typ, ct, method)
conf[typ].input_format = "json"
elseif str_find(ct:lower(), "application/x-www-form-urlencoded", nil, true) then
conf[typ].input_format = "encoded"
elseif str_find(ct:lower(), "multipart/", nil) then
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

performance: we should enable plain mode

image

Revolyssup marked this conversation as resolved.
Show resolved Hide resolved
conf[typ].input_format = "multipart"
end
end
end
Expand Down
269 changes: 269 additions & 0 deletions t/plugin/body-transformer-multipart.t
Original file line number Diff line number Diff line change
@@ -0,0 +1,269 @@
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
use t::APISIX 'no_plan';

no_long_string();
no_shuffle();
no_root_location();

add_block_preprocessor(sub {
my ($block) = @_;

if (!$block->request) {
$block->set_value("request", "GET /t");
}
});

run_tests;

__DATA__

=== TEST 1: multipart request body to json request body conversion
--- config
location /t {
content_by_lua_block {
local t = require("lib.test_admin")
local core = require("apisix.core")

local code, body = t.test('/apisix/admin/routes/1',
ngx.HTTP_PUT,
[[{
"uri": "/echo",
"plugins": {
"body-transformer": {
"request": {
"template": "{\"foo\":\"{{name .. \" world\"}}\",\"bar\":{{age+10}}}"
}
}
},
"upstream": {
"type": "roundrobin",
"nodes": {
"127.0.0.1:1980": 1
}
}
}]]
)

if code >= 300 then
ngx.status = code
return
end
ngx.sleep(0.5)

local http = require("resty.http")
local uri = "http://127.0.0.1:" .. ngx.var.server_port .. "/echo"

local body = ([[
--AaB03x
Content-Disposition: form-data; name="name"

Larry
--AaB03x
Content-Disposition: form-data; name="age"

10
--AaB03x--]])

local opt = {method = "POST", body = body, headers = {["Content-Type"] = "multipart/related; boundary=AaB03x"}}
local httpc = http.new()
local res = httpc:request_uri(uri, opt)

ngx.status = res.status
ngx.say(res.body or res.reason)
}
}
--- response_body
{"foo":"Larry world","bar":20}



=== TEST 2: multipart response body to json response body conversion
--- config
location /demo {
content_by_lua_block {
ngx.header["Content-Type"] = "multipart/related; boundary=AaB03x"
ngx.say([[
--AaB03x
Content-Disposition: form-data; name="name"

Larry
--AaB03x
Content-Disposition: form-data; name="age"

10
--AaB03x--]])
}
}
location /t {
content_by_lua_block {
local t = require("lib.test_admin")
local core = require("apisix.core")

local code, body = t.test('/apisix/admin/routes/1',
ngx.HTTP_PUT,
[[{
"uri": "/hello",
"plugins": {
"proxy-rewrite": {
"uri": "/demo"
},
"body-transformer": {
"response": {
"template": "{\"foo\":\"{{name .. \" world\"}}\",\"bar\":{{age+10}}}"
}
}
},
"upstream": {
"type": "roundrobin",
"nodes": {
"127.0.0.1:1984": 1
}
}
}]]
)

if code >= 300 then
ngx.status = code
return
end
ngx.sleep(0.5)

local http = require("resty.http")
local uri = "http://127.0.0.1:" .. ngx.var.server_port .. "/hello"

local opt = {method = "GET"}
local httpc = http.new()
local res = httpc:request_uri(uri, opt)

ngx.status = res.status
ngx.say(res.body or res.reason)
}
}
--- response_body
{"foo":"Larry world","bar":20}



=== TEST 3: multipart parse result accessible to template renderer
--- config
location /t {
content_by_lua_block {
local t = require("lib.test_admin")
local core = require("apisix.core")

local req_template = ngx.encode_base64[[
{%
local core = require 'apisix.core'
local cjson = require 'cjson'
if tonumber(context.age) > 18 then
context._multipart:set_simple("status", "major")
else
context._multipart:set_simple("status", "minor")
end
local body = context._multipart:tostring()
%}{* body *}
]]

local code, body = t.test('/apisix/admin/routes/1',
ngx.HTTP_PUT,
string.format([[{
"uri": "/echo",
"plugins": {
"body-transformer": {
"response": {
"template": "%s"
}
}
},
"upstream": {
"type": "roundrobin",
"nodes": {
"127.0.0.1:1980": 1
}
}
}]], req_template)
)

if code >= 300 then
ngx.status = code
return
end
ngx.sleep(0.5)

------------------------#######################-------------------

local http = require("resty.http")
local uri = "http://127.0.0.1:" .. ngx.var.server_port .. "/echo"

local body_minor = ([[
--AaB03x
Content-Disposition: form-data; name="name"

Larry
--AaB03x
Content-Disposition: form-data; name="age"

10
--AaB03x--]])


local opt = {method = "POST", body = body_minor, headers = {["Content-Type"] = "multipart/related; boundary=AaB03x"}}
local httpc = http.new()
local res = httpc:request_uri(uri, opt)
assert(res.status == 200)

ngx.say(res.body)

}
}
--- response_body eval
qr/.*Content-Disposition: form-data; name=\"status\"\r\n\r\nminor.*/



=== TEST 4: multipart parse response accessible to template renderer (test with age == 19)
--- config
location /t {
content_by_lua_block {

local http = require("resty.http")
local uri = "http://127.0.0.1:" .. ngx.var.server_port .. "/echo"

local body_major = ([[
--AaB03x
Content-Disposition: form-data; name="name"

Larry
--AaB03x
Content-Disposition: form-data; name="age"

19
--AaB03x--]])


local opt = {method = "POST", body = body_major, headers = {["Content-Type"] = "multipart/related; boundary=AaB03x"}}
local httpc = http.new()
local res = httpc:request_uri(uri, opt)
assert(res.status == 200)

ngx.say(res.body)

}
}
--- response_body eval
qr/.*Content-Disposition: form-data; name=\"status\"\r\n\r\nmajor.*/
Loading