mirror of
https://github.com/discordeno/discordeno.git
synced 2026-05-30 15:30:07 +00:00
72 lines
1.8 KiB
TypeScript
72 lines
1.8 KiB
TypeScript
import { GatewayOpcodes } from "../types/shared.ts";
|
|
import { GatewayManager } from "./gateway_manager.ts";
|
|
|
|
export function identify(gateway: GatewayManager, shardId: number, maxShards: number) {
|
|
gateway.debug("GW IDENTIFYING", { shardId, maxShards });
|
|
|
|
// Need to clear the old heartbeat interval
|
|
const oldShard = gateway.shards.get(shardId);
|
|
if (oldShard) {
|
|
gateway.closeWS(oldShard.ws, 3065, "Reidentifying closure of old shard");
|
|
clearInterval(oldShard.heartbeat.intervalId);
|
|
}
|
|
|
|
// CREATE A SHARD
|
|
const socket = gateway.createShard(gateway, shardId);
|
|
|
|
// Identify can just set/reset the settings for the shard
|
|
gateway.shards.set(shardId, {
|
|
id: shardId,
|
|
ws: socket,
|
|
sessionId: "",
|
|
previousSequenceNumber: 0,
|
|
resuming: false,
|
|
ready: false,
|
|
unavailableGuildIds: new Set(),
|
|
heartbeat: {
|
|
lastSentAt: 0,
|
|
lastReceivedAt: 0,
|
|
acknowledged: false,
|
|
keepAlive: false,
|
|
interval: 0,
|
|
intervalId: 0,
|
|
},
|
|
queue: [],
|
|
processingQueue: false,
|
|
queueStartedAt: Date.now(),
|
|
queueCounter: 0,
|
|
// BY DEFAULT SET TO 120. EDIT IN HELLO
|
|
safeRequestsPerShard: 120,
|
|
});
|
|
|
|
socket.onopen = () => {
|
|
gateway.sendShardMessage(
|
|
gateway,
|
|
shardId,
|
|
{
|
|
op: GatewayOpcodes.Identify,
|
|
d: {
|
|
token: `Bot ${gateway.token}`,
|
|
compress: gateway.compress,
|
|
properties: {
|
|
$os: gateway.$os,
|
|
$browser: gateway.$browser,
|
|
$device: gateway.$device,
|
|
},
|
|
intents: gateway.intents,
|
|
shard: [shardId, maxShards],
|
|
presence: gateway.presence,
|
|
},
|
|
},
|
|
true,
|
|
);
|
|
};
|
|
|
|
return new Promise((resolve) => {
|
|
gateway.loadingShards.set(shardId, {
|
|
shardId,
|
|
resolve,
|
|
});
|
|
});
|
|
}
|