refactor: remove flumm-fetch dependency
This commit is contained in:
parent
ca114f677e
commit
2d13c865af
29
dist/clients/slack.js
vendored
29
dist/clients/slack.js
vendored
@ -1,13 +1,19 @@
|
|||||||
import https from "node:https";
|
import https from "node:https";
|
||||||
import url from "node:url";
|
import url from "node:url";
|
||||||
import EventEmitter from "node:events";
|
import EventEmitter from "node:events";
|
||||||
import fetch from "flumm-fetch";
|
|
||||||
export default class slack extends EventEmitter {
|
export default class slack extends EventEmitter {
|
||||||
options;
|
options;
|
||||||
token;
|
token;
|
||||||
api = "https://slack.com/api";
|
api = "https://slack.com/api";
|
||||||
interval = null;
|
interval = null;
|
||||||
server;
|
server;
|
||||||
|
reconnectAttempts = 0;
|
||||||
|
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 = {
|
||||||
@ -48,6 +54,7 @@ export default class slack extends EventEmitter {
|
|||||||
});
|
});
|
||||||
if (res.url) {
|
if (res.url) {
|
||||||
this.server.wss.url = url.parse(res.url);
|
this.server.wss.url = url.parse(res.url);
|
||||||
|
this.reconnectAttempts = 0;
|
||||||
this.initializeWebSocket();
|
this.initializeWebSocket();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -79,7 +86,7 @@ export default class slack extends EventEmitter {
|
|||||||
handleWebSocketEvents() {
|
handleWebSocketEvents() {
|
||||||
if (!this.server.wss.socket)
|
if (!this.server.wss.socket)
|
||||||
return;
|
return;
|
||||||
this.interval = setInterval(async () => await this.ping(), 30000);
|
this.interval = setInterval(async () => await this.ping(), 3e4);
|
||||||
this.server.wss.socket.on("data", async (data) => {
|
this.server.wss.socket.on("data", async (data) => {
|
||||||
try {
|
try {
|
||||||
const parsedData = this.parseData(data);
|
const parsedData = this.parseData(data);
|
||||||
@ -105,12 +112,15 @@ export default class slack extends EventEmitter {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
async reconnect() {
|
async reconnect() {
|
||||||
this.server.wss.url = null;
|
if (this.reconnectAttempts >= 5) {
|
||||||
this.server.wss.socket = null;
|
this.emit("data", ["error", "Too many reconnect attempts"]);
|
||||||
if (this.interval)
|
return;
|
||||||
clearInterval(this.interval);
|
}
|
||||||
this.emit("data", ["info", "reconnecting slack"]);
|
this.reconnectAttempts++;
|
||||||
await this.connect();
|
setTimeout(async () => {
|
||||||
|
this.emit("data", ["info", "Reconnecting to Slack"]);
|
||||||
|
await this.connect();
|
||||||
|
}, this.reconnectAttempts * 1e3);
|
||||||
}
|
}
|
||||||
async getChannel(channelId) {
|
async getChannel(channelId) {
|
||||||
if (this.server.channel.has(channelId))
|
if (this.server.channel.has(channelId))
|
||||||
@ -182,8 +192,7 @@ export default class slack extends EventEmitter {
|
|||||||
}
|
}
|
||||||
parseData(data) {
|
parseData(data) {
|
||||||
try {
|
try {
|
||||||
const json = JSON.parse(data.toString());
|
return JSON.parse(data.toString());
|
||||||
return json;
|
|
||||||
}
|
}
|
||||||
catch (err) {
|
catch (err) {
|
||||||
this.emit("data", ["error", "failed to parse data"]);
|
this.emit("data", ["error", "failed to parse data"]);
|
||||||
|
15
dist/clients/tg.js
vendored
15
dist/clients/tg.js
vendored
@ -1,4 +1,3 @@
|
|||||||
import fetch from "flumm-fetch";
|
|
||||||
import EventEmitter from "events";
|
import EventEmitter from "events";
|
||||||
const allowedFiles = ["audio", "video", "photo", "document"];
|
const allowedFiles = ["audio", "video", "photo", "document"];
|
||||||
export default class tg extends EventEmitter {
|
export default class tg extends EventEmitter {
|
||||||
@ -14,6 +13,12 @@ export default class tg extends EventEmitter {
|
|||||||
user: new Map(),
|
user: new Map(),
|
||||||
me: {},
|
me: {},
|
||||||
};
|
};
|
||||||
|
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 = {
|
||||||
@ -143,7 +148,13 @@ export default class tg extends EventEmitter {
|
|||||||
};
|
};
|
||||||
if (reply)
|
if (reply)
|
||||||
body["reply_to_message_id"] = reply;
|
body["reply_to_message_id"] = reply;
|
||||||
const opts = { method: "POST", body };
|
const opts = {
|
||||||
|
method: "POST",
|
||||||
|
body: JSON.stringify(body),
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json"
|
||||||
|
}
|
||||||
|
};
|
||||||
return await (await fetch(`${this.api}/sendMessage`, opts)).json();
|
return await (await fetch(`${this.api}/sendMessage`, opts)).json();
|
||||||
}
|
}
|
||||||
format(msg) {
|
format(msg) {
|
||||||
|
@ -20,9 +20,6 @@
|
|||||||
"author": "Flummi & jkhsjdhjs",
|
"author": "Flummi & jkhsjdhjs",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"dependencies": {
|
|
||||||
"flumm-fetch": "^1.0.1"
|
|
||||||
},
|
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://git.lat/keinBot/cuffeo/issues"
|
"url": "https://git.lat/keinBot/cuffeo/issues"
|
||||||
},
|
},
|
||||||
|
@ -2,7 +2,6 @@ import https from "node:https";
|
|||||||
import net from "node:net";
|
import net from "node:net";
|
||||||
import url from "node:url";
|
import url from "node:url";
|
||||||
import EventEmitter from "node:events";
|
import EventEmitter from "node:events";
|
||||||
import fetch from "flumm-fetch";
|
|
||||||
|
|
||||||
interface SlackOptions {
|
interface SlackOptions {
|
||||||
token: string;
|
token: string;
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
import fetch from "flumm-fetch";
|
|
||||||
import EventEmitter from "events";
|
import EventEmitter from "events";
|
||||||
|
|
||||||
const allowedFiles = ["audio", "video", "photo", "document"] as const;
|
const allowedFiles = ["audio", "video", "photo", "document"] as const;
|
||||||
@ -227,7 +226,13 @@ export default class tg extends EventEmitter {
|
|||||||
if(reply)
|
if(reply)
|
||||||
body["reply_to_message_id"] = reply;
|
body["reply_to_message_id"] = reply;
|
||||||
|
|
||||||
const opts = { method: "POST", body };
|
const opts = {
|
||||||
|
method: "POST",
|
||||||
|
body: JSON.stringify(body),
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json"
|
||||||
|
}
|
||||||
|
};
|
||||||
return await (await fetch(`${this.api}/sendMessage`, opts)).json();
|
return await (await fetch(`${this.api}/sendMessage`, opts)).json();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user