-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.dev.js
475 lines (475 loc) · 13.7 KB
/
main.dev.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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
/**
* @file 幻想私社网络请求函数库
* @author E0SelmY4V - from 幻想私社
* @version 1.2.20220603 包含qrycnv、AJAX函数和函数式编程相关
* @link https://github.com/E0SelmY4V/scpo-webreq.js
*/
"use strict";
/**
* 主函数库
* @namespace
*/
var ScpoWR = ScpoWR || {};
/**
* 默认配置
* @namespace
*/
ScpoWR.config = {
/**
* 更改默认配置
* @param {string|object} name 要更改的配置名称或配置键值对
* @param {any} value 更改后的值
*/
change: function (name, value) {
if (typeof name == "string") this[name] = value;
else for (var i in name) this[i] = name[i];
},
/**
* 简便函数请求模式
* @type {"ajax"}
* @default
*/
mode: "ajax",
/**
* 请求地址
* @type {string}
*/
url: "",
/**
* 请求方法
* @type {"get"|"post"}
* @default
*/
method: "get",
/**
* 请求数据
* @type {string|object}
*/
data: "",
/**
* 请求成功后执行的函数
* @callback ScpoWR.config.todo
* @param {string|XMLDocument} data 请求返回的数据
*/
todo: function (data) { },
/**
* 请求失败后执行的函数
* @callback ScpoWR.config.ordo
* @param {XMLHttpRequest|Error} param XHR对象或Error对象
*/
ordo: function (param) { },
/**
* 返回数据的格式
* @type {"xml"|"str"}
* @default
*/
format: "str",
/**
* 是否异步
* @type {boolean}
* @default
*/
async: true,
/**
* 请求未完成时readyState变化时执行的函数
* @callback ScpoWR.config.scdo
* @param {XMLHttpRequest} xhr XHR对象
*/
scdo: function (xhr) { }
};
/**
* 请求数据类型
* @typedef {
* HTMLFormElement|
* string|
* object
* } ScpoWR.qrycnv.qryType
*/
/**
* 请求字符串转换相关
* @namespace
*/
ScpoWR.qrycnv = {
/**
* 表单元素中作为输入框的标签列表
* @type {string[]}
* @readonly
*/
iptype: [
"input",
"textarea"
],
/**
* 表单元素转请求字符串
* @param {HTMLFormElement} frm 表单元素
* @returns {string} 请求字符串
*/
frm2str: function (frm) {
var l = [], k, j, i, k = j = i = -1, p, d, a, str = "", e = encodeURIComponent;
while (p = this.iptype[++j]) {
var a = frm.getElementsByTagName(p);
while (d = a[++k]) l.push(d);
}
while (p = l[++i]) str += e(p.name) + "=" + e(p.value) + "&";
return str.slice(0, -1);
},
/**
* 请求字符串转表单元素
* @param {string} str 请求字符串
* @returns {HTMLFormElement} 表单元素
*/
str2frm: function (str) {
var arr = str.split("&"), frm = document.createElement("form"), ipt, pos, i = -1, d = decodeURIComponent;
while (str = arr[++i]) {
ipt = document.createElement("textarea");
ipt.setAttribute("name", d(str.slice(0, pos = str.indexOf("="))));
ipt.value = d(str.slice(pos + 1));
frm.appendChild(ipt);
}
return frm;
},
/**
* 表单元素转请求键值对
* @param {HTMLFormElement} frm 表单元素
* @returns {object} 请求键值对
*/
frm2obj: function (frm) {
var l = [], k, j, i, k = j = i = -1, p, d, a, obj = {};
while (p = this.iptype[++j]) {
var a = frm.getElementsByTagName(p);
while (d = a[++k]) l.push(d);
}
while (p = l[++i]) obj[p.name] = p.value;
return obj;
},
/**
* 请求键值对转表单元素
* @param {object} obj 请求键值对
* @returns {HTMLFormElement} 表单元素
*/
obj2frm: function (obj) {
var frm = document.createElement("form"), ipt, i;
for (i in obj) {
ipt = document.createElement("textarea");
ipt.setAttribute("name", i);
ipt.value = obj[i];
frm.appendChild(ipt);
}
return frm;
},
/**
* 请求键值对转请求字符串
* @param {object} obj 请求键值对
* @returns {string} 请求字符串
*/
obj2str: function (obj) {
var str = "", e = encodeURIComponent;
for (var i in obj) str += e(i) + "=" + e(obj[i]) + "&";
return str.slice(0, -1);
},
/**
* 请求字符串转请求键值对
* @param {string} str 请求字符串
* @returns {object} 请求键值对
*/
str2obj: function (str) {
var arr = str.split("&"), obj = {}, pos, i = 0, d = decodeURIComponent;
while (str = arr[i++]) obj[d(str.slice(0, pos = str.indexOf("=")))] = d(str.slice(pos + 1));
return obj;
},
/**
* 判断请求数据类型
* @param {*} n 要判断的请求数据
* @returns {"frm"|"str"|"obj"|"unkown"} 类型
*/
getype: function (n) {
if (typeof n == "string") return "str";
if (typeof n != "object") return "unkown";
if (window.HTMLElement
? n instanceof HTMLElement
: (n.nodeType === 1 && typeof n.nodeName === 'string')
) return "frm";
return "obj";
},
/**
* 请求数据类型列表
* @type {string[]}
* @readonly
*/
type: [
"str",
"frm",
"obj"
],
/**
* 判断是否是请求数据类型
* @param {string} n 要判断的符串
* @returns {boolean} 是否是请求数据类型
*/
isType: function (n) {
if (this.typeObj) return Boolean(this.typeObj[n]);
this.typeObj = {};
var z, i = -1;
while (z = this.type[++i]) this.typeObj[z] = true;
return this.isType(n);
},
/**
* 转换请求数据类型
* @param {ScpoWR.qrycnv.qryType} n 要转换的请求数据
* @param {string} type 要转换成的请求数据类型
* @returns {ScpoWR.qrycnv.qryType} 转换后的数据
*/
convert: function (n, type) {
type = this.getype(n) + "2" + type;
return this[type] ? this[type](n) : n;
},
/**
* 将请求数据转换为请求字符串
* @param {ScpoWR.qrycnv.qryType} n 请求数据
* @returns {string} 请求字符串
*/
toStr: function (n) {
return this.convert(n, "str");
},
/**
* 将请求数据转换为请求键值对
* @param {ScpoWR.qrycnv.qryType} n 请求数据
* @returns {object} 请求键值对
*/
toObj: function (n) {
return this.convert(n, "obj");
},
/**
* 将请求数据转换为表单元素
* @param {ScpoWR.qrycnv.qryType} n 请求数据
* @returns {HTMLFormElement} 表单元素
*/
toFrm: function (n) {
return this.convert(n, "frm");
}
};
/**
* AJAX请求参数数组
* @typedef {Array.<
* string,
* ScpoWR.qrycnv.qryType,
* ScpoWR.config.todo,
* ScpoWR.config.ordo,
* ScpoWR.config.format,
* ScpoWR.config.async,
* ScpoWR.config.scdo
* >} ScpoWR.ajaxParams
*/
/**
* 发起AJAX请求
* @param {ScpoWR.config.method} method 请求方法
* @param {string|ScpoWR.ajaxParams} url 请求地址;也可传入一个参数数组
* @param {ScpoWR.qrycnv.qryType} data 请求数据
* @param {ScpoWR.config.todo} todo 请求成功后执行的函数
* @param {ScpoWR.config.ordo} ordo 请求失败后执行的函数
* @param {ScpoWR.config.format} format 返回数据的格式
* @param {ScpoWR.config.async} async 是否异步
* @param {ScpoWR.config.scdo} scdo 请求未完成时readyState变化时执行的函数
* @returns {void|any} 若异步则返回void,否则返回todo或ordo函数执行的结果
*/
ScpoWR.ajax = function (method, url, data, todo, ordo, format, async, scdo) {
if (typeof url == "object") {
var a = url, i = 0, g = function () { return a[i++] };
url = g(), data = g(), todo = g(), ordo = g(), format = g(), async = g(), scdo = g();
} else if (typeof url == "undefined") url = cfg.url;
var cfg = ScpoWR.config, data = ScpoWR.qrycnv.toStr(data);
var xh = window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject("Microsoft.XMLHTTP");
if (!todo) todo = cfg.todo;
if (!ordo) ordo = cfg.ordo;
if (!scdo) scdo = cfg.scdo;
if (typeof async == "undefined") async = cfg.async;
format = "response" + ((format ? format : cfg.format) == "xml" ? "XML" : "Text");
if (async) xh.onreadystatechange = function () {
xh.readyState == 4 ? xh.status == 200 ? todo(xh[format]) : ordo(xh) : scdo(xh);
};
if ((method ? method : cfg.method) == "get") {
xh.open("GET", url + (data ? "?" + data : ""), async);
xh.send();
} else {
xh.open("POST", url, async);
xh.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xh.send(data);
}
if (!async) return xh.status == 200 ? todo(xh[format]) : ordo(xh);
};
/**
* 简便函数:发起AJAX请求
* @param {ScpoWR.config.method} method 请求方法
* @param {ScpoWR.ajaxParams} args AJAX请求参数数组
* @returns {void|any} 请求函数的返回值
*/
ScpoWR.request = function (method, args) {
var f, m = ScpoWR.config.mode;
switch (m) {
case "ajax":
break;
default:
return;
}
return ScpoWR[m](method, args);
};
/**
* 简便函数:发起AJAX GET请求
* @param {string} url 请求地址
* @param {ScpoWR.qrycnv.qryType} data 请求数据
* @param {ScpoWR.config.todo} todo 请求成功后执行的函数
* @param {ScpoWR.config.ordo} ordo 请求失败后执行的函数
* @param {ScpoWR.config.format} format 返回数据的格式
* @param {ScpoWR.config.async} async 是否异步
* @param {ScpoWR.config.scdo} scdo 请求未完成时readyState变化时执行的函数
* @returns {void|any} 请求函数的返回值
*/
ScpoWR.get = function (url, data, todo, ordo, format, async, scdo) {
return ScpoWR.request("get", typeof url == "object"
? url
: [url, data, todo, ordo, format, async, scdo]
);
};
/**
* 简便函数:发起AJAX POST请求
* @param {string} url 请求地址
* @param {ScpoWR.qrycnv.qryType} data 请求数据
* @param {ScpoWR.config.todo} todo 请求成功后执行的函数
* @param {ScpoWR.config.ordo} ordo 请求失败后执行的函数
* @param {ScpoWR.config.format} format 返回数据的格式
* @param {ScpoWR.config.async} async 是否异步
* @param {ScpoWR.config.scdo} scdo 请求未完成时readyState变化时执行的函数
* @returns {void|any} 请求函数的返回值
*/
ScpoWR.post = function (url, data, todo, ordo, format, async, scdo) {
return ScpoWR.request("post", typeof url == "object"
? url
: [url, data, todo, ordo, format, async, scdo]
);
};
/**
* 幻想私社异步过程类请求成功时的回调函数
* @callback ScpoWR.Process.todo
* @param {*} param 一个参数
*/
/**
* 幻想私社异步过程类请求失败时的回调函数
* @callback ScpoWR.Process.ordo
* @param {*} param 一个参数
*/
/**
* 幻想私社异步过程类
* @param {boolean} cleared 是否已经完成异步请求
* @class
* @borrows ScpoWR.then as then
* @borrows ScpoWR.config.change as fset
* @borrows ScpoWR.onerr as onerr
* @borrows ScpoWR.frequest as frequest
* @borrows ScpoWR.fget as fget
* @borrows ScpoWR.fpost as fpost
*/
ScpoWR.Process = function (cleared) {
var n = this;
this.todo = [], this.ordo = [];
if (cleared) this.cleared = true;
else this.clear = function (param) {
var w = param instanceof XMLHttpRequest ? "ordo" : "todo", f, d = true;
while (f = n[w].shift()) if (typeof f == "function") param = f(param), d = false;
if (d) ScpoWR.config[w](param);
n.cleared = true, n.lastRtn = param;
};
};
/**
* 添加回调
* @param {ScpoWR.Process.todo} todo 成功时的回调函数
* @param {ScpoWR.Process.ordo} ordo 出错时的回调函数
* @returns {ScpoWR.Process} 执行的过程对象
*/
ScpoWR.then = function (todo, ordo) {
var proc = this instanceof ScpoWR.Process ? this : new ScpoWR.Process(true);
if (proc.cleared) {
if (typeof todo == "function") proc.lastRtn = todo(proc.lastRtn);
} else proc.todo.push(todo), proc.ordo.push(ordo);
return proc;
}
/**
* @borrows ScpoWR.config.change as fset
*/
ScpoWR.fset = function (name, value) {
return this.then(function (param) {
return ScpoWR.config.change(name, value), param;
});
}
/**
* catch错误
* @param {ScpoWR.Process.ordo} ordo 出错时的回调函数
* @returns {ScpoWR.Process} 执行的过程对象
*/
ScpoWR.onerr = function (ordo) {
return this.then(null, ordo);
}
/**
* 发起AJAX请求
* @param {boolean} order 是否使用上一次回调的返回的参数数组
* @param {ScpoWR.config.method} method 请求方法
* @param {string} url 请求地址
* @param {ScpoWR.qrycnv.qryType} data 请求数据
* @param {ScpoWR.config.format} format 返回数据的格式
* @returns {ScpoWR.Process} 执行的过程对象
*/
ScpoWR.frequest = function (order, method, url, data, format) {
var proc = new ScpoWR.Process();
if (order == "get" || order == "post") {
format = data, data = url, url = method, method = order, order = false;
if (typeof url == "object") data = url[1], format = url[2], url = url[0];
}
var todo = function (param) {
if (order !== false) {
if (typeof param == "object") {
if (order === true) method = Array.isArray(param) ? param.shift() : param.method;
} else {
if (order === true) method = "get";
param = [param];
}
url = param[0] || param.url;
data = param[1] || param.data;
format = param[2] || param.format;
}
ScpoWR.request(method, [url, data, proc.clear, proc.clear, format, true]);
};
this instanceof ScpoWR.Process ? this.then(todo) : todo();
return proc;
}
/**
* 函数式编程简便函数:发起AJAX GET请求
* @param {string|true} url 请求地址。或者若为true则使用上次回调返回的参数数组
* @param {ScpoWR.qrycnv.qryType} data 请求数据
* @param {ScpoWR.config.format} format 返回数据的格式
* @returns {ScpoWR.Process} 执行的过程对象
*/
ScpoWR.fget = function (url, data, format) {
return url === true
? this.frequest(void (0), "get")
: this.frequest("get", [url, data, format]);
}
/**
* 函数式编程简便函数:发起AJAX POST请求
* @param {string|true} url 请求地址。或者若为true则使用上次回调返回的参数数组
* @param {ScpoWR.qrycnv.qryType} data 请求数据
* @param {ScpoWR.config.format} format 返回数据的格式
* @returns {ScpoWR.Process} 执行的过程对象
*/
ScpoWR.fpost = function (url, data, format) {
return url === true
? this.frequest(void (0), "get")
: this.frequest("post", [url, data, format]);
}
ScpoWR.Process.prototype = {
then: ScpoWR.then,
fset: ScpoWR.fset,
onerr: ScpoWR.onerr,
frequest: ScpoWR.frequest,
fget: ScpoWR.fget,
fpost: ScpoWR.fpost
};
if (ScpoWR.onload) ScpoWR.onload();