1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
|
/*
Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
Copyright (C) 2023 Spacebar and Spacebar Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import { Capabilities, CLOSECODES, OPCODES, Payload, Send, setupListener, WebSocket } from "@spacebar/gateway";
import {
Application,
arrayGroupBy,
Channel,
checkToken,
Config,
CurrentTokenFormatVersion,
ElapsedTime,
emitEvent,
Emoji,
EVENTEnum,
generateToken,
getDatabase,
Guild,
GuildOrUnavailable,
Intents,
Member,
MemberPrivateProjection,
OPCodes,
PresenceUpdateEvent,
ReadState,
ReadyEventData,
ReadyGuildDTO,
ReadyUserGuildSettingsEntries,
Recipient,
Relationship,
Role,
Session,
SessionsReplace,
Sticker,
Stopwatch,
ThreadMember,
timeFunction,
timePromise,
TraceNode,
TraceRoot,
UserSettings,
UserSettingsProtos,
VoiceState,
} from "@spacebar/util";
import { check } from "./instanceOf";
import { In, Not } from "typeorm";
import { PreloadedUserSettings } from "discord-protos";
import { ChannelType, DefaultUserGuildSettings, DMChannel, IdentifySchema, PrivateUserProjection, PublicUser, PublicUserProjection, RelationshipType } from "@spacebar/schemas";
import { randomString } from "@spacebar/api";
// TODO: user sharding
// TODO: check privileged intents, if defined in the config
export async function onIdentify(this: WebSocket, data: Payload) {
const totalSw = Stopwatch.startNew();
const taskSw = Stopwatch.startNew();
const gatewayShardName = `sb-gateway`;
if (this.user_id) {
// we've already identified
return this.close(CLOSECODES.Already_authenticated);
}
clearTimeout(this.readyTimeout);
// Check payload matches schema
check.call(this, IdentifySchema, data.d);
const identify: IdentifySchema = data.d;
this.capabilities = new Capabilities(identify.capabilities || 0);
this.large_threshold = identify.large_threshold || 250;
const parseAndValidateTime = taskSw.getElapsedAndReset();
const { result: tokenData, elapsed: checkTokenTime } = await timePromise(() =>
checkToken(identify.token, {
// relations: {"relationships", "relationships.to", "settings"],
// select: [...PrivateUserProjection, "relationships", "rights"],
select: [...PrivateUserProjection, "rights"],
}),
);
this.accessToken = identify.token;
taskSw.reset(); // don't include checkToken time...
const user = tokenData.user;
if (!user) {
console.log(`[Gateway/${this.ipAddress}] Failed to identify user`);
return this.close(CLOSECODES.Authentication_failed);
}
this.user_id = user.id;
this.session = tokenData.session;
const userQueryTime = taskSw.getElapsedAndReset();
// Check intents
if (!identify.intents) identify.intents = 0b11011111111111111111111111111111111n; // TODO: what is this number?
this.intents = new Intents(identify.intents);
// TODO: actually do intent things.
// Validate sharding
if (identify.shard) {
this.shard_id = identify.shard[0];
this.shard_count = identify.shard[1];
if (this.shard_count == null || this.shard_id == null || this.shard_id > this.shard_count || this.shard_id < 0 || this.shard_count <= 0) {
// TODO: why do we even care about this right now?
console.log(`[Gateway/${this.user_id}] Invalid sharding from ${user.id}: ${identify.shard}`);
return this.close(CLOSECODES.Invalid_shard);
}
}
const validateIntentsAndShardingTime = taskSw.getElapsedAndReset();
// Generate a new gateway session if needed (id is already made, just save it in db )
const { session, isNewSession } = tokenData.session
? { session: tokenData.session, isNewSession: false }
: {
session: Session.create({
user_id: this.user_id,
session_id: this.session_id,
status: "offline", // ??? why wasnt this required before
}),
isNewSession: true,
};
if (isNewSession)
console.warn(
"[Identify/WARN] Created new session",
session.session_id,
"for user",
tokenData.user.id,
`(${tokenData.user.tag})! - Access token version`,
tokenData.tokenVersion,
"- Access token session ID:",
tokenData.decoded.did ?? "(undefined)",
);
if (tokenData.tokenVersion < CurrentTokenFormatVersion)
console.warn(
"[Identify/WARN] Access token version",
tokenData.tokenVersion,
"used by user",
tokenData.user.id,
`(${tokenData.user.tag})! - Client`,
this.capabilities.has(Capabilities.FLAGS.AUTH_TOKEN_REFRESH) ? "did" : "did not",
"opt for token refresh.",
);
this.session_id = session.session_id;
this.session = session;
// this.session.status = identify.presence?.status || "online";
this.session.last_seen = new Date();
this.session.client_info ??= {};
// noinspection SuspiciousTypeOfGuard - typeorm being weird
if (typeof this.session.client_info === "string") this.session.client_info = JSON.parse(this.session.client_info);
// noinspection SuspiciousTypeOfGuard - typeorm being weird
if (typeof this.session.last_seen_location_info === "string") this.session.last_seen_location_info = JSON.parse(this.session.last_seen_location_info);
this.session.client_info.platform = identify.properties?.$device ?? identify.properties?.$device;
this.session.client_info.os = identify.properties?.os || identify.properties?.$os;
this.session.client_status = {};
this.session.activities = identify.presence?.activities ?? []; // TODO: validation
if (this.ipAddress && this.ipAddress !== this.session.last_seen_ip) {
this.session.last_seen_ip = this.ipAddress;
await this.session.updateIpInfo();
}
let mustAnnouncePresence = false;
let presenceUpdateEventData: PresenceUpdateEvent | undefined;
if (identify.presence?.status) {
let newStatus = identify.presence.status;
if (newStatus == "unknown") newStatus = this.session.status;
if (newStatus == "offline") {
newStatus = "online";
mustAnnouncePresence = true;
}
this.session.status = newStatus;
if (mustAnnouncePresence) {
presenceUpdateEventData = {
event: "PRESENCE_UPDATE",
data: {
user: tokenData.user.toPublicUser(),
status: this.session.getPublicStatus(),
client_status: this.session.client_status,
activities: this.session.activities,
},
origin: "GATEWAY_IDENTIFY",
transaction_id: `IDENT_${this.user_id}_${randomString()}`,
} satisfies PresenceUpdateEvent;
}
}
const createSessionTime = taskSw.getElapsedAndReset();
// Get from database:
// * the users read states
// * guild members for this user
// * recipients ( dm channels )
// * the bot application, if it exists
const [
{ elapsed: sessionSaveTime },
{ result: sessions, elapsed: sessionQueryTime },
{ result: relationships, elapsed: relationshipQueryTime },
{ result: settings, elapsed: settingsQueryTime },
{ result: settingsProtos, elapsed: settingsProtosQueryTime },
{ result: application, elapsed: applicationQueryTime },
{ result: read_states, elapsed: read_statesQueryTime },
{ result: members, elapsed: membersQueryTime },
{ result: recipients, elapsed: recipientsQueryTime },
] = await Promise.all([
// avoid a round trip to check if it exists...
timePromise(() => (isNewSession ? Session.insert(session) : Session.update({ session_id: session.session_id }, session)) as Promise<unknown>),
timePromise(() =>
Session.find({
where: { user_id: this.user_id, is_admin_session: false, session_id: Not(this.session_id) },
}),
),
timePromise(() =>
Relationship.find({
where: { from_id: this.user_id },
relations: { to: true },
}),
),
timePromise(() => UserSettings.getOrDefault(this.user_id)),
timePromise(() =>
UserSettingsProtos.findOne({
where: { user_id: this.user_id },
}),
),
timePromise(() =>
Application.findOne({
where: { id: this.user_id },
select: { id: true, flags: true },
}),
),
timePromise(() =>
ReadState.find({
where: { user_id: this.user_id },
select: { id: true, channel_id: true, last_message_id: true, last_pin_timestamp: true, mention_count: true },
}),
),
timePromise(() =>
Member.find({
where: { id: this.user_id },
select: {
// We only want some member props
...Object.fromEntries(["index", ...MemberPrivateProjection].map((x) => [x, true])),
settings: true, // guild settings
roles: { id: true }, // the full role is fetched from the `guild` relation
guild: { id: true },
// TODO: we don't really need every property of
// guild channels, emoji, roles, stickers
// but we do want almost everything from guild.
// How do you do that without just enumerating the guild props?
// guild: Object.fromEntries(
// getDatabase()!
// .getMetadata(Guild)
// .columns.map((x) => [x.propertyName, true]),
// ),
},
relations: {
// "guild",
// "guild.channels",
// "guild.emojis",
// "guild.roles",
// "guild.stickers",
// "guild.voice_states",
roles: true,
// For these entities, `user` is always just the logged in user we fetched above
// "user",
},
}),
),
timePromise(() =>
Recipient.find({
where: { user_id: this.user_id, closed: false },
relations: { channel: { recipients: { user: true } } },
select: {
channel: {
id: true,
flags: true,
// is_spam: true, // TODO
last_message_id: true,
last_pin_timestamp: true,
type: true,
icon: true,
name: true,
owner_id: true,
recipients: {
// we don't actually need this ID or any other information about the recipient info,
// but typeorm does not select anything from the users relation of recipients unless we select
// at least one column.
id: true,
// We only want public user data for each dm channel
user: Object.fromEntries(PublicUserProjection.map((x) => [x, true])),
},
},
},
}),
),
]);
user.relationships = relationships;
user.settings = settings;
const userMetaQueryTime = taskSw.getElapsedAndReset();
const memberGuildIds = members.map((m) => m.guild_id);
// select relations
const [
{ result: memberGuilds, elapsed: queryGuildsTime },
{ result: memberGuildChannels, elapsed: queryGuildChannelsTime },
{ result: memberGuildEmojis, elapsed: queryGuildEmojisTime },
{ result: memberGuildRoles, elapsed: queryGuildRolesTime },
{ result: memberGuildStickers, elapsed: queryGuildStickersTime },
{ result: memberGuildVoiceStates, elapsed: queryGuildVoiceStatesTime },
{ result: threadMembers, elapsed: threadMemberTime },
{ result: allThreadsRaw, elapsed: queryThreadsTime },
] = await Promise.all([
timePromise(() =>
Guild.find({
where: { id: In(memberGuildIds) },
select: Object.fromEntries(
getDatabase()!
.getMetadata(Guild)
.columns.map((x) => [x.propertyName, true]),
),
}),
),
timePromise(() =>
Channel.find({
where: {
guild_id: In(memberGuildIds),
type: Not(In([ChannelType.GUILD_PUBLIC_THREAD, ChannelType.GUILD_PRIVATE_THREAD, ChannelType.GUILD_NEWS_THREAD])),
},
order: { guild_id: "ASC" },
relations: ["available_tags"],
}),
),
timePromise(() =>
Emoji.find({
where: { guild_id: In(memberGuildIds) },
order: { guild_id: "ASC" },
}),
),
timePromise(() =>
Role.find({
where: { guild_id: In(memberGuildIds) },
order: { guild_id: "ASC" },
}),
),
timePromise(() =>
Sticker.find({
where: { guild_id: In(memberGuildIds) },
order: { guild_id: "ASC" },
}),
),
timePromise(() =>
VoiceState.find({
where: { guild_id: In(memberGuildIds) },
order: { guild_id: "ASC" },
}),
),
timePromise(() =>
ThreadMember.find({
where: { member_idx: In(members.map(({ index }) => index)) },
}),
),
timePromise(() =>
Channel.find({
where: {
type: In([ChannelType.GUILD_NEWS_THREAD, ChannelType.GUILD_PUBLIC_THREAD]),
guild_id: In(memberGuildIds),
},
}),
),
]);
const guildIds = memberGuilds.map((g) => g.id);
const allThreads = allThreadsRaw.filter(({ thread_metadata }) => thread_metadata?.archived === false);
const threadMemberMap = new Map(threadMembers.map((member) => [member.id, member] as const));
const { result: channelsByGuild, elapsed: groupChannelsTime } = timeFunction(() => arrayGroupBy(memberGuildChannels, (c) => c.guild_id!));
const { result: emojisByGuild, elapsed: groupEmojisTime } = timeFunction(() => arrayGroupBy(memberGuildEmojis, (e) => e.guild_id!));
const { result: rolesByGuild, elapsed: groupRolesTime } = timeFunction(() => arrayGroupBy(memberGuildRoles, (r) => r.guild_id!));
const { result: stickersByGuild, elapsed: groupStickersTime } = timeFunction(() => arrayGroupBy(memberGuildStickers, (s) => s.guild_id!));
const { result: voiceStatesByGuild, elapsed: groupVoiceStatesTime } = timeFunction(() => arrayGroupBy(memberGuildVoiceStates, (v) => v.guild_id!));
const { result: threadsByGuild, elapsed: groupThreadsTime } = timeFunction(() => arrayGroupBy(allThreads, (t) => t.guild_id!));
const queryGuildChannelsTimeTotal = new ElapsedTime(queryGuildChannelsTime.totalNanoseconds + groupChannelsTime.totalNanoseconds);
const queryGuildEmojisTimeTotal = new ElapsedTime(queryGuildEmojisTime.totalNanoseconds + groupEmojisTime.totalNanoseconds);
const queryGuildRolesTimeTotal = new ElapsedTime(queryGuildRolesTime.totalNanoseconds + groupRolesTime.totalNanoseconds);
const queryGuildStickersTimeTotal = new ElapsedTime(queryGuildStickersTime.totalNanoseconds + groupStickersTime.totalNanoseconds);
const queryGuildVoiceStatesTimeTotal = new ElapsedTime(queryGuildVoiceStatesTime.totalNanoseconds + groupVoiceStatesTime.totalNanoseconds);
const queryThreadsTimeTotal = new ElapsedTime(queryThreadsTime.totalNanoseconds + groupThreadsTime.totalNanoseconds);
const guildMap = new Map(memberGuilds.map((g) => [g.id, g]));
const mergeMemberGuildsTrace: TraceNode = {
micros: 0,
calls: [],
};
members.forEach((m) => {
const sw = Stopwatch.startNew();
const totalSw = Stopwatch.startNew();
const trace: TraceNode = {
micros: 0,
calls: [],
};
const g = guildMap.get(m.guild_id);
if (g) {
m.guild = g;
trace.calls.push("findGuild", { micros: sw.getElapsedAndReset().totalMicroseconds });
g.channels = channelsByGuild.get(m.guild_id) ?? [];
trace.calls.push(`getChannels(${g.channels.length}/${memberGuildChannels.length})`, { micros: sw.getElapsedAndReset().totalMicroseconds });
g.emojis = emojisByGuild.get(m.guild_id) ?? [];
trace.calls.push(`getEmojis(${g.emojis.length}/${memberGuildEmojis.length})`, { micros: sw.getElapsedAndReset().totalMicroseconds });
g.roles = rolesByGuild.get(m.guild_id) ?? [];
trace.calls.push(`getRoles(${g.roles.length}/${memberGuildRoles.length})`, { micros: sw.getElapsedAndReset().totalMicroseconds });
g.stickers = stickersByGuild.get(m.guild_id) ?? [];
trace.calls.push(`getStickers(${g.stickers.length}/${memberGuildStickers.length})`, { micros: sw.getElapsedAndReset().totalMicroseconds });
g.voice_states = voiceStatesByGuild.get(m.guild_id) ?? [];
trace.calls.push(`getVoiceStates(${g.voice_states.length}/${memberGuildVoiceStates.length})`, { micros: sw.getElapsedAndReset().totalMicroseconds });
trace.micros = totalSw.elapsed().totalMicroseconds;
mergeMemberGuildsTrace.calls!.push(`guild_${m.guild_id}`, trace);
} else {
console.error(`[Gateway/${this.user_id}] Member ${m.id} has invalid guild_id ${m.guild_id}`);
mergeMemberGuildsTrace.calls!.push(`guild_~~${m.guild_id}~~`, trace);
}
});
for (const call of mergeMemberGuildsTrace.calls!) {
if (typeof call !== "string") mergeMemberGuildsTrace.micros += (call as { micros: number }).micros;
}
const guildRelationQueryTime = taskSw.getElapsedAndReset();
// We forgot to migrate user settings from the JSON column of `users`
// to the `user_settings` table theyre in now,
// so for instances that migrated, users may not have a `user_settings` row.
let createUserSettingsTime: ElapsedTime | undefined = undefined;
if (!user.settings) {
user.settings = await UserSettings.getOrDefault(user.id);
createUserSettingsTime = taskSw.getElapsedAndReset();
}
// Generate merged_members
const merged_members = members.map((x) => [
{
...x,
// filter out @everyone role
roles: x.roles.filter((r) => r.id !== x.guild.id).map((x) => x.id),
// add back user, which we don't fetch from db
// TODO: For guild profiles, this may need to be changed.
// TODO: The only field required in the user prop is `id`,
// but our types are annoying so I didn't bother.
user: user.toPublicUser(),
guild: {
id: x.guild.id,
},
settings: undefined,
},
]);
const mergedMembersTime = taskSw.getElapsedAndReset();
// Populated with guilds 'unavailable' currently
// Just for bots
//TODO get this a better type
const pending_guilds: { id: string }[] = [];
// Generate guilds list ( make them unavailable if user is bot )
const guilds: GuildOrUnavailable[] = members.map((member) => {
member.guild.channels = (channelsByGuild.get(member.guild_id) ?? [])
/*
//TODO maybe implement this correctly, by causing create and delete events for users who can newly view and not view the channels, along with doing these checks correctly, as they don't currently take into account that the owner of the guild is always able to view channels, with potentially other issues
.filter((channel) => {
const perms = Permissions.finalPermission({
user: {
id: member.id,
roles: member.roles.map((x) => x.id),
},
guild: member.guild,
channel,
});
return perms.has("VIEW_CHANNEL");
})
*/
.map((channel) => {
channel.position = member.guild.channel_ordering.indexOf(channel.id);
return channel;
})
.sort((a, b) => a.position - b.position);
const threads: Channel[] = threadsByGuild.get(member.guild_id) ?? [];
const guildjson = {
...member.guild.toJSON(),
joined_at: member.joined_at,
threads: threads.map((thread) => {
const member = threadMemberMap.get(thread.id)?.toJSON();
return {
...thread.toJSON(),
member,
};
}),
guild_scheduled_events: [],
presences: [],
};
if (user.bot) {
pending_guilds.push(guildjson);
return { id: member.guild.id, unavailable: true };
}
return guildjson;
});
const generateGuildsListTime = taskSw.getElapsedAndReset();
// Generate user_guild_settings
const user_guild_settings_entries: ReadyUserGuildSettingsEntries[] = members.map((x) => ({
...DefaultUserGuildSettings,
...x.settings,
guild_id: x.guild_id,
channel_overrides: x.settings.channel_overrides ? Object.entries(x.settings.channel_overrides).map(([k, v]) => ({ ...v, channel_id: k })) : [],
}));
const generateUserGuildSettingsTime = taskSw.getElapsedAndReset();
// Populated with users from private channels, relationships.
// Uses a set to dedupe for us.
const users: Set<PublicUser> = new Set();
// Generate dm channels from recipients list. Append recipients to `users` list
const channels = recipients
.filter(({ channel }) => channel.isDm())
.map((r) => {
// TODO: fix the types of Recipient
// Their channels are only ever private (I think) and thus are always DM channels
const channel = r.channel as DMChannel;
// Remove ourself from the list of other users in dm channel
channel.recipients = channel.recipients.filter((recipient) => recipient.user.id !== this.user_id);
let channelUsers = channel.recipients?.map((recipient) => recipient.user.toPublicUser());
if (channelUsers && channelUsers.length > 0) channelUsers.forEach((user) => users.add(user));
// HACK: insert self into recipients for DMs with users that no longer exist
else if (channel.type === ChannelType.DM) {
const selfUser = user.toPublicUser();
users.add(selfUser);
channelUsers ??= [];
channelUsers.push(selfUser);
}
return {
id: channel.id,
flags: channel.flags,
last_message_id: channel.last_message_id,
type: channel.type,
recipients: channelUsers || [],
icon: channel.icon,
name: channel.name,
is_spam: false, // TODO
owner_id: channel.owner_id || undefined,
};
});
const generateDmChannelsTime = taskSw.getElapsedAndReset();
// From user relationships ( friends ), also append to `users` list
user.relationships.forEach((x) => users.add(x.to.toPublicUser()));
const appendRelationshipsTime = taskSw.getElapsedAndReset();
// Send SESSIONS_REPLACE and PRESENCE_UPDATE
const allSessions = sessions.concat(this.session!).map((x) => x.toPrivateGatewayDeviceInfo());
const findAndGenerateSessionReplaceTime = taskSw.getElapsedAndReset();
const [{ elapsed: emitSessionsReplaceTime }, { elapsed: emitPresenceUpdateTime }] = await Promise.all([
timePromise(() =>
emitEvent({
event: "SESSIONS_REPLACE",
user_id: this.user_id,
data: allSessions,
} as SessionsReplace),
),
timePromise(() =>
emitEvent({
event: "PRESENCE_UPDATE",
user_id: this.user_id,
data: {
user: user.toPublicUser(),
activities: this.session!.activities,
client_status: this.session!.client_status,
status: this.session!.getPublicStatus(),
},
} satisfies PresenceUpdateEvent),
),
]);
taskSw.reset();
// Build READY
// const remapReadStateIdsTime = taskSw.getElapsedAndReset();
const buildReadyTrace: TraceNode = {
micros: 0,
calls: [],
};
const { elapsed: remapReadStateIdsTime } = timeFunction(() =>
read_states.forEach((x) => {
x.id = x.channel_id;
}),
);
buildReadyTrace.calls!.push("remapReadStateIds", { micros: remapReadStateIdsTime.totalMicroseconds });
const { result: user_settings_proto, elapsed: serialiseUserSettingsProtoTime } = timeFunction(() =>
settingsProtos?.userSettings ? PreloadedUserSettings.toBase64(settingsProtos.userSettings) : undefined,
);
buildReadyTrace.calls!.push("serializeUserSettingsProto", { micros: serialiseUserSettingsProtoTime.totalMicroseconds });
const { result: user_settings_proto_json, elapsed: serialiseUserSettingsProtoJsonTime } = timeFunction(() =>
settingsProtos?.userSettings ? PreloadedUserSettings.toJson(settingsProtos.userSettings) : undefined,
);
buildReadyTrace.calls!.push("serializeUserSettingsProtoJson", { micros: serialiseUserSettingsProtoJsonTime.totalMicroseconds });
const { result: remappedGuilds, elapsed: remapGuildsTime } = timeFunction(() =>
this.capabilities!.has(Capabilities.FLAGS.CLIENT_STATE_V2) ? guilds.map((x) => new ReadyGuildDTO(x).toJSON()) : guilds,
);
buildReadyTrace.calls!.push(this.capabilities!.has(Capabilities.FLAGS.CLIENT_STATE_V2) ? "remapGuilds" : "[NoOP] remapGuilds", { micros: remapGuildsTime.totalMicroseconds });
const { result: remappedRelationships, elapsed: remapRelationshipsTime } = timeFunction(() => user.relationships.map((x) => x.toPublicRelationship()));
buildReadyTrace.calls!.push("remapRelationships", { micros: remapRelationshipsTime.totalMicroseconds });
buildReadyTrace.micros = buildReadyTrace.calls!.reduce((a, b) => {
if (typeof b === "string") return a;
return a + (b as { micros: number }).micros;
}, 0);
// const d: ReadyEventData = {
const { result: d, elapsed: buildReadyEventDataTime } = timeFunction<ReadyEventData>(
() =>
({
v: 9,
application: application ? { id: application.id, flags: application.flags } : undefined,
user: user.toPrivateUser(["rights"]),
user_settings: user.settings,
user_settings_proto,
user_settings_proto_json,
guilds: remappedGuilds,
relationships: remappedRelationships,
read_state: {
entries: read_states,
partial: false,
version: 0, // TODO
},
user_guild_settings: {
entries: user_guild_settings_entries,
partial: false,
version: 0, // TODO
},
private_channels: channels,
presences: [], // TODO: Send actual data
session_id: this.session_id,
country_code: this.session?.last_seen_location_info?.country_code ?? user.settings!.locale,
users: Array.from(users),
merged_members: merged_members,
sessions: allSessions,
resume_gateway_url: Config.get().gateway.endpointPublic!,
// lol hack whatever
required_action: Config.get().login.requireVerification && !user.verified ? "REQUIRE_VERIFIED_EMAIL" : undefined,
consents: {
personalization: {
consented: false, // TODO
},
},
experiments: [],
guild_join_requests: [],
connected_accounts: [],
guild_experiments: [],
geo_ordered_rtc_regions: [],
api_code_version: 1,
friend_suggestion_count: 0,
analytics_token: "",
tutorial: null,
session_type: "normal", // TODO
auth_session_id_hash: this.session!.getDiscordDeviceInfo().id_hash,
notification_settings: {
// ????
flags: 0,
},
game_relationships: [],
}) satisfies ReadyEventData,
);
if (this.capabilities.has(Capabilities.FLAGS.AUTH_TOKEN_REFRESH) && tokenData.tokenVersion != CurrentTokenFormatVersion) {
d.auth_token = this.accessToken = (await generateToken(this.user_id))!;
}
// const buildReadyEventDataTime = taskSw.getElapsedAndReset();
const _trace = [
gatewayShardName,
{
micros: totalSw.elapsed().totalMicroseconds,
calls: [],
},
] as TraceRoot;
const times = {
parseAndValidateTime,
checkTokenTime,
userQueryTime,
validateIntentsAndShardingTime,
createSessionTime,
userMetaQueryTime,
queryGuildsTime,
guildRelationQueryTime,
createUserSettingsTime,
mergedMembersTime,
generateGuildsListTime,
generateUserGuildSettingsTime,
generateDmChannelsTime,
appendRelationshipsTime,
findAndGenerateSessionReplaceTime,
emitSessionsReplaceTime,
emitPresenceUpdateTime,
remapReadStateIdsTime,
buildReadyEventDataTime,
threadMemberTime,
};
for (const [key, value] of Object.entries(times)) {
if (value) {
const val = { micros: value.totalMicroseconds } as { micros: number; calls: TraceNode[] };
_trace![1].calls.push(key, val);
if (key === "userMetaQueryTime") {
val.calls = [];
for (const [subkey, subvalue] of Object.entries({
sessionSaveTime,
sessionQueryTime,
relationshipQueryTime,
settingsQueryTime,
settingsProtosQueryTime,
applicationQueryTime,
read_statesQueryTime,
membersQueryTime,
recipientsQueryTime,
})) {
if (subvalue) {
val.calls.push(subkey, {
micros: subvalue.totalMicroseconds,
} as TraceNode);
}
}
} else if (key === "guildRelationQueryTime") {
val.calls = [];
for (const [subkey, subvalue] of Object.entries({
queryGuildChannelsTime: queryGuildChannelsTimeTotal,
queryGuildEmojisTime: queryGuildEmojisTimeTotal,
queryGuildRolesTime: queryGuildRolesTimeTotal,
queryGuildStickersTime: queryGuildStickersTimeTotal,
queryGuildVoiceStatesTime: queryGuildVoiceStatesTimeTotal,
threadMemberTime,
queryThreadsTime: queryThreadsTimeTotal,
})) {
if (subvalue) {
val.calls.push(subkey, {
micros: subvalue.totalMicroseconds,
} as TraceNode);
}
}
val.calls.push("mergeMemberGuildsTrace", mergeMemberGuildsTrace);
} else if (key === "buildReadyEventDataTime") {
val.calls = ["readyDataSerializationTime", buildReadyTrace];
val.micros += buildReadyTrace.micros;
}
}
}
_trace![1].calls.push("buildTraceTime", {
micros: taskSw.elapsed().totalMicroseconds,
});
d._trace = [JSON.stringify(_trace)];
// Send READY
await Send(this, {
op: OPCODES.Dispatch,
t: EVENTEnum.Ready,
s: this.sequence++,
d,
});
// If we're a bot user, send GUILD_CREATE for each unavailable guild
// TODO: check if bot has permission to view some of these based on intents (i.e. GUILD_MEMBERS, GUILD_PRESENCES, GUILD_VOICE_STATES)
await Promise.all(
pending_guilds.map((x) => {
//Even with the GUILD_MEMBERS intent, the bot always receives just itself as the guild members
const botMemberObject = members.find((member) => member.guild_id === x.id);
return Send(this, {
op: OPCODES.Dispatch,
t: EVENTEnum.GuildCreate,
s: this.sequence++,
d: {
...x,
members: botMemberObject
? [
{
...botMemberObject.toPublicMember(),
user: user.toPublicUser(),
},
]
: [],
},
})?.catch((e) => console.error(`[Gateway/${this.user_id}] error when sending bot guilds`, e));
}),
);
const readySupplementalGuilds = (guilds.filter((guild) => !guild.unavailable) as Guild[]).map((guild) => ({
voice_states: guild.voice_states.map((state) => VoiceState.prototype.toPublicVoiceState.apply(state)),
id: guild.id,
embedded_activities: [],
}));
// TODO: ready supplemental
await Send(this, {
op: OPCodes.DISPATCH,
t: EVENTEnum.ReadySupplemental,
s: this.sequence++,
d: {
merged_presences: {
guilds: [],
friends: [],
},
// these merged members seem to be all users currently in vc in your guilds
merged_members: [],
lazy_private_channels: [],
guilds: readySupplementalGuilds, // { voice_states: [], id: string, embedded_activities: [] }
// embedded_activities are users currently in an activity?
disclose: [], // Config.get().general.uniqueUsernames ? ["pomelo"] : []
},
});
//TODO send GUILD_MEMBER_LIST_UPDATE
//TODO send VOICE_STATE_UPDATE to let the client know if another device is already connected to a voice channel
await setupListener.call(this);
console.log(
`[Gateway/${this.user_id}] IDENTIFY ${this.user_id} in ${totalSw.elapsed().totalMilliseconds}ms`,
process.env.LOG_GATEWAY_TRACES ? JSON.stringify(d._trace, null, 2) : "",
);
// actually send presence updates - not using distributePresenceUpdate because we already have all of the data at hand
if (presenceUpdateEventData) {
for (const rel of d.relationships ?? []) {
await emitEvent({
...presenceUpdateEventData,
user_id: rel.user.id,
});
}
for (const guild of d.guilds) {
await emitEvent({
...presenceUpdateEventData,
guild_id: guild.id,
});
}
for (const dmChannel of d.private_channels) {
// TODO: check if other side has the channel still open
for (const recpt of dmChannel.recipients) {
if (recpt.id != this.user_id)
await emitEvent({
...presenceUpdateEventData,
user_id: recpt.id,
});
}
}
}
}
|