-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcmapicheckin
96 lines (83 loc) · 2.56 KB
/
cmapicheckin
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
/**
* @fileoverview Template to compose HTTP reqeuest.
*
*/
const url = `https://mina-cmapi.cp-properties.cn:1443/api/VipInfo/Sign`;
const method = `GET`;
const cookieKey_cmapi = 'Bearer_cmapi'
const sy = init();
var Valcmapi = sy.getdata(cookieKey_cmapi);
const headers = {
'Accept-Encoding' : `gzip,compress,br,deflate`,
'content-type' : `application/json`,
'Connection' : `keep-alive`,
'Referer' : `https://servicewechat.com/wx3f27877140587959/55/page-frame.html`,
'buildingid' : `2`,
'Host' : `mina-cmapi.cp-properties.cn:1443`,
'User-Agent' : `Mozilla/5.0 (iPhone; CPU iPhone OS 16_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 MicroMessenger/8.0.32(0x18002038) NetType/WIFI Language/zh_CN`,
'Authorization' : Valcmapi
};
const body = ``;
const myRequest = {
url: url,
method: method,
headers: headers,
body: body
};
$task.fetch(myRequest).then(response => {
console.log("船厂签到" + "\n\n" + response.body);
const llsresult = JSON.parse(response.body);
$notify("船厂签到:" + llsresult.success);
$done();
}, reason => {
console.log(reason.error);
$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 }
}
function random(min, max) {
return Math.floor(Math.random() * (max - min)) + min;
}