Skip to main content

vector_core/community/
migration.rs

1//! v1 → v2 community migration — the atomic dissolution-carrier wire codec (task #10).
2//!
3//! The migration rides INSIDE the vsk=10 GroupDissolved tombstone's content: a signpost
4//! (where the v2 twin lives) plus `m`, the complete v2 JoinMaterial sealed under the v1
5//! server root at publish time. One owner-signed event seals v1, signposts v2, and IS
6//! every member's invite. Shipped v0.4.0 never parses tombstone content (validity is
7//! vsk + coordinate + signer), so old clients fold this as a plain dissolution — composer
8//! lockdown, history intact — and the relays retain the event for any later re-probe.
9//!
10//! Scope discipline: the signpost is readable by anyone who can open the tombstone's
11//! id-derived envelope (it grants nothing); `m` opens only under a held server-root epoch
12//! key — exactly v1's confidentiality boundary, so a read-cut member cannot open it. Keys
13//! are NEVER placed under the id-derived envelope: the community id rides in every invite
14//! bundle ever shared and is not a secret.
15
16use super::cipher;
17use super::roster::DissolvedEdition;
18use super::transport::Transport;
19use super::{Community, CommunityId};
20use crate::state::SessionGuard;
21use serde::{Deserialize, Serialize};
22use std::collections::HashSet;
23use std::sync::{LazyLock, Mutex as StdMutex};
24
25/// v1 cids with a `drive_migration` in flight — mutual exclusion so the boot maintenance
26/// and the live carrier-fold never drive the SAME community concurrently. Without it two
27/// drives can interleave a channel-less `save_community_v2` (which prunes) after the other's
28/// re-parent commit, deleting a just-adopted row. Cleared on account swap.
29static DRIVE_INFLIGHT: LazyLock<StdMutex<HashSet<String>>> =
30    LazyLock::new(|| StdMutex::new(HashSet::new()));
31
32/// Clear the drive-in-flight set (account swap — the new account's drives must not be
33/// blocked by a stale claim from the old one).
34pub fn clear_drive_inflight() {
35    DRIVE_INFLIGHT.lock().unwrap_or_else(|e| e.into_inner()).clear();
36}
37
38/// RAII claim on [`DRIVE_INFLIGHT`]. `take` returns `None` when the cid is already claimed
39/// (drive vs drive, wizard vs drive, wizard vs wizard). Drop is generation-aware: after an
40/// account swap clears the set, a stale claim's unwind must not release the claim the NEW
41/// account just inserted for the same cid.
42struct DriveClaim(String, SessionGuard);
43impl DriveClaim {
44    fn take(cid: &str) -> Option<Self> {
45        let mut inflight = DRIVE_INFLIGHT.lock().unwrap_or_else(|e| e.into_inner());
46        if !inflight.insert(cid.to_string()) {
47            return None;
48        }
49        Some(DriveClaim(cid.to_string(), SessionGuard::capture()))
50    }
51}
52impl Drop for DriveClaim {
53    fn drop(&mut self) {
54        if self.1.is_valid() {
55            DRIVE_INFLIGHT.lock().unwrap_or_else(|e| e.into_inner()).remove(&self.0);
56        }
57    }
58}
59
60/// Test hooks: stand in for a concurrent drive holding the claim (the claim is private and
61/// RAII-scoped, so a test can't otherwise model "another drive is mid-flight").
62#[cfg(test)]
63pub fn test_hold_drive_claim(cid: &str) {
64    DRIVE_INFLIGHT.lock().unwrap_or_else(|e| e.into_inner()).insert(cid.to_string());
65}
66#[cfg(test)]
67pub fn test_release_drive_claim(cid: &str) {
68    DRIVE_INFLIGHT.lock().unwrap_or_else(|e| e.into_inner()).remove(cid);
69}
70
71/// When the owner-side migration wizard unlocks: 2026-08-04 00:00:00 UTC. Gates ONLY the
72/// wizard (UI row + command entry); the member-side machinery is live from release day, so
73/// a migration performed by a lock-bypassing build still carries every member along. A
74/// coordination gate, not a security gate.
75pub const MIGRATION_UNLOCK_AT: u64 = 1_785_801_600;
76
77/// Bound on the whole tombstone content string before any parse. The outer NIP-44 seal
78/// caps its plaintext at 65535 bytes, so anything larger is garbage by construction.
79pub const MAX_PAYLOAD_CONTENT: usize = 100_000;
80/// Bound on the base64 `m` string inside the payload (checked before decode/open).
81pub const MAX_M_B64: usize = 90_000;
82/// Display-name cap in the signpost — truncated, not rejected (fail-safe parse).
83pub const MAX_SIGNPOST_NAME: usize = 120;
84/// Conservative relay max-event-size floor (strfry default is 64 KB): the final sealed
85/// OUTER event's JSON must stay under this or common relays will reject the publish.
86pub const MAX_WIRE_EVENT: usize = 60_000;
87
88/// The plaintext signpost: where the v2 twin lives. Grants nothing by itself — every field
89/// is verified against the member's held v1 owner anchor (triple-bind) before any use.
90#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
91pub struct MigrationSignpost {
92    /// The v2 self-certifying community id. Must recompute from `owner_xonly` + `owner_salt`.
93    pub v2_community_id: String,
94    /// Must equal the member's held v1 owner anchor (owner continuity — the consent basis).
95    pub owner_xonly: String,
96    /// The v2 owner salt (public input to the self-cert id).
97    pub owner_salt: String,
98    /// The v2 relay set (capped like every other attacker-influencable relay list).
99    /// Absent is empty, not a parse failure — a rejected signpost strands the migration.
100    #[serde(default)]
101    pub relays: Vec<String>,
102    /// Display name at migration time (informational only).
103    pub name: String,
104    /// Which stitched channel the one-row UI surfaces.
105    pub primary_channel: String,
106    /// The v1 base epoch at publish — bounds a stale member's catch-up walk before they
107    /// conclude `m` is unopenable (a member holding an epoch >= this that still cannot
108    /// open `m` is genuinely outside the member set).
109    #[serde(default)]
110    pub root_epoch: u64,
111}
112
113/// The parsed migration payload: signpost + optionally the sealed key material.
114#[derive(Debug, Clone, PartialEq, Eq)]
115pub struct MigrationPayload {
116    pub signpost: MigrationSignpost,
117    /// base64 NIP-44 seal of the v2 JoinMaterial under the v1 server_root at publish.
118    /// `None` = signpost-only (still a valid pointer; the member falls back to the
119    /// straggler CTA if no key material ever opens).
120    pub m: Option<String>,
121}
122
123/// Wire shape of the tombstone content. `migrated_to` keys the signpost so a plain `{}`
124/// (the pre-migration dissolution) deserializes to "no payload" rather than erroring.
125#[derive(Serialize, Deserialize)]
126struct WirePayload {
127    migrated_to: MigrationSignpost,
128    #[serde(default, skip_serializing_if = "Option::is_none")]
129    m: Option<String>,
130}
131
132fn is_hex64(s: &str) -> bool {
133    s.len() == 64 && s.bytes().all(|b| b.is_ascii_hexdigit())
134}
135
136/// Parse a tombstone's content into a migration payload. Fail-SAFE by contract: any bound
137/// violation, shape error, or bad field returns `None` — the event remains a plain
138/// dissolution and the SEAL is never rejected. Ids are lowercase-normalized; relays are
139/// capped by truncation (hostile payloads degrade, never amplify); the name is truncated.
140pub fn parse_migration_payload(content: &str) -> Option<MigrationPayload> {
141    if content.len() > MAX_PAYLOAD_CONTENT {
142        return None;
143    }
144    let wire: WirePayload = serde_json::from_str(content).ok()?;
145    let mut sp = wire.migrated_to;
146    if !is_hex64(&sp.v2_community_id)
147        || !is_hex64(&sp.owner_xonly)
148        || !is_hex64(&sp.owner_salt)
149        || !is_hex64(&sp.primary_channel)
150    {
151        return None;
152    }
153    sp.v2_community_id = sp.v2_community_id.to_lowercase();
154    sp.owner_xonly = sp.owner_xonly.to_lowercase();
155    sp.owner_salt = sp.owner_salt.to_lowercase();
156    sp.primary_channel = sp.primary_channel.to_lowercase();
157    sp.relays = super::cap_relays(sp.relays);
158    if sp.name.chars().count() > MAX_SIGNPOST_NAME {
159        sp.name = sp.name.chars().take(MAX_SIGNPOST_NAME).collect();
160    }
161    let m = match wire.m {
162        Some(m) if m.len() > MAX_M_B64 => return None,
163        other => other,
164    };
165    Some(MigrationPayload { signpost: sp, m })
166}
167
168/// Serialize a payload for the tombstone content (the wizard's side of [`parse_migration_payload`]).
169pub fn build_migration_content(signpost: &MigrationSignpost, m: Option<String>) -> Result<String, String> {
170    serde_json::to_string(&WirePayload { migrated_to: signpost.clone(), m })
171        .map_err(|e| format!("serialize migration payload: {e}"))
172}
173
174/// Seal the v2 JoinMaterial under the v1 server root at publish time. Errors past NIP-44's
175/// 65535-byte plaintext cap — the wizard surfaces that as a clean abort, never a truncation.
176pub fn seal_m(server_root: &[u8; 32], join_material_json: &[u8]) -> Result<String, String> {
177    cipher::seal(server_root, join_material_json)
178}
179
180/// Try to open `m` under EVERY held server-root epoch key, newest first — absorbs both a
181/// stale local head and a concurrent v1 refound that advanced past the publish root.
182/// `None` = no held root opens it (caller decides: catch-up walk, then the straggler CTA).
183pub fn open_m(held_roots: &[(u64, [u8; 32])], m_b64: &str) -> Option<Vec<u8>> {
184    if m_b64.len() > MAX_M_B64 {
185        return None;
186    }
187    let mut roots: Vec<&(u64, [u8; 32])> = held_roots.iter().collect();
188    roots.sort_by(|a, b| b.0.cmp(&a.0));
189    for (_, key) in roots {
190        if let Ok(plain) = cipher::open(key, m_b64) {
191            return Some(plain);
192        }
193    }
194    None
195}
196
197/// Total, payload-aware pointer selection over the owner's tombstones: the pointer comes
198/// from the newest PAYLOAD-CARRYING owner-signed tombstone (tiebreak lowest inner id); a
199/// payload-less `{}` tombstone SEALS the community but never shadows a payload-bearing one
200/// — otherwise a plain dissolution from a second device would silently shed the keys for
201/// every future straggler. (Corollary, deliberate: a NEWER payload-bearing tombstone
202/// WITHOUT `m` is the owner's honest-client-scoped retraction lever for the on-ramp.)
203pub fn select_pointer(editions: &[DissolvedEdition], owner_hex: &str) -> Option<(MigrationPayload, String)> {
204    let mut best: Option<(&DissolvedEdition, MigrationPayload)> = None;
205    for e in editions {
206        if e.author.to_hex() != owner_hex {
207            continue;
208        }
209        let Some(payload) = parse_migration_payload(&e.content) else { continue };
210        best = match best {
211            Some((cur, cur_p))
212                if (cur.created_at, std::cmp::Reverse(cur.inner_id))
213                    >= (e.created_at, std::cmp::Reverse(e.inner_id)) =>
214            {
215                Some((cur, cur_p))
216            }
217            _ => Some((e, payload)),
218        };
219    }
220    // The raw winning content rides along so the caller can persist the exact wire form
221    // (re-parseable later without a second serializer for the payload).
222    best.map(|(e, p)| (p, e.content.clone()))
223}
224
225/// Wire-size gate for the final sealed OUTER event — computed on the actual bytes, never
226/// estimated. Run by the wizard before publishing; failing is a clean abort.
227pub fn check_outer_size(outer: &nostr_sdk::prelude::Event) -> Result<(), String> {
228    let len = outer.as_json().len();
229    if len > MAX_WIRE_EVENT {
230        return Err(format!(
231            "migration event is {len} bytes, over the {MAX_WIRE_EVENT}-byte relay ceiling; \
232             this community is too large for a single migration event"
233        ));
234    }
235    Ok(())
236}
237
238// ── Member flow: fold a migration pointer → open `m` → flip to v2 ─────────────────────────
239
240/// The dissolved-gate exemption: a base rekey may advance a SEALED community's epoch
241/// only while a migration pointer is held, the flip hasn't happened, and the target epoch
242/// does not exceed the pointer's publish epoch. Lets a stale member walk their held root
243/// forward to the one `m` was sealed under, without ever re-opening the seal for anything
244/// else. Any read error fails closed (no exemption).
245pub fn catchup_exempt(community_id: &str, target_epoch: u64) -> bool {
246    if crate::db::community::get_migrated_to(community_id).ok().flatten().is_some() {
247        return false; // already flipped — the fence stands
248    }
249    let Ok(Some(raw)) = crate::db::community::get_migration_pointer(community_id) else {
250        return false; // no pointer → a plain dissolution, never advances
251    };
252    let Some(payload) = parse_migration_payload(&raw) else { return false };
253    target_epoch <= payload.signpost.root_epoch
254}
255
256/// Held server-root epoch keys for a community, for the multi-root `m` open.
257fn held_roots(community_id: &str) -> Vec<(u64, [u8; 32])> {
258    crate::db::community::held_epoch_keys(community_id, crate::community::SERVER_ROOT_SCOPE_HEX)
259        .unwrap_or_default()
260        .into_iter()
261        .map(|(e, k)| (e.0, k))
262        .collect()
263}
264
265/// Drive a held v1 community's migration to completion when a pointer is present and the
266/// flip hasn't happened: open `m` (catching a stale root up first, no-erase), join the v2
267/// twin through the ban-gated accept path, then run the flip transaction. Idempotent and
268/// resumable — safe to call from the boot sweep, the live fold, and the fallback door.
269/// Returns `Ok(Some(v2_id))` on a completed flip, `Ok(None)` when nothing was actionable
270/// (no pointer, already flipped, or `m` unopenable — the straggler CTA case).
271pub async fn drive_migration<T: Transport + ?Sized>(
272    transport: &T,
273    community: &Community,
274) -> Result<Option<String>, String> {
275    let session = SessionGuard::capture();
276    let cid = community.id.to_hex();
277
278    // Claim the in-flight slot or bail — a concurrent drive (boot maintenance vs the live
279    // carrier fold, or the owner's wizard vs their own fold) is already handling this cid.
280    // Without this, two channel-less v2 saves can interleave a prune after the other's
281    // re-parent. The claim is released on ANY exit (RAII).
282    let Some(_claim) = DriveClaim::take(&cid) else {
283        return Ok(None);
284    };
285
286    // Already flipped? Nothing to do (idempotent double-trigger).
287    if crate::db::community::get_migrated_to(&cid).ok().flatten().is_some() {
288        return Ok(None);
289    }
290    let Some(raw) = crate::db::community::get_migration_pointer(&cid)? else {
291        return Ok(None); // no pointer → not a migration
292    };
293    let Some(payload) = parse_migration_payload(&raw) else {
294        // A stored-but-unparseable pointer is inert; mark checked so the sweep converges.
295        let _ = crate::db::community::set_migration_checked(&cid);
296        return Ok(None);
297    };
298
299    // Triple-bind check 2 — OWNER CONTINUITY: the v2 owner the signpost claims MUST equal this
300    // v1 community's proven owner (the pointer is already owner-signed at the bound coordinate,
301    // check 1). A migration that changes the owner identity is NOT eligible for consent-free
302    // join — identity continuity is the whole basis for skipping consent. Fail-closed: no
303    // proven owner ⇒ no continuity ⇒ no auto-join. (check 3 — the v2 self-cert recompute — runs
304    // inside accept_bundle.)
305    let Some(owner) = super::service::proven_owner_hex(community) else { return Ok(None) };
306    if payload.signpost.owner_xonly != owner {
307        return Ok(None); // owner discontinuity → not a consent-free migration
308    }
309    // Bind the v2 self-cert id to the signpost's own owner/salt before the network join.
310    if !super::v2::derive::verify_community_id(
311        &CommunityId(crate::simd::hex::hex_to_bytes_32(&payload.signpost.v2_community_id)),
312        &crate::simd::hex::hex_to_bytes_32(&payload.signpost.owner_xonly),
313        &crate::simd::hex::hex_to_bytes_32(&payload.signpost.owner_salt),
314    ) {
315        return Ok(None); // the v2 id is not a commitment to this owner+salt
316    }
317
318    let Some(m_b64) = payload.m.as_deref() else {
319        return Ok(None); // signpost-only pointer → straggler CTA, no keys to open
320    };
321
322    // Open `m` under any held root; if none opens and we're stale vs the publish epoch,
323    // walk the base root forward (no-erase: the `removed` signal is ignored — the community
324    // is terminal either way) and retry. The exemption above lets this walk run despite the
325    // seal.
326    let mut plain = open_m(&held_roots(&cid), m_b64);
327    if plain.is_none() && community.server_root_epoch.0 < payload.signpost.root_epoch {
328        let _ = super::service::catch_up_server_root(transport, community).await;
329        if !session.is_valid() {
330            return Err("account changed during migration catch-up".to_string());
331        }
332        plain = open_m(&held_roots(&cid), m_b64);
333    }
334    let Some(plain) = plain else {
335        return Ok(None); // unopenable (read-cut or lost-DB) → straggler CTA
336    };
337
338    // Verify the JoinMaterial's owner matches the pointer's owner continuity claim before
339    // trusting it (the self-cert id recompute is the fail-closed gate inside accept_bundle).
340    let jm: super::v2::list::JoinMaterial =
341        serde_json::from_slice(&plain).map_err(|e| format!("migration join material parse: {e}"))?;
342    if jm.community_id != payload.signpost.v2_community_id || jm.owner != payload.signpost.owner_xonly {
343        return Err("migration payload keys disagree with the signpost".to_string());
344    }
345
346    // held-v2 dedup: if this account ALREADY holds the v2 twin, do NOT network-join
347    // it again — flip only. Covers the idempotent double-trigger, a multi-device peer that
348    // synced the twin via the 13302 list first, and the OWNER's own client (the wizard
349    // created the twin, so the owner holds it — accept_bundle must never try to "join" it).
350    let v2_id = CommunityId(crate::simd::hex::hex_to_bytes_32(&payload.signpost.v2_community_id));
351    let v2_hex = payload.signpost.v2_community_id.clone();
352    if crate::db::community::load_community_v2(&v2_id)?.is_none() {
353        // Join the v2 twin (ban-gated, owner-root-verified). A refusal (banned / forged
354        // root) leaves the community sealed — never a half-flip.
355        let v2 = super::v2::service::accept_migration_material(transport, &jm).await?;
356        if crate::simd::hex::bytes_to_hex_32(&v2.identity.community_id.0) != v2_hex {
357            return Err("joined community id disagrees with the migration pointer".to_string());
358        }
359        if !session.is_valid() {
360            return Err("account changed during migration join".to_string());
361        }
362    }
363
364    // The flip: re-parent the stitched channel rows + stamp the fence (one txn). The v2
365    // community ROW already exists (accept saved it, or this account already held it); NO
366    // save_community_v2 here — the v2 view is channel-less (its channel ids were v1-owned →
367    // skipped by the hijack guard), so a re-save would PRUNE the just-re-parented rows.
368    // Public channels fold from the control plane; the re-parented rows carry the history.
369    // Under the twin's follow lock: the follow worker's whole-row save deletes channel rows
370    // absent from a pre-flip-loaded (channel-less) struct, so the flip must not straddle it.
371    // Guard IMMEDIATELY before the most destructive write in the feature — the held-v2
372    // path above skips the join branch (and its check), so this is the one that counts.
373    let flock = super::v2::realtime::follow_lock(&v2_id);
374    let _fguard = flock.lock().await;
375    if !session.is_valid() {
376        return Err("account changed during migration flip".to_string());
377    }
378    crate::db::community::reparent_channels_and_fence(&cid, &v2_hex)?;
379    Ok(Some(v2_hex))
380}
381
382// ── Owner flow: the migration wizard ─────────────────────────────────────────────────────
383
384/// Ledger phases (persisted in `community_migrations.phase`). Each is idempotent + resumable.
385/// TWIN_MINTED lands IMMEDIATELY after the twin's genesis returns, BEFORE the sibling-channel
386/// and banlist tail — so a crash anywhere in that multi-await tail resumes onto the SAME twin
387/// instead of re-minting a fresh identity (which would orphan the first genesis on the relays).
388/// Residual window: a crash INSIDE create_migration_twin (after its local save, before return
389/// — spanning its genesis + guestbook publishes, so seconds over a slow transport) still
390/// re-mints on the next run and leaves a phantom v2 row — bounded: no carrier ever references
391/// it, so no member is ever stranded; it is a dead genesis plus one stale local row.
392pub const PHASE_TWIN_MINTED: i64 = 1;
393pub const PHASE_TWIN_BUILT: i64 = 2;
394/// Birth refound 0→1 + Guestbook snapshot of the full v1 roster landed. AFTER this the twin
395/// is at epoch 1, so `m` (sealed in the next phase) carries the epoch-1 root — the whole
396/// reason for the refound (genesis has no snapshot authority).
397pub const PHASE_TWIN_REFOUNDED: i64 = 3;
398pub const PHASE_CARRIER_PUBLISHED: i64 = 4;
399pub const PHASE_FLIPPED: i64 = 5;
400
401/// The full v1 memberlist to seed into the twin's epoch-1 Guestbook. `community_member_activity`
402/// IS v1's single source of truth for "who is a member": it already unions observed authors +
403/// the owner + every roster grant-holder, subtracts the banlist, and applies the leave filter
404/// — so the seed is exactly that set (fetched UNCAPPED, so a large community seeds every
405/// member instead of the top 500-by-recency). Using it verbatim means the v2 seed can NEVER
406/// diverge from what v1 itself shows as members.
407///
408/// note: a v1 admin who LEFT but was never stripped of their grant is re-asserted as a
409/// member by that function (v1's rule: a leave must not lock a sitting admin out) — so they
410/// ARE seeded. That is v1-faithful (v1 shows them as a member), a deliberate divergence from
411/// the design's "− left" line for the admin case; a NON-admin who left is dropped by the leave
412/// filter. `owner_hex` is unused now (the DB seeds the owner) but kept for call-site clarity.
413fn v1_snapshot_members(v1_cid: &str, _owner_hex: &str) -> Vec<nostr_sdk::prelude::PublicKey> {
414    crate::db::community::community_member_activity_capped(v1_cid, false)
415        .unwrap_or_default()
416        .iter()
417        .filter_map(|(npub, _)| nostr_sdk::prelude::PublicKey::parse(npub).ok())
418        .collect()
419}
420
421/// Whether the owner wizard is unlocked (the timelock is a coordination gate, re-checked at
422/// the command entry, not just in the UI). `now_secs` is passed in (the core has no clock).
423pub fn wizard_unlocked(now_secs: u64) -> bool {
424    now_secs >= MIGRATION_UNLOCK_AT
425}
426
427/// The post-timelock door for FRESH v1 joins, probe-first. Pre-unlock, or a community we
428/// already hold (re-accept / cross-device rehydrate), passes locally. Post-unlock a fresh
429/// join passes ONLY when the rotation-stable dissolved coordinate carries the proven
430/// owner's migration pointer — that join is the permanent on-ramp (save → carrier fold
431/// seals → drive lands the joiner in the v2 twin). A live v1 community, an unprovable
432/// owner, or a relay miss all refuse: fail-closed, a retry beats onboarding a fresh user
433/// onto the legacy protocol. Every v1 join door (Tauri direct + public accepts, facade
434/// direct + public accepts) must call this before persisting anything.
435pub async fn gate_fresh_v1_join<T: Transport + ?Sized>(
436    transport: &T,
437    community: &Community,
438    now_secs: u64,
439) -> Result<(), String> {
440    if now_secs < MIGRATION_UNLOCK_AT {
441        return Ok(());
442    }
443    if matches!(crate::db::community::load_community(&community.id), Ok(Some(_))) {
444        return Ok(());
445    }
446    if let Some(owner) = super::service::proven_owner_hex(community) {
447        let records = super::service::dissolved_tombstone_records(transport, community).await;
448        if select_pointer(&records, &owner).is_some() {
449            return Ok(());
450        }
451    }
452    Err("This community still uses the legacy protocol and can no longer be joined. Ask the owner to upgrade it to Concord v2 and share a fresh invite.".to_string())
453}
454
455/// The UI state ladder for a v1 community's migration row, in priority order. Pure so the
456/// ordering is testable: `in_progress` MUST outrank `dissolved`, because the owner's own
457/// carrier self-fold seals v1 while the flip is still pending — exactly the window the
458/// Resume affordance exists for. A ledger row only ever exists on the wizard's own account.
459pub fn migration_state(
460    migrated: bool,
461    ledger_phase: i64,
462    dissolved: bool,
463    is_owner: bool,
464    unlocked: bool,
465) -> &'static str {
466    if migrated {
467        "migrated"
468    } else if ledger_phase > 0 && is_owner {
469        "in_progress"
470    } else if dissolved {
471        "dissolved"
472    } else if !is_owner {
473        "not_owner"
474    } else if unlocked {
475        "ready"
476    } else {
477        "locked"
478    }
479}
480
481/// Whether the wizard may run for this community (the row's action is armed). A sealed
482/// community is eligible ONLY as a resume of its own in-flight migration.
483pub fn migration_eligible(migrated: bool, ledger_phase: i64, dissolved: bool, is_owner: bool) -> bool {
484    is_owner && !migrated && (!dissolved || ledger_phase > 0)
485}
486
487/// Owner-side migration wizard: build the v2 twin (reusing v1 channel ids + cloning the
488/// banlist), seal the twin's JoinMaterial into `m`, publish the carrier dissolution on v1,
489/// then flip the owner's own client to v2. Resumable via the migration-77 ledger — a re-run
490/// after a crash picks up at the recorded phase. Every phase re-checks the `SessionGuard`.
491/// `now_secs` gates the timelock. Returns the v2 community id on completion.
492/// Emit a wizard progress step to the UI (no-op on headless clients via the unregistered
493/// emitter). `pct` is OVERALL progress 0-100 across the whole wizard; `label` is layman-facing.
494/// The frontend renders a determinate ring + this label in an unclosable modal (rekey contract).
495fn emit_migration_progress(label: &str, pct: u8) {
496    crate::emit_event("community_migration_progress", &serde_json::json!({ "label": label, "pct": pct }));
497}
498
499pub async fn migrate_community_to_v2<T: Transport + ?Sized>(
500    transport: &T,
501    v1: &Community,
502    now_secs: u64,
503) -> Result<String, String> {
504    let session = SessionGuard::capture();
505    let v1_cid = v1.id.to_hex();
506    // One wizard/drive at a time per cid: a double-fired command would race the twin mint
507    // pre-ledger (the double-mint orphan window) and its flip against a concurrent drive's.
508    let Some(_claim) = DriveClaim::take(&v1_cid) else {
509        return Err("this community's upgrade is already in progress".to_string());
510    };
511    emit_migration_progress("Preparing the upgrade...", 5);
512
513    // Phase 0 — preflight (owner, unlocked, not already dissolved/migrated).
514    if !wizard_unlocked(now_secs) {
515        return Err("community migration is not unlocked yet".to_string());
516    }
517    if !super::service::is_proven_owner(v1) {
518        return Err("only the community owner can migrate the community".to_string());
519    }
520    // Already migrated? Check FIRST — a migrated community is ALSO dissolved (the flip seals
521    // it), so this must precede the dissolved gate below or a legitimate crash-heal reads as
522    // a plain dissolution.
523    if let Some(v2) = crate::db::community::get_migrated_to(&v1_cid).ok().flatten() {
524        // Crash-heal: the flip LANDED but the FLIPPED ledger write didn't (a crash between
525        // the two). This re-run is a COMPLETED migration — heal the ledger and report
526        // success instead of erroring on our own success.
527        if let Some((ledger_v2, phase, _)) = crate::db::community::get_migration_ledger(&v1_cid).ok().flatten() {
528            if ledger_v2 == v2 && phase < PHASE_FLIPPED {
529                let _ = crate::db::community::set_migration_ledger(&v1_cid, &v2, PHASE_FLIPPED, "");
530                return Ok(v2);
531            }
532        }
533        return Err("this community has already been migrated".to_string());
534    }
535    // Resume ledger read up-front — a ledger row means THIS owner already began THIS
536    // migration, which the dissolved gate below keys off.
537    let ledger = crate::db::community::get_migration_ledger(&v1_cid).ok().flatten();
538    let resume_phase = ledger.as_ref().map(|(_, p, _)| *p).unwrap_or(0);
539
540    // Not already dissolved: a carrier published for a sealed-but-UNMIGRATED
541    // community is undeliverable — members' folds short-circuit on the seal and never see
542    // it, so the owner would flip alone. A plain dissolution and a migration are mutually
543    // exclusive endings. EXEMPT a resume (`resume_phase > 0`) — a `dissolved=1` flag on
544    // a community whose wizard already started is this owner's OWN carrier seal (e.g. a
545    // self-fold sealed it after CARRIER_PUBLISHED, then the flip write flaked), not a foreign
546    // plain dissolution; without the exemption that transient failure reads as false-terminal.
547    if resume_phase == 0 && crate::db::community::get_community_dissolved(&v1_cid).unwrap_or(false) {
548        return Err("this community has been dissolved; it cannot be migrated".to_string());
549    }
550    let Some(owner_hex) = super::service::proven_owner_hex(v1) else {
551        return Err("cannot resolve the community owner".to_string());
552    };
553
554    // Phase 1a — mint (or reload) the v2 twin: primary channel reuses the v1 primary id.
555    emit_migration_progress("Creating the new community...", 15);
556    let twin = if resume_phase >= PHASE_TWIN_MINTED {
557        let (v2_hex, _, _) = ledger.as_ref().unwrap();
558        crate::db::community::load_community_v2(&CommunityId(crate::simd::hex::hex_to_bytes_32(v2_hex)))?
559            .ok_or("migration twin missing on resume")?
560    } else {
561        let primary = v1.channels.first().ok_or("v1 community has no channels")?;
562        let twin = super::v2::service::create_migration_twin(
563            transport,
564            &v1.name,
565            v1.relays.clone(),
566            v1.description.clone(),
567            (primary.id, primary.name.clone()),
568        )
569        .await?;
570        // Ledger the minted identity IMMEDIATELY — before the sibling/banlist tail — so no
571        // crash in that tail can re-mint a second twin (the double-mint orphan window).
572        let v2_hex = crate::simd::hex::bytes_to_hex_32(&twin.identity.community_id.0);
573        if !session.is_valid() {
574            return Err("account changed during twin mint".to_string());
575        }
576        crate::db::community::set_migration_ledger(&v1_cid, &v2_hex, PHASE_TWIN_MINTED, "")?;
577        twin
578    };
579    let v2_hex = crate::simd::hex::bytes_to_hex_32(&twin.identity.community_id.0);
580
581    // Phase 1b — sibling channels + banlist clone. Idempotent, so a resume at TWIN_MINTED
582    // re-runs the whole tail: a re-created channel publishes a vsk-2 chain ADVANCE with the
583    // same content (readers converge either way) and the local save skips v1-owned rows.
584    if resume_phase < PHASE_TWIN_BUILT {
585        emit_migration_progress("Copying channels, roles and bans...", 35);
586        // Additional v1 channels reuse their ids on the twin (public — v1 has no private
587        // channel model in the shipped protocol, so all stitch as public).
588        for ch in v1.channels.iter().skip(1) {
589            super::v2::service::create_public_channel_with_id(transport, &twin, &ch.name, ch.id).await?;
590        }
591        // Clone the v1 banlist so the v2 join-time ban gate catches v1-banned members.
592        let banlist = crate::db::community::get_community_banlist(&v1_cid).unwrap_or_default();
593        super::v2::service::clone_banlist_to_twin(transport, &twin, &banlist).await?;
594        if !session.is_valid() {
595            return Err("account changed during banlist clone".to_string());
596        }
597        // Clone governance: every v1 full admin is re-granted @admin on the twin (owner is
598        // supreme by identity; banned members skipped). Banlist BEFORE governance so a
599        // banned admin never regains authority on v2.
600        let v1_roles = crate::db::community::get_community_roles(&v1_cid).unwrap_or_default();
601        super::v2::service::clone_governance_to_twin(transport, &twin, &v1_roles, &banlist).await?;
602        // The twin persists via save_community_v2 (community row + control plane); its public
603        // channel rows stay v1-owned until the flip re-parents them (the hijack guard).
604        // The ledger needs only the v2 id — a resume reloads the rest from DB + control plane.
605        if !session.is_valid() {
606            return Err("account changed during twin build".to_string());
607        }
608        crate::db::community::set_migration_ledger(&v1_cid, &v2_hex, PHASE_TWIN_BUILT, "")?;
609    }
610
611    // Phase 1c — BIRTH REFOUND 0→1 + seed the full v1 roster. Genesis has no snapshot
612    // authority, so the twin must roll to epoch 1 (owner-only rekey) carrying an owner-signed
613    // Guestbook snapshot of the v1 memberlist. After this the twin is at epoch 1 and `m` (next
614    // phase) carries the epoch-1 root. Members join at epoch 1; not-yet-landed seeds show as
615    // members (holding no keys) and RECEIVE every future rotation's blob, so a late migrator
616    // never misses an epoch. Idempotent: mint_or_reuse re-delivers the same epoch-1 root, the
617    // compaction re-wraps the same heads, the snapshot re-publishes (fresh snap_id each run;
618    // convergence is coalesce commutativity, safe because it precedes the carrier).
619    if resume_phase < PHASE_TWIN_REFOUNDED {
620        emit_migration_progress("Securing member access...", 55);
621        let members = v1_snapshot_members(&v1_cid, &owner_hex);
622        super::v2::service::refound_at_birth(transport, &twin, &members).await?;
623        if !session.is_valid() {
624            return Err("account changed during birth refound".to_string());
625        }
626        crate::db::community::set_migration_ledger(&v1_cid, &v2_hex, PHASE_TWIN_REFOUNDED, "")?;
627    }
628    // Reload the twin at its CURRENT epoch (1 after the refound) so `m` seals the epoch-1
629    // root, not the throwaway genesis root. On a resume ≥ TWIN_REFOUNDED the persisted twin
630    // is already at epoch 1; this reload makes both paths converge.
631    let twin = crate::db::community::load_community_v2(&twin.identity.community_id)?
632        .ok_or("migration twin missing after birth refound")?;
633
634    // Phase 2 — seal `m` + publish the carrier dissolution on v1 (idempotent: a re-run
635    // re-seals fresh key material under the same root and re-publishes; members dedup).
636    if resume_phase < PHASE_CARRIER_PUBLISHED {
637        emit_migration_progress("Publishing the upgrade for all members...", 75);
638        let jm = super::v2::service::twin_join_material(&twin);
639        let m = seal_m(
640            v1.server_root_key.as_bytes(),
641            &serde_json::to_vec(&jm).map_err(|e| e.to_string())?,
642        )?;
643        let signpost = MigrationSignpost {
644            v2_community_id: v2_hex.clone(),
645            owner_xonly: owner_hex.clone(),
646            owner_salt: crate::simd::hex::bytes_to_hex_32(&twin.identity.owner_salt),
647            relays: twin.relays.clone(),
648            name: v1.name.clone(),
649            primary_channel: v1.channels.first().map(|c| c.id.to_hex()).unwrap_or_default(),
650            root_epoch: v1.server_root_epoch.0,
651        };
652        let content = build_migration_content(&signpost, Some(m))?;
653        super::service::publish_migration_carrier(transport, v1, &content).await?;
654        if !session.is_valid() {
655            return Err("account changed during carrier publish".to_string());
656        }
657        crate::db::community::set_migration_ledger(&v1_cid, &v2_hex, PHASE_CARRIER_PUBLISHED, "")?;
658    }
659
660    // Phase 3 — the owner's own local flip: re-parent channel rows + stamp the fence. The
661    // v2 community ROW already exists (create_migration_twin saved it); NO save_community_v2
662    // here — with a channel-less reloaded twin it would PRUNE the just-re-parented rows.
663    // Under the twin's follow lock: a concurrent follow-worker save from a pre-flip
664    // (channel-less) load would prune the rows this txn re-parents.
665    // Straddle the whole wizard's network I/O with the entry guard before the DB write, so
666    // a mid-wizard account swap can't land the flip + ledger row in the wrong account's DB.
667    // `twin` is intentionally not re-saved here (see the fence contract below).
668    emit_migration_progress("Switching you over...", 92);
669    {
670        // Scoped to the flip transaction alone: the follow lock must never be held across
671        // network I/O (the list republish below awaits).
672        let flock = super::v2::realtime::follow_lock(&twin.identity.community_id);
673        let _fguard = flock.lock().await;
674        if !session.is_valid() {
675            return Err("account changed during migration".to_string());
676        }
677        crate::db::community::reparent_channels_and_fence(&v1_cid, &v2_hex)?;
678        crate::db::community::set_migration_ledger(&v1_cid, &v2_hex, PHASE_FLIPPED, "")?;
679    }
680
681    // Record the twin in the cross-device community list, the same step `create_community`
682    // takes for a normal v2 community. Sibling devices usually discover the twin by folding
683    // the carrier themselves, but one that no longer holds the v1 community has no carrier to
684    // fold and the list is its only route. Runs AFTER the flip so the list never advertises a
685    // half-built twin (pre-refound it is epoch 0 with no snapshot). Best-effort.
686    // Durable like every other membership record: a twin whose list entry never lands is
687    // the same stranded-behind-a-tombstone hazard as a failed join.
688    match super::v2::service::republish_community_list(transport, Some(&twin.identity.community_id)).await {
689        Ok(true) => {}
690        _ => super::v2::service::republish_community_list_durable(Some(twin.identity.community_id)),
691    }
692    // Stamp the owner's OWN chats as v2 + notify the UI — the wizard doesn't fold its own
693    // carrier, so without this the owner's client would show the stale v1 row until a
694    // later fold/boot. Same finalize the member path uses (idempotent if a self-fold beat us).
695    spawn_finalize_migration(v1_cid, v2_hex.clone());
696    Ok(v2_hex)
697}
698
699/// Post-flip finalize: stamp the stitched chats as the v2 community (name/metadata,
700/// `proto_version` → 2 monotonic, dissolved=false — the ROOM is alive on v2 even though the
701/// v1 row is sealed) and tell the UI. Spawned (SessionGuard captured BEFORE the spawn, per
702/// the multi-account contract) so no caller's lock context can deadlock the STATE lock.
703pub fn spawn_finalize_migration(v1_cid: String, v2_hex: String) {
704    let session = SessionGuard::capture();
705    tokio::spawn(async move {
706        let v2_id = CommunityId(crate::simd::hex::hex_to_bytes_32(&v2_hex));
707        let Ok(Some(twin)) = crate::db::community::load_community_v2(&v2_id) else { return };
708        if !session.is_valid() {
709            return;
710        }
711        crate::register_v2_chats_inner(&twin, &session).await;
712        // Subscribe to the v2 twin's realtime planes — the flip re-pointed the DB but a
713        // migrating MEMBER was never live-listening on the new community, so the owner's
714        // subsequent messages wouldn't arrive (they can still SEND — that path is stateless).
715        // Idempotent for the owner (already following the twin they created). Mirrors the
716        // normal v2-join tail (enqueue_follow + refresh_subscription).
717        super::v2::realtime::enqueue_follow(&twin.identity.community_id);
718        if let Some(client) = crate::state::nostr_client() {
719            super::v2::realtime::refresh_subscription(&client).await;
720        }
721        crate::emit_event(
722            "community_migrated",
723            &serde_json::json!({ "v1_community_id": v1_cid, "v2_community_id": v2_hex }),
724        );
725    });
726}
727
728/// Boot / account-swap maintenance: (1) re-drive every held pointer whose flip hasn't
729/// landed (crash recovery, stale-root retry, unopenable-`m` retry — `drive_migration` is
730/// idempotent and its held-v2 dedup makes the "joined but never flipped" crash a pure
731/// flip on re-run); (2) probe every sealed pointer-less community for a payload the client
732/// missed (the upgrade-lag sweep). Call at boot and after an account swap.
733pub async fn run_migration_maintenance<T: Transport + ?Sized>(transport: &T) -> Vec<String> {
734    let session = SessionGuard::capture();
735    let mut flipped = Vec::new();
736    for cid in crate::db::community::migration_flip_candidates().unwrap_or_default() {
737        // The candidate list was pre-fetched: after a swap it describes the WRONG account.
738        if !session.is_valid() {
739            return flipped;
740        }
741        let Ok(Some(community)) = crate::db::community::load_community(&CommunityId(
742            crate::simd::hex::hex_to_bytes_32(&cid),
743        )) else {
744            continue;
745        };
746        match drive_migration(transport, &community).await {
747            Ok(Some(v2)) => {
748                spawn_finalize_migration(cid, v2.clone());
749                flipped.push(v2);
750            }
751            Ok(None) => {}
752            Err(e) => crate::log_warn!("migration retry for {cid}: {e}"),
753        }
754    }
755    flipped.extend(sweep_dissolved_for_migration(transport).await);
756    flipped
757}
758
759/// Boot / account-swap sweep: for every pointer-less, unchecked v1 community — **sealed or
760/// not** — re-probe the rotation-stable dissolved coordinate. Extract + persist any migration
761/// payload and drive the flip; a plain `{}` dissolution is marked checked so it is never
762/// re-probed.
763///
764/// Unsealed candidates matter most. Sealing happens inside the control fold, which the boot
765/// control probe can veto indefinitely: that probe is `since`-windowed over the CONTROL plane
766/// while the authoritative tombstone lives at the DISSOLVED coordinate, so once the cursor
767/// passes it a migrated-away community reads as quiet forever and never seals. Probing only
768/// sealed rows made that state unreachable by every recovery path at once — the community sat
769/// on v1 permanently while its v2 twin, adopted from the Community List, stayed empty (the
770/// stitched channel id is already owned by the unsealed v1 row).
771pub async fn sweep_dissolved_for_migration<T: Transport + ?Sized>(transport: &T) -> Vec<String> {
772    let session = SessionGuard::capture();
773    let mut flipped = Vec::new();
774    let candidates = crate::db::community::migration_sweep_candidates().unwrap_or_default();
775    for cid in candidates {
776        // Pre-fetched candidates + a network probe per iteration: re-check the session both
777        // before each community and again between the probe and any write, so a mid-sweep
778        // swap can't persist pointers/checked markers into the new account's rows.
779        if !session.is_valid() {
780            return flipped;
781        }
782        let Ok(Some(community)) = crate::db::community::load_community(&CommunityId(
783            crate::simd::hex::hex_to_bytes_32(&cid),
784        )) else {
785            continue;
786        };
787        let Some(owner) = super::service::proven_owner_hex(&community) else {
788            let _ = crate::db::community::set_migration_checked(&cid);
789            continue;
790        };
791        let records = super::service::dissolved_tombstone_records(transport, &community).await;
792        if !session.is_valid() {
793            return flipped;
794        }
795        match select_pointer(&records, &owner) {
796            Some((_, raw)) => {
797                let _ = crate::db::community::set_migration_pointer(&cid, &raw);
798                // Re-load so `server_root_epoch` etc. reflect any prior catch-up.
799                if let Ok(Some(fresh)) = crate::db::community::load_community(&community.id) {
800                    if let Ok(Some(v2)) = drive_migration(transport, &fresh).await {
801                        spawn_finalize_migration(cid.clone(), v2.clone());
802                        flipped.push(v2);
803                    }
804                }
805            }
806            None => {
807                // Plain dissolution vs relay-miss vs stranger-only records. Mark checked
808                // (stop re-probing) ONLY when the OWNER's own tombstone is present but carries
809                // no payload — a genuine plain dissolution. A non-owner tombstone is
810                // member-mintable, so a partial-relay probe returning only a stranger's record
811                // must NOT converge the sweep (a real owner carrier could still be unfetched).
812                let owner_sealed = records.iter().any(|d| d.author.to_hex() == owner);
813                if owner_sealed {
814                    let _ = crate::db::community::set_migration_checked(&cid);
815                }
816            }
817        }
818    }
819    flipped
820}
821
822#[cfg(test)]
823mod tests {
824    use super::*;
825    use crate::community::{roster, CommunityId};
826    use nostr_sdk::prelude::*;
827
828    /// `v1_snapshot_members` seeds v1's authoritative memberlist: the owner and a roster
829    /// admin are seeded (the DB re-asserts them), a banned member never is. Uses the DB source
830    /// of truth so the v2 seed can't diverge from what v1 shows.
831    #[test]
832    fn snapshot_member_set_is_v1_memberlist_minus_banned() {
833        let _g = crate::db::DB_TEST_GUARD.lock().unwrap_or_else(|e| e.into_inner());
834        crate::db::close_database();
835        crate::db::clear_id_caches();
836        let acct = Keys::generate().public_key().to_bech32().unwrap();
837        let tmp = tempfile::tempdir().unwrap();
838        std::fs::create_dir_all(tmp.path().join(&acct)).unwrap();
839        crate::db::set_app_data_dir(tmp.path().to_path_buf());
840        crate::db::set_current_account(acct.clone()).unwrap();
841        crate::db::init_database(&acct).unwrap();
842
843        let owner = Keys::generate();
844        let admin = Keys::generate();
845        let banned = Keys::generate();
846
847        let mut c = crate::community::Community::create("HQ", "general", vec![]);
848        let cid = c.id.to_hex();
849        {
850            c.owner_attestation = Some(crate::community::owner::build_owner_attestation_unsigned(owner.public_key(), &cid)
851                .finalize(&owner).unwrap().as_json());
852        }
853        crate::db::community::save_community(&c).unwrap();
854        crate::db::community::set_community_banlist(&cid, &[banned.public_key().to_hex()], 1).unwrap();
855        use crate::community::roles::{CommunityRoles, MemberGrant, Role};
856        let role = Role::admin("aa".repeat(32));
857        crate::db::community::set_community_roles(&cid, &CommunityRoles {
858            roles: vec![role.clone()],
859            grants: vec![
860                MemberGrant { member: admin.public_key().to_hex(), role_ids: vec![role.role_id.clone()] },
861                // A banned member with a stale grant must still be excluded.
862                MemberGrant { member: banned.public_key().to_hex(), role_ids: vec![role.role_id] },
863            ],
864        }, 1).unwrap();
865
866        let members = v1_snapshot_members(&cid, &owner.public_key().to_hex());
867        let has = |k: &Keys| members.iter().any(|m| *m == k.public_key());
868        assert!(has(&owner), "owner is always seeded");
869        assert!(has(&admin), "a roster admin is seeded (re-asserted by v1's memberlist)");
870        assert!(!has(&banned), "a banned member is never seeded, even with a stale grant");
871
872        crate::db::close_database();
873    }
874
875    /// The drive-in-flight claim is exclusive: a second claim on the same cid is refused
876    /// while the first is held, released on drop so a later drive can proceed, and
877    /// per-cid independent. This claim is what serializes the wizard against the owner's
878    /// own carrier self-fold, and boot maintenance against a live fold.
879    #[test]
880    fn drive_claim_is_exclusive_and_releases_on_drop() {
881        // DRIVE_INFLIGHT is process-global: serialize against every other session/DB test.
882        let _g = crate::db::DB_TEST_GUARD.lock().unwrap_or_else(|e| e.into_inner());
883        clear_drive_inflight();
884        let cid = "ab".repeat(32);
885        let other = "cd".repeat(32);
886
887        let first = DriveClaim::take(&cid).expect("a free cid claims");
888        assert!(DriveClaim::take(&cid).is_none(), "a second claim on the same cid is refused");
889        let _independent = DriveClaim::take(&other).expect("a different cid claims freely");
890
891        drop(first);
892        let reclaimed = DriveClaim::take(&cid).expect("drop releases the claim for a later drive");
893        assert!(DriveClaim::take(&other).is_none(), "the other cid is still independently held");
894
895        drop(reclaimed);
896        clear_drive_inflight();
897    }
898
899    /// Drop is generation-aware. An account swap clears the set, so a stale drive still
900    /// unwinding must NOT remove the claim the NEW account's drive just inserted for the
901    /// same cid — that would let a second same-generation drive run concurrently and
902    /// re-open the channel-less-save prune race the claim exists to prevent.
903    #[test]
904    fn drive_claim_drop_is_generation_aware() {
905        // Bumps the global session generation — hold the suite guard so no concurrent test
906        // sees its own SessionGuard spuriously invalidated.
907        let _g = crate::db::DB_TEST_GUARD.lock().unwrap_or_else(|e| e.into_inner());
908        clear_drive_inflight();
909        let cid = "ef".repeat(32);
910
911        let stale = DriveClaim::take(&cid).expect("old account's drive claims");
912        // The swap: generation advances and the set is cleared (production `swap_session`).
913        crate::state::bump_session_generation();
914        clear_drive_inflight();
915        let fresh = DriveClaim::take(&cid).expect("the new account's drive claims the same cid");
916
917        // The old drive finally unwinds. Its Drop must decline to touch the live claim.
918        drop(stale);
919        assert!(
920            DriveClaim::take(&cid).is_none(),
921            "a stale generation's Drop must not release the current account's claim"
922        );
923
924        // The current claim still releases normally.
925        drop(fresh);
926        assert!(DriveClaim::take(&cid).is_some(), "a valid-generation Drop releases");
927        clear_drive_inflight();
928    }
929
930    /// The state ladder, priority-ordered. The load-bearing case is the SELF-SEAL WINDOW:
931    /// the owner's own carrier fold sets dissolved=1 while the ledger still says the flip is
932    /// pending. A dissolved-first ladder hides the row entirely and strands the owner in the
933    /// one state the resumable wizard was built to recover from.
934    #[test]
935    fn migration_state_ladder_is_priority_ordered() {
936        // migrated is terminal and outranks everything, including a stale ledger row.
937        assert_eq!(migration_state(true, 0, false, true, true), "migrated");
938        assert_eq!(migration_state(true, PHASE_CARRIER_PUBLISHED, true, true, true), "migrated");
939
940        // THE SELF-SEAL WINDOW: sealed v1 + pending ledger + owner ⇒ Resume, never "dissolved".
941        assert_eq!(
942            migration_state(false, PHASE_CARRIER_PUBLISHED, true, true, true),
943            "in_progress",
944            "an owner mid-migration must be offered Resume even though their carrier sealed v1"
945        );
946        assert!(
947            migration_eligible(false, PHASE_CARRIER_PUBLISHED, true, true),
948            "the sealed-but-resumable community stays eligible so the command isn't refused"
949        );
950
951        // A plain dissolution (no ledger) is terminal for the row.
952        assert_eq!(migration_state(false, 0, true, true, true), "dissolved");
953        assert!(!migration_eligible(false, 0, true, true), "a plainly dissolved community is not migratable");
954
955        // A MEMBER never sees an in-progress row: ledger rows only exist on the wizard's own
956        // account, and the is_owner bind makes that structural rather than incidental.
957        assert_eq!(migration_state(false, PHASE_TWIN_MINTED, false, false, true), "not_owner");
958        assert!(!migration_eligible(false, PHASE_TWIN_MINTED, false, false));
959
960        // Owner, clean community: the timelock decides.
961        assert_eq!(migration_state(false, 0, false, true, true), "ready");
962        assert_eq!(migration_state(false, 0, false, true, false), "locked");
963        assert!(migration_eligible(false, 0, false, true), "eligibility is the ownership+fence question, not the clock");
964    }
965
966    /// The timelock is a real gate on the wizard, not just a UI hint: the boundary second
967    /// flips it, and every earlier instant is locked.
968    #[test]
969    fn wizard_timelock_boundary() {
970        assert!(!wizard_unlocked(0));
971        assert!(!wizard_unlocked(MIGRATION_UNLOCK_AT - 1));
972        assert!(wizard_unlocked(MIGRATION_UNLOCK_AT), "unlocks exactly at the boundary");
973        assert!(wizard_unlocked(MIGRATION_UNLOCK_AT + 86_400));
974    }
975
976    fn signpost() -> MigrationSignpost {
977        MigrationSignpost {
978            v2_community_id: "aa".repeat(32),
979            owner_xonly: "bb".repeat(32),
980            owner_salt: "cc".repeat(32),
981            relays: vec!["wss://relay.example.com".into()],
982            name: "Team Rocket".into(),
983            primary_channel: "dd".repeat(32),
984            root_epoch: 3,
985        }
986    }
987
988    #[test]
989    fn payload_roundtrip() {
990        let content = build_migration_content(&signpost(), Some("bTEyMw==".into())).unwrap();
991        let p = parse_migration_payload(&content).unwrap();
992        assert_eq!(p.signpost, signpost());
993        assert_eq!(p.m.as_deref(), Some("bTEyMw=="));
994    }
995
996    #[test]
997    fn plain_dissolution_is_no_payload() {
998        assert!(parse_migration_payload("{}").is_none());
999        assert!(parse_migration_payload("").is_none());
1000        assert!(parse_migration_payload("not json at all").is_none());
1001    }
1002
1003    #[test]
1004    fn bad_hex_rejected() {
1005        for field in ["v2_community_id", "owner_xonly", "owner_salt", "primary_channel"] {
1006            let mut sp = signpost();
1007            match field {
1008                "v2_community_id" => sp.v2_community_id = "zz".repeat(32),
1009                "owner_xonly" => sp.owner_xonly = "short".into(),
1010                "owner_salt" => sp.owner_salt = String::new(),
1011                _ => sp.primary_channel = "gg".repeat(32),
1012            }
1013            let content = build_migration_content(&sp, None).unwrap();
1014            assert!(parse_migration_payload(&content).is_none(), "field {field} accepted");
1015        }
1016    }
1017
1018    #[test]
1019    fn bounds_enforced() {
1020        // Oversized m → the whole payload is malformed (fail-safe: plain dissolution).
1021        let content = build_migration_content(&signpost(), Some("A".repeat(MAX_M_B64 + 1))).unwrap();
1022        assert!(parse_migration_payload(&content).is_none());
1023        // Oversized content string → None before any parse.
1024        assert!(parse_migration_payload(&"x".repeat(MAX_PAYLOAD_CONTENT + 1)).is_none());
1025        // Hostile relay list degrades by truncation, never amplifies.
1026        let mut sp = signpost();
1027        sp.relays = (0..40).map(|i| format!("wss://r{i}.example.com")).collect();
1028        sp.name = "n".repeat(500);
1029        let p = parse_migration_payload(&build_migration_content(&sp, None).unwrap()).unwrap();
1030        assert_eq!(p.signpost.relays.len(), crate::community::MAX_COMMUNITY_RELAYS);
1031        assert_eq!(p.signpost.name.chars().count(), MAX_SIGNPOST_NAME);
1032    }
1033
1034    #[test]
1035    fn m_seal_open_multi_root() {
1036        let old_root = [7u8; 32];
1037        let new_root = [8u8; 32];
1038        let sealed = seal_m(&old_root, b"join material").unwrap();
1039        // Newest-first try still finds the older archived root.
1040        let held = vec![(1u64, old_root), (2u64, new_root)];
1041        assert_eq!(open_m(&held, &sealed).unwrap(), b"join material");
1042        // No held root opens it → None (the read-cut member's experience).
1043        assert!(open_m(&[(2u64, new_root)], &sealed).is_none());
1044    }
1045
1046    #[test]
1047    fn seal_errors_past_nip44_cap() {
1048        assert!(seal_m(&[1u8; 32], &vec![0u8; 70_000]).is_err());
1049    }
1050
1051    /// v0.4.0-ACCEPTANCE PIN (the retrofit-certainty condition): an extended tombstone must
1052    /// be accepted as a PLAIN dissolution by the exact shipped code paths — signer extracted
1053    /// at the probe, collected by the fold, content untouched — with a fat payload aboard.
1054    #[test]
1055    fn v040_accepts_extended_tombstone_as_plain_dissolution() {
1056        let owner = Keys::generate();
1057        let cid = CommunityId([0x42u8; 32]);
1058        // ~10 KB of key material — a realistic large community.
1059        let m = Some(base64_simd::STANDARD.encode_to_string(vec![0xabu8; 7_500]));
1060        let content = build_migration_content(&signpost(), m).unwrap();
1061        let inner = roster::build_group_dissolved_edition_with_content(&owner, &cid, 1_753_000_000, &content).unwrap();
1062
1063        // Probe path (dissolved coordinate, id-derived envelope) — v0.4.0's cross-epoch open.
1064        let outer = roster::seal_dissolved_edition(&Keys::generate(), &inner, &cid).unwrap();
1065        let signer = roster::dissolved_tombstone_signer(&outer, &cid).expect("v0.4.0 probe must accept");
1066        assert_eq!(signer, owner.public_key());
1067
1068        // Fold path — dissolved_by (the v0.4.0 seal signal) collects the owner, and the
1069        // v0.4.1 extension carries the content verbatim.
1070        let folded = roster::fold_roster(&[inner.clone()], &cid, &std::collections::HashMap::new());
1071        assert!(folded.dissolved_by.contains(&owner.public_key()));
1072        let rec = folded.dissolved_editions.iter().find(|d| d.author == owner.public_key()).unwrap();
1073        assert_eq!(rec.content, content);
1074
1075        // And the payload-aware probe extracts the same record.
1076        let opened = roster::dissolved_tombstone_open(&outer, &cid).unwrap();
1077        assert_eq!(opened.content, content);
1078        assert_eq!(opened.author, owner.public_key());
1079    }
1080
1081    /// pin: a NEWER payload-less `{}` tombstone seals but never shadows the keys.
1082    #[test]
1083    fn payloadless_never_shadows_the_pointer() {
1084        let owner = Keys::generate();
1085        let stranger = Keys::generate();
1086        let cid = CommunityId([0x24u8; 32]);
1087        let content = build_migration_content(&signpost(), Some("bTEyMw==".into())).unwrap();
1088        let with_payload = roster::build_group_dissolved_edition_with_content(&owner, &cid, 100, &content).unwrap();
1089        let plain_newer = roster::build_group_dissolved_edition(&owner, &cid, 200).unwrap();
1090        let forged = roster::build_group_dissolved_edition_with_content(&stranger, &cid, 300, &content).unwrap();
1091
1092        let folded = roster::fold_roster(&[plain_newer, with_payload, forged], &cid, &std::collections::HashMap::new());
1093        let (p, raw) = select_pointer(&folded.dissolved_editions, &owner.public_key().to_hex()).expect("payload survives");
1094        assert_eq!(p.m.as_deref(), Some("bTEyMw=="));
1095        assert_eq!(parse_migration_payload(&raw).unwrap(), p);
1096        // A stranger's payload alone is never selected.
1097        assert!(select_pointer(&folded.dissolved_editions, &Keys::generate().public_key().to_hex()).is_none());
1098    }
1099
1100    #[test]
1101    fn newest_payload_carrier_wins_with_id_tiebreak() {
1102        let owner = Keys::generate();
1103        let cid = CommunityId([0x33u8; 32]);
1104        let mut sp_old = signpost();
1105        sp_old.name = "old".into();
1106        let mut sp_new = signpost();
1107        sp_new.name = "new".into();
1108        let a = roster::build_group_dissolved_edition_with_content(
1109            &owner, &cid, 100, &build_migration_content(&sp_old, None).unwrap()).unwrap();
1110        let b = roster::build_group_dissolved_edition_with_content(
1111            &owner, &cid, 200, &build_migration_content(&sp_new, None).unwrap()).unwrap();
1112        let folded = roster::fold_roster(&[a, b], &cid, &std::collections::HashMap::new());
1113        let (p, _) = select_pointer(&folded.dissolved_editions, &owner.public_key().to_hex()).unwrap();
1114        assert_eq!(p.signpost.name, "new");
1115    }
1116}