2021-02-26 21:40:08 +08:00
|
|
|
|
---
|
|
|
|
|
title: request-validation
|
|
|
|
|
---
|
|
|
|
|
|
2020-07-30 17:46:44 +08:00
|
|
|
|
<!--
|
|
|
|
|
#
|
|
|
|
|
# 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.
|
|
|
|
|
#
|
|
|
|
|
-->
|
|
|
|
|
|
2021-02-26 21:40:08 +08:00
|
|
|
|
## 目录
|
2021-01-03 11:26:40 +08:00
|
|
|
|
|
2020-08-23 11:17:18 +08:00
|
|
|
|
- [**名称**](#名称)
|
2020-07-30 17:46:44 +08:00
|
|
|
|
- [**属性**](#属性)
|
|
|
|
|
- [**如何启用**](#如何启用)
|
|
|
|
|
- [**测试插件**](#测试插件)
|
|
|
|
|
- [**禁用插件**](#禁用插件)
|
|
|
|
|
- [**示例**](#示例)
|
|
|
|
|
|
2020-08-23 11:17:18 +08:00
|
|
|
|
## 名称
|
2020-07-30 17:46:44 +08:00
|
|
|
|
|
|
|
|
|
`request-validation` 插件用于提前验证请求向上游转发请求,可以验证请求的 `body` 及 `header` 数据。
|
|
|
|
|
|
|
|
|
|
该插件使用 `Json Schema` 进行数据验证,有关 `Json Schema` 的更多信息,请参阅 [JSON schema](https://github.com/api7/jsonschema)。
|
|
|
|
|
|
|
|
|
|
## 属性
|
|
|
|
|
|
2020-09-23 08:11:27 +08:00
|
|
|
|
| Name | Type | Requirement | Default | Valid | Description |
|
|
|
|
|
| ------------- | ------ | ----------- | ------- | ----- | --------------------------------- |
|
|
|
|
|
| header_schema | object | 可选 | | | `header` 数据的 `schema` 数据结构 |
|
|
|
|
|
| body_schema | object | 可选 | | | `body` 数据的 `schema` 数据结构 |
|
2020-07-30 17:46:44 +08:00
|
|
|
|
|
|
|
|
|
## 如何启用
|
|
|
|
|
|
|
|
|
|
创建一条路由并在该路由上启用 `request-validation` 插件:
|
|
|
|
|
|
|
|
|
|
```shell
|
2020-11-28 19:05:14 +08:00
|
|
|
|
curl http://127.0.0.1:9080/apisix/admin/routes/5 -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT -d '
|
2020-07-30 17:46:44 +08:00
|
|
|
|
{
|
|
|
|
|
"uri": "/get",
|
|
|
|
|
"plugins": {
|
|
|
|
|
"request-validation": {
|
|
|
|
|
"body_schema": {
|
|
|
|
|
"type": "object",
|
|
|
|
|
"required": ["required_payload"],
|
|
|
|
|
"properties": {
|
|
|
|
|
"required_payload": {"type": "string"},
|
|
|
|
|
"boolean_payload": {"type": "boolean"}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"upstream": {
|
2020-08-26 09:37:53 +08:00
|
|
|
|
"type": "roundrobin",
|
|
|
|
|
"nodes": {
|
|
|
|
|
"127.0.0.1:8080": 1
|
|
|
|
|
}
|
2020-07-30 17:46:44 +08:00
|
|
|
|
}
|
2021-01-20 09:02:01 +08:00
|
|
|
|
}'
|
2020-07-30 17:46:44 +08:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## 测试插件
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
curl --header "Content-Type: application/json" \
|
|
|
|
|
--request POST \
|
|
|
|
|
--data '{"boolean-payload":true,"required_payload":"hello"}' \
|
|
|
|
|
http://127.0.0.1:9080/get
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
如果 `Schema` 验证失败,将返回 `400 bad request` 错误。
|
|
|
|
|
|
|
|
|
|
## 禁用插件
|
|
|
|
|
|
|
|
|
|
在路由 `plugins` 配置块中删除 `request-validation` 配置,即可禁用该插件。
|
|
|
|
|
|
|
|
|
|
```shell
|
2020-11-28 19:05:14 +08:00
|
|
|
|
curl http://127.0.0.1:9080/apisix/admin/routes/5 -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT -d '
|
2020-07-30 17:46:44 +08:00
|
|
|
|
{
|
|
|
|
|
"uri": "/get",
|
|
|
|
|
"plugins": {
|
|
|
|
|
},
|
|
|
|
|
"upstream": {
|
2020-08-26 09:37:53 +08:00
|
|
|
|
"type": "roundrobin",
|
|
|
|
|
"nodes": {
|
|
|
|
|
"127.0.0.1:8080": 1
|
|
|
|
|
}
|
2020-07-30 17:46:44 +08:00
|
|
|
|
}
|
2021-01-20 09:02:01 +08:00
|
|
|
|
}'
|
2020-07-30 17:46:44 +08:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## 示例
|
|
|
|
|
|
|
|
|
|
**枚举(Enums)验证:**
|
|
|
|
|
|
2020-08-10 09:59:56 +08:00
|
|
|
|
```json
|
2020-07-30 17:46:44 +08:00
|
|
|
|
{
|
|
|
|
|
"body_schema": {
|
|
|
|
|
"type": "object",
|
2020-08-10 09:59:56 +08:00
|
|
|
|
"required": ["enum_payload"],
|
2020-07-30 17:46:44 +08:00
|
|
|
|
"properties": {
|
2020-08-10 09:59:56 +08:00
|
|
|
|
"enum_payload": {
|
2020-07-30 17:46:44 +08:00
|
|
|
|
"type": "string",
|
2020-08-10 09:59:56 +08:00
|
|
|
|
"enum": ["enum_string_1", "enum_string_2"],
|
|
|
|
|
"default": "enum_string_1"
|
2020-07-30 17:46:44 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
**布尔(Boolean)验证:**
|
|
|
|
|
|
2020-08-10 09:59:56 +08:00
|
|
|
|
```json
|
2020-07-30 17:46:44 +08:00
|
|
|
|
{
|
|
|
|
|
"body_schema": {
|
|
|
|
|
"type": "object",
|
|
|
|
|
"required": ["bool_payload"],
|
|
|
|
|
"properties": {
|
|
|
|
|
"bool_payload": {
|
2020-08-10 09:59:56 +08:00
|
|
|
|
"type": "boolean",
|
|
|
|
|
"default": true
|
2020-07-30 17:46:44 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
**数字范围(Number or Integer)验证:**
|
|
|
|
|
|
2020-08-10 09:59:56 +08:00
|
|
|
|
```json
|
2020-07-30 17:46:44 +08:00
|
|
|
|
{
|
|
|
|
|
"body_schema": {
|
|
|
|
|
"type": "object",
|
|
|
|
|
"required": ["integer_payload"],
|
|
|
|
|
"properties": {
|
|
|
|
|
"integer_payload": {
|
2020-08-10 09:59:56 +08:00
|
|
|
|
"type": "integer",
|
|
|
|
|
"minimum": 1,
|
|
|
|
|
"maximum": 65535
|
2020-07-30 17:46:44 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
**字符串长度(String)验证:**
|
|
|
|
|
|
2020-08-10 09:59:56 +08:00
|
|
|
|
```json
|
2020-07-30 17:46:44 +08:00
|
|
|
|
{
|
|
|
|
|
"body_schema": {
|
|
|
|
|
"type": "object",
|
|
|
|
|
"required": ["string_payload"],
|
|
|
|
|
"properties": {
|
|
|
|
|
"string_payload": {
|
2020-08-10 09:59:56 +08:00
|
|
|
|
"type": "string",
|
|
|
|
|
"minLength": 1,
|
|
|
|
|
"maxLength": 32
|
2020-07-30 17:46:44 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
**正则表达式(Regex)验证:**
|
|
|
|
|
|
2020-08-10 09:59:56 +08:00
|
|
|
|
```json
|
2020-07-30 17:46:44 +08:00
|
|
|
|
{
|
|
|
|
|
"body_schema": {
|
|
|
|
|
"type": "object",
|
|
|
|
|
"required": ["regex_payload"],
|
|
|
|
|
"properties": {
|
|
|
|
|
"regex_payload": {
|
2020-08-10 09:59:56 +08:00
|
|
|
|
"type": "string",
|
|
|
|
|
"minLength": 1,
|
|
|
|
|
"maxLength": 32,
|
|
|
|
|
"pattern": "[[^[a-zA-Z0-9_]+$]]"
|
2020-07-30 17:46:44 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
**数组(Array)验证:**
|
|
|
|
|
|
2020-08-10 09:59:56 +08:00
|
|
|
|
```json
|
2020-07-30 17:46:44 +08:00
|
|
|
|
{
|
|
|
|
|
"body_schema": {
|
|
|
|
|
"type": "object",
|
|
|
|
|
"required": ["array_payload"],
|
|
|
|
|
"properties": {
|
|
|
|
|
"array_payload": {
|
2020-08-10 09:59:56 +08:00
|
|
|
|
"type": "array",
|
|
|
|
|
"minItems": 1,
|
|
|
|
|
"items": {
|
|
|
|
|
"type": "integer",
|
|
|
|
|
"minimum": 200,
|
|
|
|
|
"maximum": 599
|
2020-07-30 17:46:44 +08:00
|
|
|
|
},
|
2020-08-10 09:59:56 +08:00
|
|
|
|
"uniqueItems": true,
|
|
|
|
|
"default": [200, 302]
|
2020-07-30 17:46:44 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
**多字段组合(Multiple Fields)验证:**
|
|
|
|
|
|
2020-08-10 09:59:56 +08:00
|
|
|
|
```json
|
2020-07-30 17:46:44 +08:00
|
|
|
|
{
|
|
|
|
|
"body_schema": {
|
|
|
|
|
"type": "object",
|
|
|
|
|
"required": ["boolean_payload", "array_payload", "regex_payload"],
|
|
|
|
|
"properties": {
|
|
|
|
|
"boolean_payload": {
|
|
|
|
|
"type": "boolean"
|
|
|
|
|
},
|
|
|
|
|
"array_payload": {
|
2020-08-10 09:59:56 +08:00
|
|
|
|
"type": "array",
|
|
|
|
|
"minItems": 1,
|
|
|
|
|
"items": {
|
|
|
|
|
"type": "integer",
|
|
|
|
|
"minimum": 200,
|
|
|
|
|
"maximum": 599
|
2020-07-30 17:46:44 +08:00
|
|
|
|
},
|
2020-08-10 09:59:56 +08:00
|
|
|
|
"uniqueItems": true,
|
|
|
|
|
"default": [200, 302]
|
2020-07-30 17:46:44 +08:00
|
|
|
|
},
|
|
|
|
|
"regex_payload": {
|
2020-08-10 09:59:56 +08:00
|
|
|
|
"type": "string",
|
|
|
|
|
"minLength": 1,
|
|
|
|
|
"maxLength": 32,
|
|
|
|
|
"pattern": "[[^[a-zA-Z0-9_]+$]]"
|
2020-07-30 17:46:44 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|