Skip to content

Commit 0f70476

Browse files
committed
Add aiBotUserId to matrix service
1 parent dc10876 commit 0f70476

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

packages/host/app/commands/create-ai-assistant-room.ts

+2-10
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ import { service } from '@ember/service';
22

33
import format from 'date-fns/format';
44

5-
import { aiBotUsername } from '@cardstack/runtime-common';
6-
75
import {
86
APP_BOXEL_ACTIVE_LLM,
97
DEFAULT_LLM,
@@ -31,14 +29,8 @@ export default class CreateAIAssistantRoomCommand extends HostBaseCommand<
3129
input: BaseCommandModule.CreateAIAssistantRoomInput,
3230
): Promise<BaseCommandModule.CreateAIAssistantRoomResult> {
3331
let { matrixService } = this;
34-
let { userId } = matrixService;
35-
if (!userId) {
36-
throw new Error(
37-
`bug: there is no userId associated with the matrix client`,
38-
);
39-
}
40-
let server = userId!.split(':')[1];
41-
let aiBotFullId = `@${aiBotUsername}:${server}`;
32+
let userId = matrixService.userId;
33+
let aiBotFullId = matrixService.aiBotUserId;
4234
let { room_id: roomId } = await matrixService.createRoom({
4335
preset: matrixService.privateChatPreset,
4436
invite: [aiBotFullId],

packages/host/app/services/matrix-service.ts

+7
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ import {
2626
baseRealm,
2727
LooseCardResource,
2828
ResolvedCodeRef,
29+
aiBotUsername,
2930
} from '@cardstack/runtime-common';
31+
3032
import {
3133
basicMappings,
3234
generateJsonSchemaForCardType,
@@ -233,6 +235,11 @@ export default class MatrixService extends Service {
233235
return this.client.getUserId();
234236
}
235237

238+
get aiBotUserId() {
239+
let server = this.userId!.split(':')[1];
240+
return `@${aiBotUsername}:${server}`;
241+
}
242+
236243
get userName() {
237244
return this.userId ? getMatrixUsername(this.userId) : null;
238245
}

0 commit comments

Comments
 (0)