2021-08-11 04:40:55 +05:30
|
|
|
/*
|
|
|
|
Copyright 2020 Bruno Windels <bruno@windels.cloud>
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
import {Store} from "../Store";
|
2021-09-29 15:19:58 +05:30
|
|
|
import {IDOMStorage} from "../types";
|
|
|
|
import {SESSION_E2EE_KEY_PREFIX} from "../../../e2ee/common.js";
|
2021-08-11 04:40:55 +05:30
|
|
|
|
|
|
|
export interface SessionEntry {
|
|
|
|
key: string;
|
|
|
|
value: any;
|
|
|
|
}
|
|
|
|
|
|
|
|
export class SessionStore {
|
|
|
|
private _sessionStore: Store<SessionEntry>
|
2021-09-29 15:19:58 +05:30
|
|
|
private _localStorage: IDOMStorage;
|
2021-08-11 04:40:55 +05:30
|
|
|
|
2021-09-29 15:19:58 +05:30
|
|
|
constructor(sessionStore: Store<SessionEntry>, localStorage: IDOMStorage) {
|
2021-08-11 04:40:55 +05:30
|
|
|
this._sessionStore = sessionStore;
|
2021-09-29 15:19:58 +05:30
|
|
|
this._localStorage = localStorage;
|
2021-08-11 04:40:55 +05:30
|
|
|
}
|
|
|
|
|
2021-09-01 00:11:07 +05:30
|
|
|
async get(key: string): Promise<any> {
|
2021-08-11 04:40:55 +05:30
|
|
|
const entry = await this._sessionStore.get(key);
|
|
|
|
if (entry) {
|
|
|
|
return entry.value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-29 15:19:58 +05:30
|
|
|
_writeKeyToLocalStorage(key: string, value: any) {
|
|
|
|
// we backup to localStorage so when idb gets cleared for some reason, we don't lose our e2ee identity
|
|
|
|
try {
|
|
|
|
const lsKey = `${this._sessionStore.databaseName}.session.${key}`;
|
|
|
|
const lsValue = JSON.stringify(value);
|
|
|
|
this._localStorage.setItem(lsKey, lsValue);
|
|
|
|
} catch (err) {
|
|
|
|
console.error("could not write to localStorage", err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
writeToLocalStorage() {
|
|
|
|
this._sessionStore.iterateValues(undefined, (value: any, key: string) => {
|
|
|
|
if (key.startsWith(SESSION_E2EE_KEY_PREFIX)) {
|
|
|
|
this._writeKeyToLocalStorage(key, value);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
tryRestoreFromLocalStorage(): boolean {
|
|
|
|
let success = false;
|
|
|
|
const lsPrefix = `${this._sessionStore.databaseName}.session.`;
|
|
|
|
const prefix = `${lsPrefix}${SESSION_E2EE_KEY_PREFIX}`;
|
|
|
|
for(let i = 0; i < this._localStorage.length; i += 1) {
|
|
|
|
const lsKey = this._localStorage.key(i)!;
|
|
|
|
if (lsKey.startsWith(prefix)) {
|
|
|
|
const value = JSON.parse(this._localStorage.getItem(lsKey)!);
|
|
|
|
const key = lsKey.substr(lsPrefix.length);
|
|
|
|
this._sessionStore.put({key, value});
|
|
|
|
success = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
2021-09-01 00:01:17 +05:30
|
|
|
set(key: string, value: any): void {
|
2021-09-29 15:19:58 +05:30
|
|
|
if (key.startsWith(SESSION_E2EE_KEY_PREFIX)) {
|
|
|
|
this._writeKeyToLocalStorage(key, value);
|
|
|
|
}
|
2021-09-01 00:01:17 +05:30
|
|
|
this._sessionStore.put({key, value});
|
2021-08-11 04:40:55 +05:30
|
|
|
}
|
|
|
|
|
2021-09-01 00:01:17 +05:30
|
|
|
add(key: string, value: any): void {
|
2021-09-29 15:19:58 +05:30
|
|
|
if (key.startsWith(SESSION_E2EE_KEY_PREFIX)) {
|
|
|
|
this._writeKeyToLocalStorage(key, value);
|
|
|
|
}
|
2021-09-01 00:01:17 +05:30
|
|
|
this._sessionStore.add({key, value});
|
2021-08-11 04:40:55 +05:30
|
|
|
}
|
|
|
|
|
2021-09-01 00:11:07 +05:30
|
|
|
remove(key: string): void {
|
2021-09-29 15:19:58 +05:30
|
|
|
if (key.startsWith(SESSION_E2EE_KEY_PREFIX)) {
|
|
|
|
this._localStorage.removeItem(this._sessionStore.databaseName + key);
|
|
|
|
}
|
2021-09-01 00:01:17 +05:30
|
|
|
this._sessionStore.delete(key);
|
2021-08-11 04:40:55 +05:30
|
|
|
}
|
|
|
|
}
|