-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathForceInstall.js
More file actions
95 lines (77 loc) · 2.46 KB
/
ForceInstall.js
File metadata and controls
95 lines (77 loc) · 2.46 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
const url = $request.url
const responseBody = $response.body
; (async () => {
const regeList = /.*?\/v3\/accounts\/.+?\/apps$/
const regeMainPage = /.*?\/v2\/accounts\/.+?\/apps\/.+?\/builds\/.+/
const regBiulds = /.*?\/v2\/accounts\/.+?\/apps\/.+?\/platforms\/ios\/trains\/.+?\/builds/
if (regeList.test(url)) {
$done({ body: list(responseBody) })
return
}
if (regeMainPage.test(url)) {
if (url.endsWith("install")) {
console.log("is install")
$done({ body: responseBody })
return
}
$done({ body: info(responseBody) })
return
}
if (regBiulds.test(url)) {
$done({ body: builds(responseBody) })
return
}
})()
.catch(error => {
console.log(error)
}).finally(() => $done())
function info(responseBody) {
let body = JSON.parse(responseBody)
let family = {
"name": "Mac",
"unsupportedDevices": [
],
"minimumSupportedDevice": null
}
for (const build of body.data.builds) {
build.platformCompatible = true
build.hardwareCompatible = true
build.compatible = true
build.permission = "install"
build.compatibilityData.compatibleDeviceFamilies.push(family)
}
let build = body.data.currentBuild
build.platformCompatible = true
build.hardwareCompatible = true
build.compatible = true
build.permission = "install"
build.compatibilityData.compatibleDeviceFamilies.push(family)
return JSON.stringify(body)
}
function list(responseBody) {
if (responseBody === "") {
$done({ body: responseBody })
}
let body = JSON.parse(responseBody)
for (const app of body.data) {
for (const p of app.platforms) {
if (p.name === "ios") {
console.log(p.build.name)
p.build.hardwareCompatible = true
p.build.compatible = true
}
}
}
return JSON.stringify(body)
}
function builds(responseBody) {
let body = JSON.parse(responseBody)
if (body.error === null) {
for (const build of body.data) {
if (build.platform === "ios") {
build.compatible = true
}
}
}
return JSON.stringify(body)
}