-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.js
142 lines (128 loc) · 3.64 KB
/
index.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
const child_process = require("child_process")
const fs = require("fs")
const tmp = require("tmp")
const decamelize = require("decamelize")
const downloadfrp = require("./download-frp")
const bunyan = require("bunyan")
const debug = require("debug")("node-frp2")
const log = bunyan.createLogger({
name: "node-frp2",
level: debug.enabled ? "trace" : "info",
})
const getTemporaryConfigFile = async (config) => {
let configPath, bindPort
if (typeof config === "string") {
configPath = config
const configContent = fs.readFileSync(configPath).toString()
bindPort = parseInt(/^bind_port=(.*)$/.match(configContent))
} else {
bindPort = config.common?.bindPort
const frpConfigContent = `${Object.entries(config)
.map(
([group, subObj]) =>
`[${group}]\n${Object.entries(subObj)
.map(([k, v]) => `${decamelize(k, "_").toLowerCase()} = ${v}`)
.join("\n")}`
)
.join("\n\n")}`
log.trace({ frpConfigContent })
configPath = tmp.tmpNameSync() + ".ini"
fs.writeFileSync(configPath, frpConfigContent)
}
return { configPath, bindPort }
}
module.exports.startClient = async (config) => {
const { frpcPath } = await downloadfrp()
const { configPath } = await getTemporaryConfigFile(config)
const proc = child_process.spawn(frpcPath, ["-c", configPath], {
shell: true,
})
proc.stdout.on("data", (data) => {
log.trace({ frpcStdout: data.toString() })
})
proc.stderr.on("data", (data) => {
log.trace({ frpcStderr: data.toString() })
})
let isClosed = false
proc.on("close", (code) => {
isClosed = true
})
await new Promise((resolve, reject) => {
const processCloseTimeout = setTimeout(() => {
if (isClosed) {
reject("frpc didn't start properly")
} else {
reject(`frpc didn't respond`)
proc.kill("SIGINT")
}
}, 5000) // 500ms to wait for start
async function checkIfRunning() {
setTimeout(() => {
if (!isClosed) {
clearTimeout(processCloseTimeout)
resolve()
}
}, 500)
}
checkIfRunning()
})
return {
proc,
stop: async () => {
proc.kill("SIGINT")
},
}
}
module.exports.startServer = async (config) => {
const { frpsPath } = await downloadfrp()
const { configPath, bindPort } = await getTemporaryConfigFile(config)
const proc = child_process.spawn(frpsPath, ["-c", configPath], {
shell: true,
})
proc.stdout.on("data", (data) => {
log.trace({ frpsStdout: data.toString() })
})
proc.stderr.on("data", (data) => {
log.trace({ frpsStderr: data.toString() })
})
let isClosed = false
proc.on("close", (code) => {
isClosed = true
})
await new Promise((resolve, reject) => {
const processCloseTimeout = setTimeout(() => {
if (isClosed) {
reject("frps didn't start properly")
} else {
reject(`frps didn't respond`)
proc.kill("SIGINT")
}
}, 5000) // 500ms to wait for start
async function checkIfRunning() {
// TODO frps doesn't have a health check endpoint (as far as i can tell)
// Issue: https://github.com/fatedier/frp/issues/2455
// const result = await getJSON(`http://localhost:${bindPort}`).catch(
// () => null
// )
// if (result) {
// clearTimeout(processCloseTimeout)
// resolve()
// } else {
// setTimeout(checkIffrpcRunning, 50)
// }
setTimeout(() => {
if (!isClosed) {
clearTimeout(processCloseTimeout)
resolve()
}
}, 500)
}
checkIfRunning()
})
return {
proc,
stop: async () => {
proc.kill("SIGINT")
},
}
}