Skip to content

Commit 17e3a7c

Browse files
committed
set m.direct
1 parent 843d928 commit 17e3a7c

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

packages/realm-server/tests/auth-client-test.ts

+6
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,12 @@ module(basename(__filename), function () {
3737
async hashMessageWithSecret(_message: string): Promise<string> {
3838
throw new Error('Method not implemented.');
3939
},
40+
async getAccountData() {
41+
return Promise.resolve({});
42+
},
43+
async setAccountData() {
44+
return Promise.resolve();
45+
},
4046
} as RealmAuthMatrixClientInterface;
4147

4248
let virtualNetwork = new VirtualNetwork();

packages/runtime-common/realm-auth-client.ts

+10
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ export interface RealmAuthMatrixClientInterface {
1414
joinRoom(room: string): Promise<any>;
1515
sendEvent(room: string, type: string, content: any): Promise<any>;
1616
hashMessageWithSecret(message: string): Promise<string>;
17+
getAccountData(type: string): Promise<any>;
18+
setAccountData(type: string, data: any): Promise<any>;
1719
}
1820

1921
interface Options {
@@ -101,6 +103,14 @@ export class RealmAuthClient {
101103
await this.matrixClient.joinRoom(room);
102104
}
103105

106+
let directRooms = await this.matrixClient.getAccountData('m.direct');
107+
if (!directRooms?.includes(room)) {
108+
let userId = this.matrixClient.getUserId() as string;
109+
await this.matrixClient.setAccountData('m.direct', {
110+
[userId]: [...(directRooms?.[userId] ?? []), room],
111+
});
112+
}
113+
104114
await this.matrixClient.sendEvent(room, 'm.room.message', {
105115
body: `auth-response: ${challenge}`,
106116
msgtype: 'm.text',

0 commit comments

Comments
 (0)