feat(identity): switch social identity, all from the one backup

Adds pseudonymous, switchable social identities derived from the SAME root
seed via an account index (NostrKeyDerivation.deriveFromSeed(seed, account)).
HKDF is one-way so accounts are unlinkable to the Ğ1 key; account 0 is the
original identity, byte-for-byte unchanged (no rotation for current users),
and every account regenerates from the single seed — so switching adds
nothing to back up.

- SocialAccountStore: keystore-backed active account + max created.
- Per-identity stores (chats, profile, name cache) namespaced by account
  scope (account 0 = legacy keys, no migration) so identities never mix.
- switchSocialAccount() re-derives the identity, re-scopes the stores and
  restarts the inbox listener; RestartWidget rebuilds the tree to pick up
  the new social singletons. DB/inventory untouched.
- Profile 'Your identities' switcher: list, create, switch (with a note
  that messages/contacts are kept separate per identity). i18n en/es/pt/ast.

Tests: account-indexed derivation (legacy 0 unchanged, accounts distinct
yet deterministic, negatives rejected); SocialAccountStore; per-identity
store scope isolation. Resolves the flagged 'change identity' decision
(open-decisions §B).

Known: switching resets navigation to home (full tree rebuild).
This commit is contained in:
vjrj 2026-07-10 20:20:04 +02:00
parent d36fd05741
commit 993f7b37ab
25 changed files with 597 additions and 33 deletions

View file

@ -713,6 +713,14 @@ class _Translations$profile$ast extends Translations$profile$en {
@override String get copied => 'Copiao';
@override String get save => 'Guardar';
@override String get saved => 'Perfil guardáu';
@override String get identities => 'Les tos identidaes';
@override String get identitiesHelp => 'Ten identidaes separaes — cada una coles sos mensaxes y contactos. Toes salen de la to única copia de seguridá, asina que camudar nun amiesta nada que recordar.';
@override String identityLabel({required Object n}) => 'Identidá ${n}';
@override String get current => 'N\'usu';
@override String get newIdentity => 'Identidá nueva';
@override String get switchTitle => '¿Camudar d\'identidá?';
@override String get switchBody => 'Los mensaxes y contactos guárdense per separao pa cada identidá. Pues volver cuando quieras.';
@override String get switchAction => 'Camudar';
}
// Path: chatList
@ -1469,6 +1477,14 @@ extension on TranslationsAst {
'profile.copied' => 'Copiao',
'profile.save' => 'Guardar',
'profile.saved' => 'Perfil guardáu',
'profile.identities' => 'Les tos identidaes',
'profile.identitiesHelp' => 'Ten identidaes separaes — cada una coles sos mensaxes y contactos. Toes salen de la to única copia de seguridá, asina que camudar nun amiesta nada que recordar.',
'profile.identityLabel' => ({required Object n}) => 'Identidá ${n}',
'profile.current' => 'N\'usu',
'profile.newIdentity' => 'Identidá nueva',
'profile.switchTitle' => '¿Camudar d\'identidá?',
'profile.switchBody' => 'Los mensaxes y contactos guárdense per separao pa cada identidá. Pues volver cuando quieras.',
'profile.switchAction' => 'Camudar',
'chatList.title' => 'Mensaxes',
'chatList.empty' => 'Entá nun hai charres. Escríbi-y a alguien dende\'l mercáu.',
'chat.title' => 'Charra',