mirror of
https://github.com/gnmyt/myspeed.git
synced 2026-01-06 04:59:41 -06:00
35 lines
1.0 KiB
JavaScript
35 lines
1.0 KiB
JavaScript
const {spawn} = require('child_process');
|
|
|
|
module.exports = async (serverId, binary_path = './bin/speedtest' + (process.platform === "win32" ? ".exe" : "")) => {
|
|
const args = ['--accept-license', '--accept-gdpr', '--format=jsonl'];
|
|
if (serverId) args.push(`--server-id=${serverId}`);
|
|
|
|
const process = spawn(binary_path, args, {windowsHide: true});
|
|
process.stdout.on('data', onLine);
|
|
|
|
let result = {};
|
|
|
|
await new Promise((resolve, reject) => {
|
|
process.on('error', e => reject({message: e}));
|
|
process.on('exit', resolve);
|
|
});
|
|
|
|
if (result.error) throw new Error(result.error);
|
|
return result;
|
|
|
|
function onLine(buffer) {
|
|
const line = buffer.toString().replace("\n", "");
|
|
if (!line.startsWith("{")) return;
|
|
|
|
let data = {};
|
|
try {
|
|
data = JSON.parse(line);
|
|
} catch (e) {
|
|
data.error = e.message;
|
|
}
|
|
|
|
if (data.error) result.error = data.error;
|
|
|
|
if (data.type === "result") result = data;
|
|
}
|
|
} |