-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathyapi-gen-js-code.js
388 lines (350 loc) · 8.21 KB
/
yapi-gen-js-code.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
const axios = require('axios');
/**
* @title form 接口测试
* @path /http/request/api/form
* @param {Object} params 请求参数
* @param {Object} options 请求配置
* @info params
{
xxx: '', // {string} * 订单编号
yyyy: '', // {string} * 用户名
}
*/
exports.api_form = function(params, options){
let interfaceData={
"title": "form 接口测试",
"path": "/http/request/api/form",
"method": "POST",
"req_params": [],
"req_query": [],
"req_headers": [
{
"required": "1",
"_id": "5c64d26e5f0db102ab3bc81f",
"name": "Content-Type",
"value": "application/x-www-form-urlencoded"
}
],
"req_body_type": "form",
"req_body_is_json_schema": true,
"req_body_form": [
{
"required": "1",
"_id": "5c64d26e5f0db102ab3bc821",
"name": "xxx",
"type": "text",
"desc": "订单编号"
},
{
"required": "1",
"_id": "5c64d26e5f0db102ab3bc820",
"name": "yyyy",
"type": "text",
"example": "",
"desc": "用户名"
}
],
"req_body_other": null
};
return httpRequest(interfaceData,params, options)
}
/**
* @title jsonschema接口测试
* @path /http/request/api/jsonschema
* @param {Object} params 请求参数
* @param {Object} options 请求配置
* @info params
{
a: '', // {string} * 参数a
b: '', // {string} * 参数b
c: '', // {number} 参数c
}
*/
exports.api_jsonschema = function(params, options){
let interfaceData={
"title": "jsonschema接口测试",
"path": "/http/request/api/jsonschema",
"method": "POST",
"req_params": [],
"req_query": [],
"req_headers": [
{
"required": "1",
"_id": "5c64d29b5f0db102ab3bc824",
"name": "Content-Type",
"value": "application/json"
}
],
"req_body_type": "json",
"req_body_is_json_schema": true,
"req_body_form": [],
"req_body_other": {
"type": "object",
"title": "empty object",
"properties": {
"a": {
"type": "string",
"description": "参数a"
},
"b": {
"type": "string",
"description": "参数b"
},
"c": {
"type": "number",
"description": "参数c"
}
},
"required": [
"a",
"b"
]
}
};
return httpRequest(interfaceData,params, options)
}
/**
* @title restful动态路径测试
* @path /http/request/api/restful/:id
* @param {Object} params 请求参数
* @param {Object} options 请求配置
* @info params
{
id: '', // {string}
}
*/
exports.get_restful_id = function(params, options){
let interfaceData={
"title": "restful动态路径测试",
"path": "/http/request/api/restful/:id",
"method": "GET",
"req_params": [
{
"_id": "5c64d2ba5f0db102ab3bc826",
"name": "id",
"desc": ""
}
],
"req_query": [],
"req_headers": [],
"req_body_is_json_schema": true,
"req_body_form": [],
"req_body_other": null
};
return httpRequest(interfaceData,params, options)
}
/**
* @title 基本测试
* @path /http/request/api/m/data/malldatacenter/cptSkuPriceIndex/getCptBrandList
* @param {Object} params 请求参数
* @param {Object} options 请求配置
* @info params
{
poiId: '', // {string} * 门店
}
*/
exports.cptSkuPriceIndex_getCptBrandList = function(params, options){
let interfaceData={
"title": "基本测试",
"path": "/http/request/api/m/data/malldatacenter/cptSkuPriceIndex/getCptBrandList",
"method": "GET",
"req_params": [],
"req_query": [
{
"required": "1",
"_id": "5c64d2a45f0db102ab3bc825",
"name": "poiId",
"example": "11",
"desc": "门店"
}
],
"req_headers": [],
"req_body_is_json_schema": true,
"req_body_form": [],
"req_body_other": null
};
return httpRequest(interfaceData,params, options)
}
const Ajv = require('ajv');
function schemaValidator(schema, params) {
try {
const ajv = new Ajv({
format: false,
meta: false,
schemaId: 'id'
});
let metaSchema = require('ajv/lib/refs/json-schema-draft-04.json');
ajv.addMetaSchema(metaSchema);
ajv._opts.defaultMeta = metaSchema.id;
ajv._refs['http://json-schema.org/schema'] = 'http://json-schema.org/draft-04/schema';
schema = schema || {
type: 'object',
title: 'empty object',
properties: {}
};
const validate = ajv.compile(schema);
let valid = validate(params);
let message = '';
if (!valid) {
message += ajv.errorsText(validate.errors, { separator: '\n' });
}
return {
valid: valid,
message: message
};
} catch (e) {
return {
valid: false,
message: e.message
};
}
};
function checkRequestParams (interfaceData, params) {
const HTTP_METHOD = {
GET: {
request_body: false,
},
POST: {
request_body: true,
},
PUT: {
request_body: true,
},
DELETE: {
request_body: true,
},
HEAD: {
request_body: false,
},
OPTIONS: {
request_body: false,
},
PATCH: {
request_body: true,
},
};
const noRequiredArr = [];
let validResult;
for (let i = 0, l = interfaceData.req_query.length; i < l; i++) {
let curQuery = interfaceData.req_query[i];
if (curQuery && typeof curQuery === 'object' && curQuery.required === '1') {
if (!params[curQuery.name]) {
noRequiredArr.push (curQuery.name);
}
}
}
if (HTTP_METHOD[interfaceData.method].request_body) {
// form 表单判断
if (interfaceData.req_body_type === 'form') {
let isFile = false;
for (let y = 0; y < interfaceData.req_body_form.length; y++) {
if (interfaceData.req_body_form[y].type === 'file') {
isFile = true;
break;
}
}
if (!isFile) {
for (
(j = 0), (len = interfaceData.req_body_form.length);
j < len;
j++
) {
let curForm = interfaceData.req_body_form[j];
if (
curForm &&
typeof curForm === 'object' &&
curForm.required === '1'
) {
if (params[curForm.name]) {
continue;
}
noRequiredArr.push (curForm.name);
}
}
}
}
// json schema 判断
if (
interfaceData.req_body_type === 'json' &&
interfaceData.req_body_is_json_schema === true
) {
const schema = interfaceData.req_body_other;
validResult = schemaValidator (schema, params);
}
}
if (noRequiredArr.length > 0 || (validResult && !validResult.valid)) {
let message = `错误信息:`;
message += noRequiredArr.length > 0
? `缺少必须字段 ${noRequiredArr.join (',')} `
: '';
message += validResult && !validResult.valid
? `shema 验证请求参数 ${validResult.message}`
: '';
throw new Error (message);
}
}
function httpRequest(interfaceData, params, options){
let url= interfaceData.path;
let method = interfaceData.method;
let isRestful = false;
if(url.indexOf(':') > 0){
isRestful = true;
}else if(url.indexOf('{') > 0 && url.indexOf('}') > 0){
isRestful = true;
}
if(isRestful){
interfaceData.req_params.forEach(item=>{
let val = params[item.name];
if(!val){
throw new Error('路径参数 ' + item.name + ' 不能为空')
}
url = url.replace(":" + item.name , val );
url = url.replace("{" + item.name + "}", val );
delete params[item.name]
})
}
const HTTP_METHOD = {
GET: {
request_body: false,
},
POST: {
request_body: true,
},
PUT: {
request_body: true,
},
DELETE: {
request_body: true,
},
HEAD: {
request_body: false,
},
OPTIONS: {
request_body: false,
},
PATCH: {
request_body: true,
},
};
function request(baseinfo, options = {}){
let params = baseinfo.params;
options = Object.assign({}, {
url: baseinfo.url,
method: baseinfo.method,
}, options)
if(HTTP_METHOD[baseinfo.method].request_body){
options.data = params;
}else{
options.params = params;
}
if(checkRequestParams && typeof checkRequestParams === 'function'){
checkRequestParams(interfaceData ,params)
}
return axios(options)
}
return request({
url,
method,
params
}, options)
}