44 lines
2.1 KiB
TypeScript
44 lines
2.1 KiB
TypeScript
import { clearTranslationCache } from './translation';
|
|||
|
|
import { clearScheduledMessages } from './scheduledMessages';
|
||
|
|
import { clearRecentSearches } from './recentSearches';
|
||
|
|
import { clearRecentForwardTargets } from './recentForwardTargets';
|
||
|
|
import { clearRecentGifs } from './recentGifs';
|
||
|
|
import { clearRecentStickers } from './recentStickers';
|
||
|
|
import { clearNavToActivePathStore } from './navToActivePath';
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Single auditable place that wipes the `localStorage` caches holding decrypted
|
||
|
|
* message content, sent media, or a user's messaging/nav activity. Called on
|
||
|
|
* logout so this residue can't survive on a shared device.
|
||
|
|
*
|
||
|
|
* Swept here:
|
||
|
|
* - `cinny_translation_cache_v1` — decrypted translated message text
|
||
|
|
* - `cinny_scheduled_messages_v1` — decrypted `IContent.body` of pending sends
|
||
|
|
* - `cinny_recent_searches_v1` — search query text (PII)
|
||
|
|
* - `cinny_recent_forward_targets_v1` — recent forward contact/room graph (PII)
|
||
|
|
* - `cinny_recent_gifs_v1` / `cinny_recent_stickers_v1` — media the user sent
|
||
|
|
* - `navToActivePath<userId>` — per-space last-visited room paths (needs userId)
|
||
|
|
*
|
||
|
|
* NOT swept here (by design):
|
||
|
|
* - session credential keys → `removeFallbackSession()`
|
||
|
|
* - the SDK sync/crypto store + all `io.lotus.*` account data (reminders,
|
||
|
|
* bookmarks, user notes, status presets — themselves plaintext) → wiped by
|
||
|
|
* `mx.clearStores()` on both logout paths
|
||
|
|
* - the opt-in encrypted-search index (IndexedDB) → `deleteSearchCacheDatabase()`
|
||
|
|
* - unsent composer drafts (`draft-msg-*`) and the presence status message
|
||
|
|
* (`lotus-status-msg-*`) are deliberately preserved across a normal logout
|
||
|
|
* (N98); clearing them is a separate product decision
|
||
|
|
* - low-sensitivity UI/metadata residue (`io.lotus.mute_timers`, collapsed
|
||
|
|
* nav/space categories, `cinny_oidc_dynamic_clients`) is treated as
|
||
|
|
* preferences, not swept here
|
||
|
|
*/
|
||
|
|
export const clearPlaintextCaches = (userId?: string): void => {
|
||
|
|
clearTranslationCache();
|
||
|
|
clearScheduledMessages();
|
||
|
|
clearRecentSearches();
|
||
|
|
clearRecentForwardTargets();
|
||
|
|
clearRecentGifs();
|
||
|
|
clearRecentStickers();
|
||
|
|
if (userId) clearNavToActivePathStore(userId);
|
||
|
|
};
|