summary refs log tree commit diff
path: root/slowcord/status/src/gateway.ts
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-09-15 22:43:37 +1000
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-09-15 23:14:50 +1000
commit725491a69dbe03cc8800c2c95525279f455a552a (patch)
tree8ac70c2e913fd9f97345cdb6d8c5697e0e7227a1 /slowcord/status/src/gateway.ts
parentAllow empty content through block list (diff)
downloadserver-725491a69dbe03cc8800c2c95525279f455a552a.tar.xz
Perhaps a message create perf test?
Diffstat (limited to 'slowcord/status/src/gateway.ts')
-rw-r--r--slowcord/status/src/gateway.ts82
1 files changed, 82 insertions, 0 deletions
diff --git a/slowcord/status/src/gateway.ts b/slowcord/status/src/gateway.ts
new file mode 100644
index 00000000..14944d09
--- /dev/null
+++ b/slowcord/status/src/gateway.ts
@@ -0,0 +1,82 @@
+import "dotenv/config";
+import Fosscord from "fosscord-gopnik";
+import Discord from "discord.js";
+import mysql from "mysql2";
+import fetch from "node-fetch";
+
+const dbConn = mysql.createConnection(process.env.DATABASE as string);
+const executePromise = (sql: string, args: any[]) => new Promise((resolve, reject) => dbConn.execute(sql, args, (err, res) => { if (err) reject(err); else resolve(res); }));
+const savePerf = async (time: number, name: string, error?: string | Error) => {
+	if (error && typeof error != "string") error = error.message;
+	try {
+		await executePromise("INSERT INTO performance (value, endpoint, timestamp, error) VALUES (?, ?, ?, ?)", [time ?? 0, name, new Date(), error ?? null]);
+		// await executePromise("DELETE FROM performance WHERE DATE(timestamp) < now() - interval ? DAY", [process.env.RETENTION_DAYS]);
+	}
+	catch (e) {
+		console.error(e);
+	}
+};
+
+var timestamp: number | undefined;
+
+const doMeasurements = async (channel: Discord.TextChannel) => {
+	timestamp = Date.now();
+	await channel.send("hello this is a special message kthxbye");
+
+	setTimeout(doMeasurements, parseInt(process.env.MEASURE_INTERVAL as string), channel);
+};
+
+const instance = {
+	app: process.env.INSTANCE_WEB_APP as string,
+	api: process.env.INSTANCE_API as string,
+	cdn: process.env.INSTANCE_CDN as string,
+	token: process.env.INSTANCE_TOKEN as string,
+};
+
+const client = new Fosscord.Client({
+	intents: [],
+	http: {
+		api: instance.api,
+		cdn: instance.cdn
+	}
+});
+
+client.on("ready", async () => {
+	console.log(`Ready on gateway as ${client.user!.tag}`);
+
+	const channel = await client.channels.fetch("1019955729054267764");
+	if (!channel) return;
+
+	doMeasurements(channel as Discord.TextChannel);
+});
+
+client.on("messageCreate", async (msg: Discord.Message) => {
+	if (!timestamp) return;
+	if (msg.author.id != "992745947417141682"
+		|| msg.channel.id != "1019955729054267764"
+		|| msg.content != "hello this is a special message kthxbye")
+		return;
+	await savePerf(Date.now() - timestamp, "messageCreate", undefined);
+	timestamp = undefined;
+
+	await fetch(`${instance.api}/channels/1019955729054267764/messages/${msg.id}`, {
+		method: "DELETE",
+		headers: {
+			authorization: instance.token
+		}
+	})
+});
+
+client.on("error", (error: any) => {
+	console.log(`Gateway error`, error);
+});
+
+client.on("warn", (msg: any) => {
+	console.log(`Gateway warning:`, msg);
+});
+
+(async () => {
+	await new Promise((resolve) => dbConn.connect(resolve));
+	console.log("Connected to db");
+	await client.login(instance.token);
+})();
\ No newline at end of file