-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
request help: Does response-rewrite plugin support partial or regular substitution #5451
Comments
@jagerzhang Yes, it cannot be supported by this plugin, but if you desire, just use the nginx or openresty way on APISIX, they're also feasible. |
@tokers 在APISIX配置中使用Nginx或openresty的配置,求一个指引文档,多谢~ |
Please check out Customize Nginx Configuration. |
Does Customize Nginx Configuration work globally? I think it would be better to make the response-rewrite plugin support regular substitution. |
Yes, the range cross the route boundaries.
That's might be a good idea, let's listen to more sounds. |
@tzssangglass @tokers 非常期待能支持一下这个Openresty默认支持的特性。 |
粗略看了下,这样用需要改动配置文件,相当于每次改动都需要reload或重启,动作比较重。还是期待能在插件里面动态支持~ |
Above the conversation, I got these information: Target: support specify content-type to filter, substitute response body by matching specific regex(fixed string as well) with replacement.
Solution:
Main steps:
local body = ngx.arg[1]
ngx.arg[1] = sub(conf.filter_pattern, conf.filter_replace, conf.filter_options)
ngx.arg[2] = true Any advices welcome :-). |
Well, personally I prefer to use an array of filters:
"completely substitute" can be named as sub_filter substitute? As Nginx's sub_fitler supports variable, which isn't a plain substitute.
I am afraid we can't do regex in the stream. This requires the regex engine to have stream mode, for example, see google/re2#127. |
On this way, filter would take effect orderly by itself, right?
From directives, Nginx's sub_filter only support in the http not stream. |
Yes.
Actually, I mean the streaming processing (not the L4 proxy). |
Solution updated. Properties table adds one
filter key attributes
Main steps: step 1: at step 2: at
step 3: at
Q1: it seems |
@spacewander @tokers Please take a look on the second solution, I'm not sure if it's on the right way. |
@kwanhur Could you also give some data examples according to the second solution? |
We can use apisix/apisix/core/response.lua Line 177 in 9e19885
|
After have a look at existed codes, update solution v3 and example: Solution Properties table adds one
filter key attributes
Main steps: step 1: at step 2: at
Example
curl http://127.0.0.1:9080/apisix/admin/routes/1 -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT -d '
{
"methods": ["GET"],
"uri": "/test/index.html",
"plugins": {
"response-rewrite": {
"filters": [
{"scope": "global", "regex": "hello", "replace": "world", "options": "jio"}
]
"vars":[
[ "status","==",200 ]
]
}
}
}'
curl http://127.0.0.1:9080/apisix/admin/routes/1 -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT -d '
{
"methods": ["GET"],
"uri": "/test/index.html",
"plugins": {
"response-rewrite": {
"filters": [
{"scope": "global", "regex": "\d", "replace": "*", "options": "jio"}
]
"vars":[
[ "content-type","==","text/plain"]
]
}
}
}' |
LGTM, except for a small problem: apisix/apisix/core/response.lua Lines 168 to 173 in 6cd7b8d
|
Hi, I would also like to use nginx sub_filter in apisix, but it still doesn't work when I use it in apache/apisix:2.99.0-debian Plugin config: {
"disable": false,
"filters": [
{
"regex": "head",
"replace": "1212",
"scope": "global"
}
],
"headers": {
"set": {
"x-powered-by": "",
"x-server-balancer_addr": "$balancer_ip:$balancer_port"
}
},
"vars": [
[
"status",
"==",
200
],
[
"content-type",
"==",
"text/html; charset=utf-8"
]
]
} |
Please open a new issue and provide the full reproduction steps |
Issue description
比如Nginx自带的响应内容替换库可以替换局部内容:http://nginx.org/en/docs/http/ngx_http_sub_module.html
比如还有个支持正则替换的库(印象中Openresty已默认支持):ngx_http_substitutions_filter_module,可以通过正则表达式来替换内容:
但是我看APISIX的 response-rewrite 插件文档,好像只能支持完整替换,相当于直接将所有响应都换成插件设置的返回,并不支持部分内容替换:
想问下这个插件是否支持部分替换或正则替换?如果不支持,APISIX有没有其他解决方案呢?
Environment
apisix version
): 2.10.0The text was updated successfully, but these errors were encountered: