-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrequest.tpl.js
243 lines (207 loc) · 5.15 KB
/
request.tpl.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
const userConfig = {{{userConfig}}};
const ajaxPromise = {};
const noBodyMethod = {
get: true,
head: true
};
const typeValidator = {
any: () => true,
string: x => typeof x === 'string',
number: x => typeof x === 'number',
boolean: x => typeof x === 'boolean',
blob: x => Object.prototype.toString.call(x) === '[object Blob]',
array: Array.isArray,
object: x => typeof x === 'object' && x !== null,
null: x => x === null
};
/**
* @param {Array|Object} needs
* @param {Object} target
*/
const checkParam = ({needs, target}) => {
let condMap = {};
if (Array.isArray(needs)) {
needs.forEach(key => condMap[key] = 'Any');
} else {
condMap = needs;
}
for (let key in condMap) {
let isOptional = false,
value = target[key];
if (key.charAt(key.length - 1) === '?') {
isOptional = true;
value = target[key.slice(0, -1)];
}
if (value === undefined) {
if (isOptional) continue;
return '{{errorMissParam}}';
}
const keyCondList = Array.isArray(condMap[key]) ? condMap[key] : [ condMap[key] ];
if (keyCondList.filter(cond => typeValidator[cond.toLowerCase()](value)).length === 0) return '{{errorTypeCheck}}';
}
return true;
};
/**
* @param {Object} config.need
* @param {Object} config.target
*/
const isSuccess = config => {
for (var key in config.need) {
if (!config.need.hasOwnProperty(key)) continue;
if (config.target[key] !== config.need[key]) {
return false;
}
}
return true;
};
const getParams = (target, params) => {
if (params.length === 0) return target;
var
result = {},
len = params.length;
while (len--) {
if (target[params[len]] === undefined && !userConfig.ignoreResponse) {
return false;
}
result[params[len]] = target[params[len]];
}
return result;
};
const makeRequestData = ({method, dataType, data, headers}) => {
if (noBodyMethod[method]) return;
let body;
switch (dataType) {
case 'json':
headers['Content-Type'] = 'application/json;charset=UTF-8';
return JSON.stringify(data);
case 'urlsearchparams':
// For browser with polyfill to implement URLSearchParams which won't add this header automatically
headers['Content-Type'] = 'application/x-www-form-urlencoded;charset=UTF-8';
body = new URLSearchParams();
for (const key in data) {
if (!data.hasOwnProperty(key)) continue;
body.append(key, data[key]);
}
return body.toString();
case 'formdata':
body = new FormData();
for (const key in data) {
if (!data.hasOwnProperty(key)) continue;
body.append(key, data[key]);
}
return body;
}
return data;
};
/**
* @param {String} config.name
* @param {Object} config.url
* @param {Object} config.data
* @param {String} config.method
* @param {String} config.cache
* @param {String} config.mode
* @param {Object} config.context
* @param {Number} config.timeout
* @param {Function} config.resolve
* @param {Function} config.reject
* @param {Array} config.successParam
* @param {Array} config.failParam
* @param {Array} config.needs
* @param {Object} config.headers
* @param {String} config.dataType
*/
const doAjax = config => {
var checkRes = checkParam({
needs: config.needs,
target: config.data
});
if (checkRes !== true) {
config.reject(new Error(checkRes));
return;
}
var sig = config.name + JSON.stringify(config.data);
if (ajaxPromise[sig]) {
ajaxPromise[sig].push({
resolve: config.resolve,
reject: config.reject
});
return;
}
ajaxPromise[sig] = [{
resolve: config.resolve,
reject: config.reject
}];
var paramList = [];
if (({
'no-store': true,
'no-cache': true,
reload: true
})[config.cache]) {
paramList.push({
key: '_',
value: Date.now()
});
}
if (noBodyMethod[config.method]) {
for (var key in config.data) {
if (!config.data.hasOwnProperty(key)) continue;
paramList.push({
key: key,
value: config.data[key]
});
}
}
config.url = config.url
.split('/')
.map(urlPart => {
let partName = urlPart.slice(1);
return config.data[partName] || urlPart;
})
.join('/');
if (paramList.length) {
config.url += '?' + paramList.map(item => `${item.key}=${item.value}`).join('&');
}
{{promise}}.race([
fetch(config.rootUrl + config.url, {
method: config.method,
redirect: 'follow',
mode: config.mode,
cache: config.cache,
body: makeRequestData(config),
headers: new Headers(config.headers),
credentials: config.credentials
}),
new {{promise}}((resolve, reject) => {
setTimeout(() => reject('{{errorTimeout}}'), config.timeout);
})
]).then(res => {
if (!res.ok) throw res;
return res.text();
}).then(txt => {
try {
return JSON.parse(txt);
} catch (err) {
return txt;
}
}).then(res => {
var isSucc = isSuccess({
need: config.isSuccess,
target: res
}),
params = isSucc ? config.successParam : config.failParam,
result = Array.isArray(res) ? res : getParams(res, params);
if (result === false) {
throw '{{errorInconsistentParam}}';
}
ajaxPromise[sig].forEach(item => {
isSucc ? item.resolve(result) : item.reject(result);
});
}).catch(res => {
ajaxPromise[sig].forEach(item => {
item.reject(res || '{{errorBadNetwork}}');
});
}).then(() => {
delete ajaxPromise[sig];
});
};
{{{apiList}}}