ssr-api.js
1.58 KB
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
const api = global.yoho.API;
const service = global.yoho.ServiceAPI;
const logger = global.yoho.logger;
const checkParams = require('../../utils/check-params');
const apiMaps = require('../../config/api-map');
module.exports = () => {
return async (req, res, next) => {
const apiInfo = apiMaps[req.path];
if (!apiInfo) {
return next();
}
let baseParams;
if (!apiInfo.service) {
baseParams = {
uid: req.yoho.uid || void 0,
method: apiInfo.api
};
}
try {
const reqParams = Object.assign({}, req.query, req.body, baseParams);
const params = checkParams.getParams(reqParams, apiInfo);
const cache = req.method.toLowerCase() !== 'get' ? false : apiInfo.cache;
let method = req.method.toLowerCase() === 'post' ? 'post' : 'get';
let result;
if (apiInfo.service) {
result = await service.get(apiInfo.api, params, {
cache: cache,
code: 200
});
} else {
result = await api[method]('', params, {
code: 200,
cache: cache
});
}
if (result) {
return res.json(result);
}
return res.json({
code: 400
});
} catch (e) {
logger.error(e);
return res.json({
code: 400,
message: e
});
}
};
};