...
This commit is contained in:
parent
2d13c865af
commit
90f43a734e
44
dist/clients/irc.js
vendored
44
dist/clients/irc.js
vendored
@ -26,6 +26,12 @@ export default class irc extends EventEmitter {
|
|||||||
_recachetime = 60 * 30;
|
_recachetime = 60 * 30;
|
||||||
_cmd = new Map();
|
_cmd = new Map();
|
||||||
server;
|
server;
|
||||||
|
emit(event, ...args) {
|
||||||
|
return super.emit(event, ...args);
|
||||||
|
}
|
||||||
|
on(event, listener) {
|
||||||
|
return super.on(event, listener);
|
||||||
|
}
|
||||||
constructor(options) {
|
constructor(options) {
|
||||||
super();
|
super();
|
||||||
this.options = {
|
this.options = {
|
||||||
@ -61,35 +67,27 @@ export default class irc extends EventEmitter {
|
|||||||
}));
|
}));
|
||||||
this.connect();
|
this.connect();
|
||||||
}
|
}
|
||||||
connect(reconnect = false) {
|
createSocket() {
|
||||||
if (reconnect)
|
return this.options.ssl
|
||||||
this.socket = undefined;
|
? tls.connect({
|
||||||
if (this.options.ssl) {
|
|
||||||
this.socket = tls.connect({
|
|
||||||
host: this.options.host,
|
host: this.options.host,
|
||||||
port: this.options.port,
|
port: this.options.port,
|
||||||
rejectUnauthorized: !this.options.selfSigned,
|
rejectUnauthorized: !this.options.selfSigned,
|
||||||
}, () => this.handleConnection());
|
})
|
||||||
}
|
: net.connect({
|
||||||
else {
|
|
||||||
this.socket = net.connect({
|
|
||||||
host: this.options.host,
|
host: this.options.host,
|
||||||
port: this.options.port,
|
port: this.options.port,
|
||||||
}, () => this.handleConnection());
|
});
|
||||||
}
|
}
|
||||||
if (!this.socket)
|
connect(reconnect = false) {
|
||||||
throw new Error("Socket konnte nicht initialisiert werden.");
|
if (reconnect)
|
||||||
|
this.socket = undefined;
|
||||||
|
this.socket = this.createSocket();
|
||||||
|
this.socket.on("data", (msg) => this.handleData(msg));
|
||||||
|
this.socket.on("end", () => this.handleDisconnect());
|
||||||
|
this.socket.on("error", (err) => this.handleError(err));
|
||||||
this.socket.setEncoding("utf-8");
|
this.socket.setEncoding("utf-8");
|
||||||
this.socket.on("data", (msg) => {
|
this.handleConnection();
|
||||||
console.log("Received data:", msg);
|
|
||||||
this.handleData(msg);
|
|
||||||
});
|
|
||||||
this.socket.on("end", () => {
|
|
||||||
this.handleDisconnect();
|
|
||||||
});
|
|
||||||
this.socket.on("error", (err) => {
|
|
||||||
this.handleError(err);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
handleConnection() {
|
handleConnection() {
|
||||||
this.send(`NICK ${this.options.nickname}`);
|
this.send(`NICK ${this.options.nickname}`);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user