2023-01-12 17:50:38 +00:00
|
|
|
"use strict";
|
|
|
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
|
|
};
|
|
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
|
const socket_js_1 = __importDefault(require("./socket.js"));
|
2023-02-06 10:51:41 +00:00
|
|
|
const buffer_1 = require("buffer");
|
2023-01-12 17:50:38 +00:00
|
|
|
class Peer {
|
|
|
|
_proxy;
|
|
|
|
_peer;
|
|
|
|
_muxer;
|
|
|
|
_socket;
|
|
|
|
_onopen;
|
|
|
|
_onreceive;
|
|
|
|
_onsend;
|
|
|
|
_onclose;
|
2023-03-03 10:22:55 +00:00
|
|
|
_onchannel;
|
2023-02-26 03:16:59 +00:00
|
|
|
_emulateWebsocket;
|
2023-03-03 10:22:55 +00:00
|
|
|
constructor({ proxy, peer, muxer, onopen, onreceive, onsend, onclose, onchannel, emulateWebsocket = false, }) {
|
2023-01-12 17:50:38 +00:00
|
|
|
this._proxy = proxy;
|
|
|
|
this._peer = peer;
|
|
|
|
this._muxer = muxer;
|
2023-03-02 10:37:30 +00:00
|
|
|
this._onopen = onopen?.bind(undefined, this);
|
|
|
|
this._onreceive = onreceive?.bind(undefined, this);
|
|
|
|
this._onsend = onsend?.bind(undefined, this);
|
|
|
|
this._onclose = onclose?.bind(undefined, this);
|
2023-03-03 10:22:55 +00:00
|
|
|
this._onchannel = onchannel?.bind(undefined, this);
|
2023-02-26 03:16:59 +00:00
|
|
|
this._emulateWebsocket = emulateWebsocket;
|
2023-01-12 17:50:38 +00:00
|
|
|
}
|
2023-03-02 10:41:30 +00:00
|
|
|
_channel;
|
|
|
|
get channel() {
|
|
|
|
return this._channel;
|
|
|
|
}
|
2023-01-12 17:50:38 +00:00
|
|
|
async init() {
|
|
|
|
const write = async (data, cb) => {
|
|
|
|
pipe.send(data);
|
|
|
|
await this._onsend?.(data);
|
|
|
|
cb();
|
|
|
|
};
|
|
|
|
const self = this;
|
2023-03-02 10:26:40 +00:00
|
|
|
this._channel = this._muxer.createChannel({
|
2023-01-12 17:50:38 +00:00
|
|
|
protocol: this._proxy.protocol,
|
|
|
|
async onopen(m) {
|
|
|
|
if (!m) {
|
2023-02-06 10:51:41 +00:00
|
|
|
m = buffer_1.Buffer.from([]);
|
|
|
|
}
|
|
|
|
if (m instanceof Uint8Array) {
|
|
|
|
m = buffer_1.Buffer.from(m);
|
2023-01-12 17:50:38 +00:00
|
|
|
}
|
|
|
|
self._socket = new socket_js_1.default({
|
|
|
|
remoteAddress: self._peer.rawStream.remoteHost,
|
|
|
|
remotePort: self._peer.rawStream.remotePort,
|
2023-02-25 04:14:57 +00:00
|
|
|
remotePublicKey: self._peer.remotePublicKey,
|
2023-01-12 17:50:38 +00:00
|
|
|
write,
|
2023-02-26 03:16:59 +00:00
|
|
|
emulateWebsocket: self._emulateWebsocket,
|
2023-01-12 17:50:38 +00:00
|
|
|
});
|
2023-03-02 10:26:40 +00:00
|
|
|
self._socket.on("end", () => this._channel.close());
|
2023-01-12 17:50:38 +00:00
|
|
|
let ret = await self._onopen?.(self._socket, m);
|
|
|
|
if (!ret || (ret && ret.connect === false)) {
|
|
|
|
// @ts-ignore
|
|
|
|
self._socket.emit("connect");
|
|
|
|
}
|
|
|
|
self._socket.emit("data", m);
|
|
|
|
},
|
|
|
|
async onclose() {
|
2023-02-16 06:02:20 +00:00
|
|
|
self._socket?.destroy();
|
2023-01-12 17:50:38 +00:00
|
|
|
await self._onclose?.(self._socket);
|
|
|
|
},
|
|
|
|
});
|
2023-03-02 10:26:40 +00:00
|
|
|
const pipe = this._channel.addMessage({
|
2023-01-12 17:50:38 +00:00
|
|
|
async onmessage(m) {
|
2023-02-06 10:51:41 +00:00
|
|
|
if (m instanceof Uint8Array) {
|
|
|
|
m = buffer_1.Buffer.from(m);
|
|
|
|
}
|
2023-01-12 17:50:38 +00:00
|
|
|
self._socket.emit("data", m);
|
|
|
|
await self._onreceive?.(m);
|
|
|
|
},
|
|
|
|
});
|
2023-03-03 10:22:55 +00:00
|
|
|
await this._onchannel?.(this._channel);
|
2023-03-02 10:26:40 +00:00
|
|
|
await this._channel.open();
|
2023-01-12 17:50:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
exports.default = Peer;
|