-
Notifications
You must be signed in to change notification settings - Fork 17
/
lol.js
106 lines (95 loc) · 2.89 KB
/
lol.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
//参考chavyleung和NobyDa的写法
const sy = init()
//默认大区:峡谷之巅 31,如需修改自己去weegame抓包解决
const area=31;
//默认显示第一页
const pnum=1;
//默认显示10个
const psize=20;
//rank类型
const rank_type=0;
const title='[峡谷之巅]排名';
getResult();
function getResult(){
console.log('begin');
let body={"area_id": area,"pnum": pnum,"psize": psize,"rank_type": 0};
const lol = {
url: 'https://m.wegame.com.cn/api/mobile/lua/proxy/index/mwg_lol_proxy/get_score_rank',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(body)
};
sy.post(lol, function (error, response, data) {
let obj = JSON.parse(data);
let chanmpion='🔥';
let retstr='';
let result=obj.data.data.rank_list;
var order=1;
for(var i in result){
retstr=retstr+'排名·'
if(order<10){
retstr=retstr+order+' ';
}
else{
retstr=retstr+order;
}
retstr=retstr+'·分数·'+result[i].win_point;
retstr=retstr+'·';
retstr=retstr+'[ ';
retstr=retstr+result[i].name;
retstr=retstr+' ]';
retstr=retstr+chanmpion;
retstr=retstr+'\n';
order++;
}
sy.log(retstr);
sy.msg(title, '', retstr);
sy.done();
})
}
function init() {
isSurge = () => {
return undefined === this.$httpClient ? false : true
}
isQuanX = () => {
return undefined === this.$task ? false : true
}
getdata = (key) => {
if (isSurge()) return $persistentStore.read(key)
if (isQuanX()) return $prefs.valueForKey(key)
}
setdata = (key, val) => {
if (isSurge()) return $persistentStore.write(key, val)
if (isQuanX()) return $prefs.setValueForKey(key, val)
}
msg = (title, subtitle, body) => {
if (isSurge()) $notification.post(title, subtitle, body)
if (isQuanX()) $notify(title, subtitle, body)
}
log = (message) => console.log(message)
get = (url, cb) => {
if (isSurge()) {
$httpClient.get(url, cb)
}
if (isQuanX()) {
url.method = 'GET'
$task.fetch(url).then((resp) => cb(null, {}, resp.body))
}
}
post = (options, callback) => {
if (isQuanX()) {
if (typeof options == "string") options = { url: options }
options["method"] = "POST"
$task.fetch(options).then(response => {
response["status"] = response.statusCode
callback(null, response, response.body)
}, reason => callback(reason.error, null, null))
}
if (isSurge()) $httpClient.post(options, callback)
}
done = (value = {}) => {
$done(value)
}
return { isSurge, isQuanX, msg, log, getdata, setdata, get, post, done }
}