Use secure storage for session data
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
import {call} from "@welshman/lib"
|
||||
import {SecureStorage} from "@aparajita/capacitor-secure-storage"
|
||||
import {Preferences} from "@capacitor/preferences"
|
||||
import {IDB} from "@lib/indexeddb"
|
||||
|
||||
@@ -30,6 +31,46 @@ export const kv = call(() => {
|
||||
return {get, set, clear}
|
||||
})
|
||||
|
||||
export const ss = call(() => {
|
||||
let p = Promise.resolve()
|
||||
|
||||
const get = async <T>(key: string): Promise<T | undefined> => {
|
||||
let value = await SecureStorage.getItem(key)
|
||||
|
||||
if (!value) {
|
||||
const legacy = await Preferences.get({key})
|
||||
|
||||
if (legacy.value) {
|
||||
value = legacy.value
|
||||
await SecureStorage.setItem(key, legacy.value)
|
||||
await Preferences.remove({key})
|
||||
}
|
||||
}
|
||||
|
||||
if (!value) return undefined
|
||||
|
||||
try {
|
||||
return JSON.parse(value)
|
||||
} catch (e) {
|
||||
return undefined
|
||||
}
|
||||
}
|
||||
|
||||
const set = async <T>(key: string, value: T): Promise<void> => {
|
||||
p = p.then(() => SecureStorage.setItem(key, JSON.stringify(value)))
|
||||
|
||||
await p
|
||||
}
|
||||
|
||||
const clear = async () => {
|
||||
p = p.then(() => SecureStorage.clear())
|
||||
|
||||
await p
|
||||
}
|
||||
|
||||
return {get, set, clear}
|
||||
})
|
||||
|
||||
export const db = new IDB({
|
||||
name: "flotilla-9gl",
|
||||
version: 1,
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {kv, db} from "@app/core/storage"
|
||||
import {db, kv, ss} from "@app/core/storage"
|
||||
import {Push} from "@app/util/notifications"
|
||||
import {deactivateCurrentPomadeSession} from "@app/util/pomade"
|
||||
|
||||
@@ -6,6 +6,7 @@ export const logout = async () => {
|
||||
await deactivateCurrentPomadeSession()
|
||||
await Push.disable()
|
||||
await kv.clear()
|
||||
await ss.clear()
|
||||
await db.clear()
|
||||
|
||||
localStorage.clear()
|
||||
|
||||
Reference in New Issue
Block a user