Skip to content

Commit c46c43b

Browse files
committed
Migrate realms config from old account data key to new one
1 parent 55db1a6 commit c46c43b

File tree

6 files changed

+90
-4
lines changed

6 files changed

+90
-4
lines changed

packages/host/app/services/matrix-sdk-loader.ts

+1
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ export type ExtendedClient = Pick<
9999
| 'setRoomName'
100100
| 'startClient'
101101
| 'getAccountDataFromServer'
102+
| 'setAccountData'
102103
> & {
103104
requestEmailToken(
104105
type: 'registration' | 'threepid',

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

+29
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ import {
4545
APP_BOXEL_MESSAGE_MSGTYPE,
4646
APP_BOXEL_REALM_SERVER_EVENT_MSGTYPE,
4747
APP_BOXEL_REALMS_EVENT_TYPE,
48+
LEGACY_APP_BOXEL_REALMS_EVENT_TYPE,
4849
} from '@cardstack/runtime-common/matrix-constants';
4950

5051
import {
@@ -411,6 +412,34 @@ export default class MatrixService extends Service {
411412
let accountDataContent = await this._client.getAccountDataFromServer<{
412413
realms: string[];
413414
}>(APP_BOXEL_REALMS_EVENT_TYPE);
415+
// TODO: remove this once we've migrated all users
416+
// TEMPORARY MIGRATION CODE
417+
if (!accountDataContent?.realms?.length) {
418+
console.log(
419+
'You currently have no realms set, checking your old realms',
420+
);
421+
try {
422+
accountDataContent = await this._client.getAccountDataFromServer<{
423+
realms: string[];
424+
}>(LEGACY_APP_BOXEL_REALMS_EVENT_TYPE);
425+
} catch (e) {
426+
// throws if nothing at this key
427+
}
428+
if (accountDataContent?.realms) {
429+
console.log('Migrating your old realms to the new format');
430+
await this._client.setAccountData(APP_BOXEL_REALMS_EVENT_TYPE, {
431+
realms: accountDataContent.realms,
432+
});
433+
console.log('Removing your old realms data');
434+
await this._client.setAccountData(
435+
LEGACY_APP_BOXEL_REALMS_EVENT_TYPE,
436+
{},
437+
);
438+
} else {
439+
console.log('No old realms found');
440+
}
441+
}
442+
// END OF TEMPORARY MIGRATION CODE
414443
await this.realmServer.setAvailableRealmURLs(
415444
accountDataContent?.realms ?? [],
416445
);

packages/host/tests/helpers/mock-matrix/_client.ts

+12-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import { baseRealm, unixTime } from '@cardstack/runtime-common';
77
import {
88
APP_BOXEL_ROOM_SKILLS_EVENT_TYPE,
99
APP_BOXEL_REALMS_EVENT_TYPE,
10+
LEGACY_APP_BOXEL_REALMS_EVENT_TYPE,
1011
} from '@cardstack/runtime-common/matrix-constants';
1112

1213
import type { ExtendedClient } from '@cardstack/host/services/matrix-sdk-loader';
@@ -114,8 +115,17 @@ export class MockClient implements ExtendedClient {
114115
throw new Error('Method not implemented.');
115116
}
116117

117-
setAccountData<T>(_type: string, _data: T): Promise<{}> {
118-
throw new Error('Method not implemented.');
118+
setAccountData<T>(type: string, data: T): Promise<{}> {
119+
if (type === APP_BOXEL_REALMS_EVENT_TYPE) {
120+
this.sdkOpts.activeRealms = (data as any).realms;
121+
} else if (type === LEGACY_APP_BOXEL_REALMS_EVENT_TYPE) {
122+
// nothing to do
123+
} else {
124+
throw new Error(
125+
'Support for updating this event type in account data is not yet implemented in this mock.',
126+
);
127+
}
128+
return Promise.resolve({});
119129
}
120130

121131
getAccountData<T>(_type: string): Promise<T> {

packages/matrix/helpers/matrix-constants.ts

+1
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ export const APP_BOXEL_COMMAND_RESULT_MSGTYPE = 'app.boxel.commandResult';
66
export const APP_BOXEL_REALM_SERVER_EVENT_MSGTYPE =
77
'app.boxel.realm-server-event';
88
export const APP_BOXEL_REALMS_EVENT_TYPE = 'app.boxel.realms';
9+
export const LEGACY_APP_BOXEL_REALMS_EVENT_TYPE = 'com.cardstack.boxel.realms';

packages/matrix/tests/realm-urls.spec.ts

+46-2
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,27 @@ import {
44
synapseStop,
55
type SynapseInstance,
66
registerUser,
7+
getAccountData,
78
updateAccountData,
89
updateUser,
910
} from '../docker/synapse';
1011
import { smtpStart, smtpStop } from '../docker/smtp4dev';
11-
import { login, registerRealmUsers, setupUserSubscribed } from '../helpers';
12-
import { APP_BOXEL_REALMS_EVENT_TYPE } from '@cardstack/runtime-common/matrix-constants';
12+
import {
13+
login,
14+
logout,
15+
registerRealmUsers,
16+
setupUserSubscribed,
17+
} from '../helpers';
18+
1319
import {
1420
appURL,
1521
startServer as startRealmServer,
1622
type IsolatedRealmServer,
1723
} from '../helpers/isolated-realm-server';
24+
import {
25+
APP_BOXEL_REALMS_EVENT_TYPE,
26+
LEGACY_APP_BOXEL_REALMS_EVENT_TYPE,
27+
} from '../helpers/matrix-constants';
1828

1929
test.describe('Realm URLs in Matrix account data', () => {
2030
let synapse: SynapseInstance;
@@ -90,4 +100,38 @@ test.describe('Realm URLs in Matrix account data', () => {
90100
),
91101
).toHaveText('private');
92102
});
103+
104+
test('deprecated account data key is supported by auto-migrating user to new key', async ({
105+
page,
106+
}) => {
107+
await login(page, 'user1', 'pass', { url: appURL });
108+
await updateAccountData(
109+
'@user1:localhost',
110+
user.accessToken,
111+
LEGACY_APP_BOXEL_REALMS_EVENT_TYPE,
112+
JSON.stringify({
113+
realms: ['http://localhost:4205/user1/personal/'],
114+
}),
115+
);
116+
await logout(page);
117+
await login(page, 'user1', 'pass', { url: appURL });
118+
119+
await page.locator('[data-test-workspace-chooser-toggle]').click();
120+
121+
await page
122+
.locator('[data-test-workspace-chooser]')
123+
.waitFor({ state: 'visible' });
124+
125+
expect(
126+
page.locator('[data-test-workspace-list] [data-test-workspace]'),
127+
).toHaveCount(1);
128+
let realms = await getAccountData<{ realms: string[] } | undefined>(
129+
'@user1:localhost',
130+
user.accessToken,
131+
APP_BOXEL_REALMS_EVENT_TYPE,
132+
);
133+
expect(realms).toEqual({
134+
realms: ['http://localhost:4205/user1/personal/'],
135+
});
136+
});
93137
});

packages/runtime-common/matrix-constants.ts

+1
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ export const APP_BOXEL_REALM_SERVER_EVENT_MSGTYPE =
77
'app.boxel.realm-server-event';
88
export const APP_BOXEL_ROOM_SKILLS_EVENT_TYPE = 'app.boxel.room.skills';
99
export const APP_BOXEL_REALMS_EVENT_TYPE = 'app.boxel.realms';
10+
export const LEGACY_APP_BOXEL_REALMS_EVENT_TYPE = 'com.cardstack.boxel.realms';

0 commit comments

Comments
 (0)