Skip to content

Commit

Permalink
Actually store in storage
Browse files Browse the repository at this point in the history
  • Loading branch information
Half-Shot committed Nov 9, 2023
1 parent 15fd73e commit 44f20d5
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 6 deletions.
10 changes: 10 additions & 0 deletions src/matrix/Client.js
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,16 @@ export class Client {
}
}

/**
* Update the access token in use by the client.
* Will also update the token in session storage.
* @param {string} token A Matrix Access Token
*/
async updateAccessToken(token) {
this._session.updateAccessToken(token);
await this._platform.sessionInfoStorage.updateAccessToken(this._sessionId, token);
}

async _waitForFirstSync() {
this._sync.start();
this._status.set(LoadStatus.FirstSync);
Expand Down
21 changes: 15 additions & 6 deletions src/matrix/sessioninfo/localstorage/SessionInfoStorage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ interface ISessionInfo {
interface ISessionInfoStorage {
getAll(): Promise<ISessionInfo[]>;
updateLastUsed(id: string, timestamp: number): Promise<void>;
updateAccessToken(id: string, token: string): Promise<void>;
get(id: string): Promise<ISessionInfo | undefined>;
add(sessionInfo: ISessionInfo): Promise<void>;
delete(sessionId: string): Promise<void>;
Expand All @@ -60,14 +61,22 @@ export class SessionInfoStorage implements ISessionInfoStorage {
return Promise.resolve([]);
}

async updateAccessToken(id: string, accessToken: string): Promise<void> {
const sessions = await this.getAll();
const session = sessions.find(session => session.id === id);
if (!session) {
throw Error('No session found');
}
session.accessToken = accessToken;
localStorage.setItem(this._name, JSON.stringify(sessions));
}

async updateLastUsed(id: string, timestamp: number): Promise<void> {
const sessions = await this.getAll();
if (sessions) {
const session = sessions.find(session => session.id === id);
if (session) {
session.lastUsed = timestamp;
localStorage.setItem(this._name, JSON.stringify(sessions));
}
const session = sessions.find(session => session.id === id);
if (session) {
session.lastUsed = timestamp;
localStorage.setItem(this._name, JSON.stringify(sessions));
}
}

Expand Down

0 comments on commit 44f20d5

Please sign in to comment.