request.js
5.2 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
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
import getPrivateKey from './getPrivateKey'
import config from '../../config.js'
import trimObject from './utils/trimObject.js'
import queryString from './utils/query-string/query-string.js'
const crypto = require('./utils/cryptojs/cryptojs.js');
import MD5 from './utils/md5/md5.js'
const request = (methods = 'GET') => {
return async (options = {}) => {
try {
let pk = await getPrivateKey();
options.pk = pk;
options.methods = methods;
return new Promise(function (resolve, reject) {
sendRequest(resolve, reject, options);
})
} catch (e) {
return new Promise(function (resolve, reject) {
if (!e || !e.isPrivatekeyError) {
reject(e);
}
sendRequest(resolve, reject, options);
})
}
}
}
const getGlobalData = () => {
const app = getApp();
let globalData;
if (app && app.globalData) {
// 原生小程序的 globalData 获取方式
globalData = app && app.globalData;
} else {
// Taro 下 globalData 获取方式
globalData = app && app.props && app.props.globalData;
}
return globalData;
}
/**
* 请求参数相关
*/
const handleParam = (params) => {
let globalData = getGlobalData();
getUid(params);
getUdid(params);
const session_key = globalData && globalData.sessionKey ? globalData.sessionKey : '';
const publicParams = _publicParams();
let newParams = {
...params,
...publicParams,
};
if (session_key) {
newParams.session_key = session_key;
}
return newParams;
}
const getUdid = (params) => {
const globalData = getGlobalData();
if (params && !params.hasOwnProperty('udid')) {
let udid = globalData.udid ? globalData.udid : "";
if (udid.length === 0) {
udid = getYHStorageSync('udid', 'request');
}
if (udid.length !== 0) {
params.udid = udid;
}
}
}
const getUid = (params) => {
const globalData = getGlobalData();
if (params && !params.hasOwnProperty('uid')) {
// 判断 globalData 是否包含 uid
let uid = globalData.userInfo && globalData.userInfo.uid ? globalData.userInfo.uid : 0;
if (uid !== 0) {
params.uid = uid;
}
}
}
const _publicParams = () => {
let screen_size;
let os_version;
try {
let res = wx.getSystemInfoSync();
screen_size = res.windowWidth + 'x' + res.windowHeight;
os_version = res.version;
} catch (e) {}
let publicParams = {
...config.apiParams,
v: '7',
screen_size,
// os_version
}
return publicParams;
}
const _signParam = (params, encode = false) => {
const resultParams = _signResultParams(params, encode);
const resultString = queryString.stringify(resultParams, { encode });
return resultString;
}
const _signResultParams = (params, encode = false) => {
let allParams = trimObject(params); // 去除首尾空格
let paramsPair = queryString.stringify(allParams, { encode: false });
let client_secret = MD5(paramsPair);
delete allParams.private_key;
const resultParams = Object.assign(allParams, { client_secret });
return resultParams;
}
/**
* 请求头相关
*/
const handleHeader = (options, newParams) => {
let p2SecretKey = options.pk;
if (p2SecretKey === '') {
p2SecretKey = getYHStorageSync("p2SecretKey", 'request')
}
let param = _signParam(newParams, false);
let resultString = ''
if (p2SecretKey) {
resultString = crypto.HMAC(crypto.SHA256, param, p2SecretKey, "")
}
const session_key = newParams.session_key ? newParams.session_key : '';
let header = {
'x-yoho-verify': resultString,
'Cookies': 'JSESSIONID=' + session_key,
}
return header;
}
/**
* 发送请求
*/
const sendRequest = (resolve, reject, options) => {
// 处理请求参数
const newParams = handleParam(options.params);
const resultParams = _signResultParams(newParams, options.encode);
// 处理请求头
const header = handleHeader(options, newParams);
// path 路径
let url = options.url;
if (options.path) {
url = url + options.path;
}
// 请求
wx.request({
url: url,
data: resultParams,
header: header,
method: options.methods,
success: function(res) {
const statusCode = res.statusCode;
const errMsg = res.errMsg;
const data = res.data;
if (data && data.code == 200 && data.data) {
resolve(data.data);
} else {
const code = res.statusCode;
const message = res.errMsg ? res.errMsg : '';
reject({ code, message });
}
},
fail: function (err) {
const code = err.code ? err.code : 800;
const message = err.message ? err.message : '';
reject({ code, message });
},
complete: options.complete, // 无论成功还是失败, 都会调用,可以用于取消 loading 等
})
}
const getYHStorageSync = (key, fromPage) => {
try {
let res = wx.getStorageSync(key);
return res;
} catch (e) {
wx.reportAnalytics('ufo_get_storage_error', {
key: key,
error: e.message,
error_code: e.code,
from_page: fromPage,
});
return null;
}
}
export const GET = request('GET');
export const POST = request('POST');
export const PUT = request('PUT');
export const DELETE = request('DELETE');
// export const UPLOAD_LOG = uploadLogData('POST')
// export const APP_REPORT = appReport('POST')