-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcore.js
117 lines (94 loc) · 4.15 KB
/
core.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
const core = {};
const spawnAutoRestart = (restart, time) => setTimeout(async () => {
console.log(`fb autorestart time!`);
restart().then(res)
}, time)
core.spawnFallback = async (autoRestart) => new Promise(async res => {
let runningProc, pendingRestart = false;
const restart = () => new Promise(async res => {
if(runningProc) {
pendingRestart = true;
console.log(`Set pending restart to true!`);
require('request').get(`http://127.0.0.1:1366/stopSendingPings`, {}, (e, r) => {
console.log(`Told fallback process to stop sending pings! (${r.statusCode})`)
});
runningProc.once(`close`, () => {
res()
})
} else {
console.warn(`There is no running fallback process to close, returning...`)
res(false)
}
})
res({ restart, kill: () => {
console.log(`Killing fb`)
runningProc.kill("SIGKILL")
} })
while(true) await new Promise(async res => {
pendingRestart = false;
runningProc = require('child_process').spawn(`node`, [
`server`,
...process.argv.slice(2).filter(s => s != `main` && s != `debug`),
`--mainLocation=http://127.0.0.1:1400`,
`--fallback`
]);
const procId = require('./util').idGen(8);
runningProc.generatedID = procId;
if(autoRestart) {
const time = 1.8e+6
//const time = 10000
console.log(`Restarting fallback process in ${require('./util').time(time).string}`)
runningProc.thisAutoRestart = spawnAutoRestart(restart, time) // restart every 30 mins
}
let ready = false;
const filter = (d) => {
d = d.toString().trim()
blockedStrings = [
"Checking for updates...",
//"Did not fetch updates -- sendPings is disabled",
"Ping sending is not enabled!"
]
if(blockedStrings.indexOf(d) != -1) {
return false
} else return true;
}
const pendingRestartFunc = () => {
//console.log(`pendingRestart timer`)
if(runningProc.generatedID == procId && runningProc.pendingRestartTimer) {
if(pendingRestart === true) {
console.log(`Pending restart was true, killing proc.`)
runningProc.kill("SIGINT")
} else runningProc.pendingRestartTimer = setInterval(() => {
//console.log(`pendingRestart interval`)
if(runningProc.generatedID == procId && runningProc.pendingRestartTimer) {
if(pendingRestart === true) {
console.log(`Pending restart was true, killing proc.`)
runningProc.kill("SIGINT")
}
} else if(runningProc.pendingRestartTimer && runningProc.generatedID == procId) {
clearTimeout(runningProc.pendingRestartTimer)
}
}, 1000)
}
};
runningProc.pendingRestartTimer = setTimeout(pendingRestartFunc, 60000)
runningProc.stdout.on(`data`, d => {
if(!ready && d.toString().includes(`online`)) ready = true;
if(filter(d)) {
if(runningProc.pendingRestartTimer) clearTimeout(runningProc.pendingRestartTimer);
runningProc.pendingRestartTimer = setTimeout(pendingRestartFunc, 20000)
if(ready) console.log(`FB | ` + d.toString().trim().split(`\n`).join(`\nFB | `))
}
});
runningProc.stderr.on(`data`, d => {
console.error(`FB | ` + d.toString().trim().split(`\n`).join(`\nFB | `))
});
runningProc.on(`close`, (code, signal) => {
console.log(`FB PROCESS CLOSED -- CODE ${code}`);
if(runningProc.thisAutoRestart) clearTimeout(runningProc.thisAutoRestart)
if(runningProc.pendingRestartTimer) clearTimeout(runningProc.pendingRestartTimer)
res()
})
})
})
module.exports = core;