2022-05-20 18:49:04 +08:00

38 lines
840 B
JavaScript

import path from 'path';
import fs from 'fs';
import hoxy from 'hoxy';
import getPort from 'get-port';
import { app } from 'electron';
import CONFIG from './const';
import { setProxy, closeProxy } from './setProxy';
export async function startServer({ interceptCallback = f => f, errorCallback = f => f }) {
const port = await getPort();
const proxy = hoxy
.createServer({
certAuthority: {
key: fs.readFileSync(CONFIG.CERT_PRIVATE_PATH),
cert: fs.readFileSync(CONFIG.CERT_PUBLIC_PATH),
},
})
.listen(port, () => {
setProxy('127.0.0.1', port).catch(errorCallback);
});
proxy.intercept(
{
phase: 'request',
},
interceptCallback,
);
}
app.on('before-quit', async e => {
e.preventDefault();
try {
await closeProxy();
} catch (error) {}
app.exit();
});