-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmatrix-service.ts
1431 lines (1286 loc) · 41 KB
/
matrix-service.ts
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
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import type Owner from '@ember/owner';
import type RouterService from '@ember/routing/router-service';
import { debounce } from '@ember/runloop';
import Service, { service } from '@ember/service';
import { cached, tracked } from '@glimmer/tracking';
import { task } from 'ember-concurrency';
import window from 'ember-window-mock';
import { cloneDeep } from 'lodash';
import {
type LoginResponse,
type MatrixEvent,
type RoomMember,
type EmittedEvents,
type ISendEventResponse,
} from 'matrix-js-sdk';
import stringify from 'safe-stable-stringify';
import { md5 } from 'super-fast-md5';
import { TrackedMap } from 'tracked-built-ins';
import { v4 as uuidv4 } from 'uuid';
import {
type LooseSingleCardDocument,
markdownToHtml,
splitStringIntoChunks,
baseRealm,
LooseCardResource,
ResolvedCodeRef,
aiBotUsername,
} from '@cardstack/runtime-common';
import {
basicMappings,
generateJsonSchemaForCardType,
getSearchTool,
getPatchTool,
} from '@cardstack/runtime-common/helpers/ai';
import { getMatrixUsername } from '@cardstack/runtime-common/matrix-client';
import {
APP_BOXEL_CARD_FORMAT,
APP_BOXEL_CARDFRAGMENT_MSGTYPE,
APP_BOXEL_COMMAND_MSGTYPE,
APP_BOXEL_COMMAND_RESULT_EVENT_TYPE,
APP_BOXEL_COMMAND_RESULT_WITH_NO_OUTPUT_MSGTYPE,
APP_BOXEL_COMMAND_RESULT_WITH_OUTPUT_MSGTYPE,
APP_BOXEL_MESSAGE_MSGTYPE,
APP_BOXEL_REALM_SERVER_EVENT_MSGTYPE,
APP_BOXEL_REALMS_EVENT_TYPE,
APP_BOXEL_ACTIVE_LLM,
DEFAULT_LLM_LIST,
} from '@cardstack/runtime-common/matrix-constants';
import {
type Submode,
Submodes,
} from '@cardstack/host/components/submode-switcher';
import ENV from '@cardstack/host/config/environment';
import Room, { TempEvent } from '@cardstack/host/lib/matrix-classes/room';
import { getRandomBackgroundURL, iconURLFor } from '@cardstack/host/lib/utils';
import { getMatrixProfile } from '@cardstack/host/resources/matrix-profile';
import type { Base64ImageField as Base64ImageFieldType } from 'https://cardstack.com/base/base64-image';
import { BaseDef, type CardDef } from 'https://cardstack.com/base/card-api';
import type * as CardAPI from 'https://cardstack.com/base/card-api';
import type * as FileAPI from 'https://cardstack.com/base/file-api';
import { type FileDef } from 'https://cardstack.com/base/file-api';
import type {
CardMessageContent,
CardFragmentContent,
MatrixEvent as DiscreteMatrixEvent,
CommandResultWithNoOutputContent,
CommandResultWithOutputContent,
} from 'https://cardstack.com/base/matrix-event';
import type { Tool } from 'https://cardstack.com/base/matrix-event';
import { SkillCard } from 'https://cardstack.com/base/skill-card';
import AddSkillsToRoomCommand from '../commands/add-skills-to-room';
import { importResource } from '../resources/import';
import { RoomResource, getRoom } from '../resources/room';
import { CurrentRoomIdPersistenceKey } from '../utils/local-storage-keys';
import { type SerializedState as OperatorModeSerializedState } from './operator-mode-state-service';
import type CardService from './card-service';
import type CommandService from './command-service';
import type LoaderService from './loader-service';
import type MatrixSDKLoader from './matrix-sdk-loader';
import type { ExtendedClient, ExtendedMatrixSDK } from './matrix-sdk-loader';
import type NetworkService from './network';
import type RealmService from './realm';
import type RealmServerService from './realm-server';
import type ResetService from './reset';
import type * as MatrixSDK from 'matrix-js-sdk';
const { matrixURL } = ENV;
const MAX_CARD_SIZE_KB = 60;
const STATE_EVENTS_OF_INTEREST = ['m.room.create', 'm.room.name'];
export type OperatorModeContext = {
submode: Submode;
openCardIds: string[];
};
export default class MatrixService extends Service {
@service declare private loaderService: LoaderService;
@service declare private cardService: CardService;
@service declare private commandService: CommandService;
@service declare private realm: RealmService;
@service declare private matrixSdkLoader: MatrixSDKLoader;
@service declare private realmServer: RealmServerService;
@service declare private router: RouterService;
@service declare private reset: ResetService;
@service declare private network: NetworkService;
@tracked private _client: ExtendedClient | undefined;
@tracked private _isInitializingNewUser = false;
@tracked private _isNewUser = false;
@tracked private postLoginCompleted = false;
@tracked private _currentRoomId: string | undefined;
profile = getMatrixProfile(this, () => this.userId);
private roomDataMap: TrackedMap<string, Room> = new TrackedMap();
roomResourcesCache: TrackedMap<string, RoomResource> = new TrackedMap();
messagesToSend: TrackedMap<string, string | undefined> = new TrackedMap();
cardsToSend: TrackedMap<string, CardDef[] | undefined> = new TrackedMap();
filesToSend: TrackedMap<string, FileDef[] | undefined> = new TrackedMap();
failedCommandState: TrackedMap<string, Error> = new TrackedMap();
flushTimeline: Promise<void> | undefined;
flushMembership: Promise<void> | undefined;
flushRoomState: Promise<void> | undefined;
private roomMembershipQueue: { event: MatrixEvent; member: RoomMember }[] =
[];
private timelineQueue: { event: MatrixEvent; oldEventId?: string }[] = [];
private roomStateQueue: MatrixSDK.RoomState[] = [];
#ready: Promise<void>;
#matrixSDK: ExtendedMatrixSDK | undefined;
#eventBindings: [EmittedEvents, (...arg: any[]) => void][] | undefined;
currentUserEventReadReceipts: TrackedMap<string, { readAt: Date }> =
new TrackedMap();
private cardHashes: Map<string, string> = new Map(); // hashes <> event id
private skillCardHashes: Map<string, string> = new Map(); // hashes <> event id
constructor(owner: Owner) {
super(owner);
this.#ready = this.loadState.perform();
}
private addEventReadReceipt(eventId: string, receipt: { readAt: Date }) {
this.currentUserEventReadReceipts.set(eventId, receipt);
}
get currentRoomId(): string | undefined {
return this._currentRoomId;
}
set currentRoomId(value: string | undefined) {
this._currentRoomId = value;
if (value) {
window.localStorage.setItem(CurrentRoomIdPersistenceKey, value);
} else {
window.localStorage.removeItem(CurrentRoomIdPersistenceKey);
}
}
get ready() {
return this.#ready;
}
private cardAPIModule = importResource(
this,
() => 'https://cardstack.com/base/card-api',
);
private fileAPIModule = importResource(
this,
() => 'https://cardstack.com/base/file-api',
);
private loadState = task(async () => {
await this.loadSDK();
});
private async loadSDK() {
await this.cardAPIModule.loaded;
await this.fileAPIModule.loaded;
// The matrix SDK is VERY big so we only load it when we need it
this.#matrixSDK = await this.matrixSdkLoader.load();
this._client = this.matrixSDK.createClient({
baseUrl: matrixURL,
});
// building the event bindings like this so that we can consistently bind
// and unbind these events programmatically--this way if we add a new event
// we won't forget to unbind it.
this.#eventBindings = [
[this.matrixSDK.RoomMemberEvent.Membership, this.onMembership],
[this.matrixSDK.RoomEvent.Timeline, this.onTimeline],
[this.matrixSDK.RoomEvent.LocalEchoUpdated, this.onUpdateEventStatus],
[this.matrixSDK.RoomEvent.Receipt, this.onReceipt],
[this.matrixSDK.RoomStateEvent.Update, this.onRoomStateUpdate],
[
this.matrixSDK.ClientEvent.AccountData,
async (e) => {
if (e.event.type == APP_BOXEL_REALMS_EVENT_TYPE) {
await this.realmServer.setAvailableRealmURLs(
e.event.content.realms,
);
await this.loginToRealms();
}
},
],
];
}
get isLoggedIn() {
return this.client.isLoggedIn() && this.postLoginCompleted;
}
private get client() {
if (!this._client) {
throw new Error(`cannot use matrix client before matrix SDK has loaded`);
}
return this._client;
}
get userId() {
return this.client.getUserId();
}
get aiBotUserId() {
let server = this.userId!.split(':')[1];
return `@${aiBotUsername}:${server}`;
}
get userName() {
return this.userId ? getMatrixUsername(this.userId) : null;
}
private get cardAPI() {
if (this.cardAPIModule.error) {
throw new Error(
`Error loading Card API: ${JSON.stringify(this.cardAPIModule.error)}`,
);
}
if (!this.cardAPIModule.module) {
throw new Error(
`bug: Card API has not loaded yet--make sure to await this.loaded before using the api`,
);
}
return this.cardAPIModule.module as typeof CardAPI;
}
get fileAPI() {
if (this.fileAPIModule.error) {
throw new Error(
`Error loading File API: ${JSON.stringify(this.fileAPIModule.error)}`,
);
}
if (!this.fileAPIModule.module) {
throw new Error(
`bug: File API has not loaded yet--make sure to await this.loaded before using the api`,
);
}
return this.fileAPIModule.module as typeof FileAPI;
}
private get matrixSDK() {
if (!this.#matrixSDK) {
throw new Error(`cannot use matrix SDK before it has loaded`);
}
return this.#matrixSDK;
}
get privateChatPreset() {
return this.matrixSDK.Preset.PrivateChat;
}
get aiBotPowerLevel() {
return 50; // this is required to set the room name
}
get flushAll() {
return Promise.all([
this.flushMembership ?? Promise.resolve(),
this.flushTimeline ?? Promise.resolve(),
this.flushRoomState ?? Promise.resolve(),
]);
}
async logout() {
try {
await this.flushAll;
clearAuth();
this.postLoginCompleted = false;
this.reset.resetAll();
this.unbindEventListeners();
await this.client.logout(true);
// when user logs out we transition them back to an empty stack with the
// workspace chooser open. this way we don't inadvertently leak private
// card id's in the URL
this.router.transitionTo('index', {
queryParams: {
workspaceChooserOpened: 'true',
operatorModeState: stringify({
stacks: [],
submode: Submodes.Interact,
} as OperatorModeSerializedState),
},
});
} catch (e) {
console.log('Error logging out of Matrix', e);
} finally {
this.resetState();
}
}
get isInitializingNewUser() {
return this._isInitializingNewUser;
}
get isNewUser() {
return this._isNewUser;
}
async initializeNewUser(
auth: LoginResponse,
displayName: string,
registrationToken?: string,
) {
displayName = displayName.trim();
this._isInitializingNewUser = true;
this.start({ auth });
this.setDisplayName(displayName);
let userId = this.client.getUserId();
if (!userId) {
throw new Error(
`bug: there is no userId associated with the matrix client`,
);
}
await this.realmServer.createUser(userId, registrationToken);
await Promise.all([
this.createPersonalRealmForUser({
endpoint: 'personal',
name: `${displayName}'s Workspace`,
iconURL: iconURLFor(displayName),
backgroundURL: getRandomBackgroundURL(),
}),
this.realmServer.fetchCatalogRealms(),
]);
this._isNewUser = true;
this._isInitializingNewUser = false;
}
public async createPersonalRealmForUser({
endpoint,
name,
iconURL,
backgroundURL,
copyFromSeedRealm,
}: {
endpoint: string;
name: string;
iconURL?: string;
backgroundURL?: string;
copyFromSeedRealm?: boolean;
}) {
let personalRealmURL = await this.realmServer.createRealm({
endpoint,
name,
iconURL,
backgroundURL,
copyFromSeedRealm,
});
let { realms = [] } =
(await this.client.getAccountDataFromServer<{ realms: string[] }>(
APP_BOXEL_REALMS_EVENT_TYPE,
)) ?? {};
realms.push(personalRealmURL.href);
await this.client.setAccountData(APP_BOXEL_REALMS_EVENT_TYPE, { realms });
await this.realmServer.setAvailableRealmURLs(realms);
}
async setDisplayName(displayName: string) {
await this.client.setDisplayName(displayName);
}
async reloadProfile() {
await this.profile.load.perform();
}
async start(
opts: {
auth?: MatrixSDK.LoginResponse;
refreshRoutes?: true;
} = {},
) {
let { auth, refreshRoutes } = opts;
if (!auth) {
auth = getAuth();
if (!auth) {
return;
}
}
let {
access_token: accessToken,
user_id: userId,
device_id: deviceId,
} = auth;
if (!accessToken) {
throw new Error(
`Cannot create matrix client from auth that has no access token: ${JSON.stringify(
auth,
null,
2,
)}`,
);
}
if (!userId) {
throw new Error(
`Cannot create matrix client from auth that has no user id: ${JSON.stringify(
auth,
null,
2,
)}`,
);
}
if (!deviceId) {
throw new Error(
`Cannot create matrix client from auth that has no device id: ${JSON.stringify(
auth,
null,
2,
)}`,
);
}
this._client = this.matrixSDK.createClient({
baseUrl: matrixURL,
accessToken,
userId,
deviceId,
});
if (this.client.isLoggedIn()) {
this.realmServer.setClient(this.client);
saveAuth(auth);
this.bindEventListeners();
try {
await this._client.startClient();
let accountDataContent = await this._client.getAccountDataFromServer<{
realms: string[];
}>(APP_BOXEL_REALMS_EVENT_TYPE);
await this.realmServer.setAvailableRealmURLs(
accountDataContent?.realms ?? [],
);
await Promise.all([
this.loginToRealms(),
this.realmServer.fetchCatalogRealms(),
]);
this.postLoginCompleted = true;
} catch (e) {
console.log('Error starting Matrix client', e);
await this.logout();
}
if (refreshRoutes) {
await this.router.refresh();
}
}
}
private async loginToRealms() {
// This is where we would actually load user-specific choices out of the
// user's profile based on this.client.getUserId();
let activeRealms = this.realmServer.availableRealmURLs;
await Promise.all(
activeRealms.map(async (realmURL) => {
try {
// Our authorization-middleware can login automatically after seeing a
// 401, but this preemptive login makes it possible to see
// canWrite===true on realms that are publicly readable.
await this.realm.login(realmURL);
} catch (err) {
console.warn(
`Unable to establish session with realm ${realmURL}`,
err,
);
}
}),
);
}
async createRealmSession(realmURL: URL) {
return this.client.createRealmSession(realmURL);
}
async sendEvent(
roomId: string,
eventType: string,
content:
| CardMessageContent
| CardFragmentContent
| CommandResultWithNoOutputContent
| CommandResultWithOutputContent,
) {
let roomData = await this.ensureRoomData(roomId);
return roomData.mutex.dispatch(async () => {
if ('data' in content) {
const encodedContent = {
...content,
data: JSON.stringify(content.data),
};
return await this.client.sendEvent(roomId, eventType, encodedContent);
} else {
return await this.client.sendEvent(roomId, eventType, content);
}
});
}
async sendCommandResultEvent(
roomId: string,
invokedToolFromEventId: string,
resultCard?: CardDef,
) {
let resultCardEventId: string | undefined;
if (resultCard) {
[resultCardEventId] = await this.addCardsToRoom([resultCard], roomId);
}
let content:
| CommandResultWithNoOutputContent
| CommandResultWithOutputContent;
if (resultCardEventId === undefined) {
content = {
msgtype: APP_BOXEL_COMMAND_RESULT_WITH_NO_OUTPUT_MSGTYPE,
'm.relates_to': {
event_id: invokedToolFromEventId,
key: 'applied',
rel_type: 'm.annotation',
},
};
} else {
content = {
msgtype: APP_BOXEL_COMMAND_RESULT_WITH_OUTPUT_MSGTYPE,
'm.relates_to': {
event_id: invokedToolFromEventId,
key: 'applied',
rel_type: 'm.annotation',
},
data: {
cardEventId: resultCardEventId,
},
};
}
try {
return await this.sendEvent(
roomId,
APP_BOXEL_COMMAND_RESULT_EVENT_TYPE,
content,
);
} catch (e) {
throw new Error(
`Error sending command result event: ${
'message' in (e as Error) ? (e as Error).message : e
}`,
);
}
}
async addSkillCardsToRoomHistory(
skills: SkillCard[],
roomId: string,
opts?: CardAPI.SerializeOpts,
): Promise<string[]> {
return this.addCardsToRoom(skills, roomId, this.skillCardHashes, opts);
}
async addCardsToRoom(
cards: CardDef[],
roomId: string,
cardHashes: Map<string, string> = this.cardHashes,
opts: CardAPI.SerializeOpts = { useAbsoluteURL: true },
): Promise<string[]> {
if (!cards.length) {
return [];
}
let serializedCards = await Promise.all(
cards.map(async (card) => {
let { Base64ImageField } = await this.loaderService.loader.import<{
Base64ImageField: typeof Base64ImageFieldType;
}>(`${baseRealm.url}base64-image`);
return await this.cardService.serializeCard(card, {
omitFields: [Base64ImageField],
...opts,
});
}),
);
let eventIds: string[] = [];
if (serializedCards.length) {
for (let card of serializedCards) {
let eventId = cardHashes.get(this.generateCardHashKey(roomId, card));
if (eventId === undefined) {
let responses = await this.sendCardFragments(roomId, card);
eventId = responses[0].event_id; // we only care about the first fragment
cardHashes.set(this.generateCardHashKey(roomId, card), eventId);
}
eventIds.push(eventId);
}
}
return eventIds;
}
async uploadFiles(files: FileDef[]) {
let uploadedFiles = await Promise.all(
files.map(async (file) => {
if (!file.sourceUrl) {
throw new Error('File needs a realm server source URL to upload');
}
let response = await this.network.authedFetch(file.sourceUrl, {
headers: {
Accept: 'application/vnd.card+source',
},
});
let blob = await response.blob();
let contentType = response.headers.get('content-type');
if (!contentType) {
throw new Error(`File has no content type: ${file.sourceUrl}`);
}
let uploadResponse = await this.client.uploadContent(blob, {
type: contentType,
});
file.url = this.client.mxcUrlToHttp(uploadResponse.content_uri);
file.contentType = contentType;
return file;
}),
);
return uploadedFiles;
}
async sendMessage(
roomId: string,
body: string | undefined,
attachedCards: CardDef[] = [],
attachedFiles: FileDef[] = [],
clientGeneratedId = uuidv4(),
context?: OperatorModeContext,
): Promise<void> {
let html = markdownToHtml(body);
let tools: Tool[] = [getSearchTool()];
let attachedOpenCards: CardDef[] = [];
let submode = context?.submode;
if (submode === 'interact') {
let mappings = await basicMappings(this.loaderService.loader);
// Open cards are attached automatically
// If they are not attached, the user is not allowing us to
// modify them
attachedOpenCards = attachedCards.filter((c) =>
(context?.openCardIds ?? []).includes(c.id),
);
// Generate tool calls for patching currently open cards permitted for modification
for (let attachedOpenCard of attachedOpenCards) {
let patchSpec = generateJsonSchemaForCardType(
attachedOpenCard.constructor as typeof CardDef,
this.cardAPI,
mappings,
);
if (this.realm.canWrite(attachedOpenCard.id)) {
tools.push(getPatchTool(attachedOpenCard.id, patchSpec));
}
}
}
let attachedCardsEventIds = await this.addCardsToRoom(
attachedCards,
roomId,
);
await this.sendEvent(roomId, 'm.room.message', {
msgtype: APP_BOXEL_MESSAGE_MSGTYPE,
body: body || '',
format: 'org.matrix.custom.html',
formatted_body: html,
clientGeneratedId,
data: {
attachedFiles: attachedFiles.map((file: FileDef) => file.serialize()),
attachedCardsEventIds,
context: {
openCardIds: attachedOpenCards.map((c) => c.id),
tools,
submode,
},
},
} as CardMessageContent);
}
private generateCardHashKey(roomId: string, card: LooseSingleCardDocument) {
return md5(roomId + JSON.stringify(card));
}
private async sendCardFragments(
roomId: string,
card: LooseSingleCardDocument,
): Promise<ISendEventResponse[]> {
let fragments = splitStringIntoChunks(
JSON.stringify(card),
MAX_CARD_SIZE_KB,
);
let responses: ISendEventResponse[] = [];
for (let index = fragments.length - 1; index >= 0; index--) {
let cardFragment = fragments[index];
let response = await this.sendEvent(roomId, 'm.room.message', {
msgtype: APP_BOXEL_CARDFRAGMENT_MSGTYPE,
format: APP_BOXEL_CARD_FORMAT,
body: `card fragment ${index + 1} of ${fragments.length}`,
formatted_body: `card fragment ${index + 1} of ${fragments.length}`,
data: {
...(index < fragments.length - 1
? { nextFragment: responses[0].event_id }
: {}),
cardFragment,
index,
totalParts: fragments.length,
},
} as CardFragmentContent);
responses.unshift(response);
}
return responses;
}
getLastActiveTimestamp(roomId: string, defaultTimestamp: number) {
let matrixRoom = this.client.getRoom(roomId);
let lastMatrixEvent = matrixRoom?.getLastActiveTimestamp();
return lastMatrixEvent ?? defaultTimestamp;
}
async requestRegisterEmailToken(
email: string,
clientSecret: string,
sendAttempt: number,
) {
return await this.client.requestEmailToken(
'registration',
email,
clientSecret,
sendAttempt,
);
}
async requestChangeEmailToken(
email: string,
clientSecret: string,
sendAttempt: number,
) {
return await this.client.requestEmailToken(
'threepid',
email,
clientSecret,
sendAttempt,
);
}
async login(usernameOrEmail: string, password: string) {
try {
const cred = await this.client.loginWithPassword(
usernameOrEmail,
password,
);
return cred;
} catch (error) {
try {
const cred = await this.client.loginWithEmail(
usernameOrEmail,
password,
);
return cred;
} catch (error2) {
throw error;
}
}
}
getRoomData(roomId: string) {
return this.roomDataMap.get(roomId);
}
private setRoomData(roomId: string, roomData: Room) {
this.roomDataMap.set(roomId, roomData);
if (!this.roomResourcesCache.has(roomId)) {
this.roomResourcesCache.set(
roomId,
getRoom(
this,
() => roomId,
() => this.getRoomData(roomId)?.events,
),
);
}
}
async loadDefaultSkills(submode: Submode) {
let interactModeDefaultSkills = [`${baseRealm.url}SkillCard/card-editing`];
let codeModeDefaultSkills = [
`${baseRealm.url}SkillCard/code-module-editing`,
];
let defaultSkills;
if (submode === 'code') {
defaultSkills = codeModeDefaultSkills;
} else {
defaultSkills = interactModeDefaultSkills;
}
return await Promise.all(
defaultSkills.map(async (skillCardURL) => {
return await this.cardService.getCard<SkillCard>(skillCardURL);
}),
);
}
@cached
get roomResources() {
let resources: TrackedMap<string, RoomResource> = new TrackedMap();
for (let roomId of this.roomDataMap.keys()) {
if (!this.roomResourcesCache.get(roomId)) {
continue;
}
resources.set(roomId, this.roomResourcesCache.get(roomId)!);
}
return resources;
}
private resetState() {
this.roomDataMap = new TrackedMap();
this.roomMembershipQueue = [];
this.roomStateQueue = [];
this.roomResourcesCache.clear();
this.timelineQueue = [];
this.flushMembership = undefined;
this.flushTimeline = undefined;
this.flushRoomState = undefined;
this.unbindEventListeners();
this._client = this.matrixSDK.createClient({ baseUrl: matrixURL });
this.cardHashes = new Map();
}
private bindEventListeners() {
if (!this.#eventBindings) {
throw new Error(
`cannot bind to matrix events before the matrix SDK has loaded`,
);
}
for (let [event, handler] of this.#eventBindings) {
this.client.on(event, handler);
}
}
private unbindEventListeners() {
if (!this.#eventBindings) {
throw new Error(
`cannot unbind to matrix events before the matrix SDK has loaded`,
);
}
for (let [event, handler] of this.#eventBindings) {
this.client.off(event, handler);
}
}
async createRoom(opts: MatrixSDK.ICreateRoomOpts) {
return this.client.createRoom(opts);
}
async createCard<T extends typeof BaseDef>(
codeRef: ResolvedCodeRef,
attr: Record<string, any>,
) {
let data: LooseCardResource = {
meta: {
adoptsFrom: codeRef,
},
attributes: {
...attr,
},
};
let card = await this.cardAPI.createFromSerialized<T>(
data,
{ data },
undefined,
);
return card;
}
async getProfileInfo(userId: string) {
return await this.client.getProfileInfo(userId);
}
async getThreePids() {
return await this.client.getThreePids();
}
async addThreePidOnly(data: MatrixSDK.IAddThreePidOnlyBody) {
return await this.client.addThreePidOnly(data);
}
async deleteThreePid(medium: string, address: string) {
return await this.client.deleteThreePid(medium, address);
}
async setPowerLevel(roomId: string, userId: string, powerLevel: number) {
let roomData = await this.ensureRoomData(roomId);
await roomData.mutex.dispatch(async () => {
return this.client.setPowerLevel(roomId, userId, powerLevel);
});
}
async getStateEvent(
roomId: string,
eventType: string,
stateKey: string = '',
) {
return this.client.getStateEvent(roomId, eventType, stateKey);
}
async getStateEventSafe(
roomId: string,
eventType: string,
stateKey: string = '',
) {
try {
return await this.client.getStateEvent(roomId, eventType, stateKey);
} catch (e: unknown) {
if (e instanceof Error && 'errcode' in e && e.errcode === 'M_NOT_FOUND') {
// this is fine, it just means the state event doesn't exist yet
return undefined;
} else {
throw e;
}
}
}
async sendStateEvent(
roomId: string,
eventType: string,
content: Record<string, any>,
stateKey: string = '',
) {
let roomData = await this.ensureRoomData(roomId);
await roomData.mutex.dispatch(async () => {
return this.client.sendStateEvent(roomId, eventType, content, stateKey);
});
}
async updateStateEvent(
roomId: string,
eventType: string,
stateKey: string = '',
transformContent: (
content: Record<string, any>,
) => Promise<Record<string, any>>,
) {
let roomData = await this.ensureRoomData(roomId);
await roomData.mutex.dispatch(async () => {
let currentContent = await this.getStateEventSafe(
roomId,
eventType,
stateKey,
);
let newContent = await transformContent(currentContent ?? {});
return this.client.sendStateEvent(
roomId,
eventType,
newContent,
stateKey,
);
});
}
async leave(roomId: string) {
let roomData = await this.ensureRoomData(roomId);
await roomData.mutex.dispatch(async () => {
return this.client.leave(roomId);
});
}