mirror of
https://github.com/permissionlesstech/bitchat.git
synced 2026-07-26 03:25:20 +00:00
* Unified notices: merge board pins and location notes into one sheet One pin icon in the header now opens a single Notices sheet with a geo/mesh scope toggle, replacing the separate board, location-notes, and mesh-only note buttons: - geo tab: current geohash's notices — mesh-synced board posts merged and deduped with Nostr kind-1 location notes, with per-item mesh/net source badges. Scope follows the selected location channel, or the device's building geohash when chatting on mesh. - mesh tab: mesh-local board only (fully offline). - One composer: geo posts go to the board and bridge to Nostr (existing bridge), so mesh and internet see the same notice. - Merged delete: tombstoning an own board post now also retracts the bridged Nostr copy via NIP-09 (new createDeleteEvent, bridged event ids tracked in BoardManager); own Nostr-only notes are deletable too. - LocationNotesManager accepts any channel-precision geohash (1-12 chars), not just building-level. BoardView and LocationNotesView are superseded by NoticesView. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * Notices round 2: honest composer, friendlier copy, new-pin chat alerts - Urgent + expiry controls now appear on the mesh tab only: the bridged Nostr copy of a geo post carries neither, so relay-side readers would never see them. Geo posts default to non-urgent with 7-day expiry, and the bridged note now gets a NIP-40 expiration tag so honoring relays drop it in step with the board copy. - Geo tab explainer reuses the original location-notes description (keeps its 29 existing translations); mesh tab gets a new plain- language description. - New-pin chat alerts, fully local (no wire traffic): BoardStore fires postArrivals for posts newly accepted from the wire; BoardAlertsModel filters own posts, dedups by postID, and for urgent pins created within the last 30 minutes emits one system line into the matching timeline (geo pin -> that geohash's chat, mesh pin -> mesh chat), collapsing simultaneous arrivals into a count line. - Routine pins light up the header: the pin icon tints orange whenever the current scope has notices at all, and fills (pin.fill) while unseen new pins are waiting; opening the sheet clears them. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * i18n: translate the unified-notices strings into all 28 non-English locales Adds the 13 new notices keys (sheet title, geo/mesh tabs, mesh description, source badges, urgent alert lines, button tooltip and accessibility strings) to the string catalog with translations for every locale the app ships. The geo tab already reuses the fully translated location_notes.description; this covers the rest. Insertion preserves the catalog's case-insensitive key order, so the diff is purely additive. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * Address Codex review: panic-wipe reset, scoped badge clear, geohash-aware dedupe - BoardStore.wipe() now emits didWipe; BoardAlertsModel subscribes and resets, so a panic wipe drops pending urgent lines (which could otherwise re-append pre-wipe content into chat after the collapse flush), unseen badge scopes, and handled-post history. - Opening the notices sheet clears unseen badges only for the scopes it actually shows (mesh + current geo scope); pins for other geohash channels keep their badge until visited. - LocationNotesManager.Note now retains the matched g tag, and the bridged-copy dedupe requires the note's geohash to equal the board post's — a same-text note from a neighboring cell is no longer swallowed as a duplicate. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> --------- Co-authored-by: jack <jackjackbits@users.noreply.github.com> Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
198 lines
8.1 KiB
Swift
198 lines
8.1 KiB
Swift
//
|
|
// BoardManager.swift
|
|
// bitchat
|
|
//
|
|
// This is free and unencumbered software released into the public domain.
|
|
// For more information, see <https://unlicense.org>
|
|
//
|
|
|
|
import BitLogger
|
|
import Combine
|
|
import Foundation
|
|
|
|
/// UI-facing coordinator for the bulletin board: builds and signs posts and
|
|
/// tombstones with the device's Noise signing key, hands them to the mesh
|
|
/// transport, and mirrors the store's live posts for SwiftUI.
|
|
@MainActor
|
|
final class BoardManager: ObservableObject {
|
|
/// Live posts across all boards, newest state from the store.
|
|
@Published private(set) var posts: [BoardPostPacket] = []
|
|
|
|
private let transport: Transport
|
|
private let store: BoardStore
|
|
/// Publishes a bridged kind-1 note (expiring with the board post via
|
|
/// NIP-40) and returns its Nostr event id, or nil when bridging failed or
|
|
/// was skipped.
|
|
private let publishToNostr: (_ content: String, _ geohash: String, _ nickname: String, _ expiresAtMs: UInt64) -> String?
|
|
/// Requests NIP-09 deletion of a previously bridged note.
|
|
private let deleteFromNostr: (_ eventID: String, _ geohash: String) -> Void
|
|
/// Bridged Nostr event ids by postID, for merged deletes. In-memory only:
|
|
/// after a relaunch a delete still tombstones the board copy, but the
|
|
/// Nostr copy is left to expire with relay retention.
|
|
private var bridgedEventIDs: [Data: String] = [:]
|
|
private var cancellable: AnyCancellable?
|
|
|
|
init(
|
|
transport: Transport,
|
|
store: BoardStore = .shared,
|
|
publishToNostr: ((String, String, String, UInt64) -> String?)? = nil,
|
|
deleteFromNostr: ((String, String) -> Void)? = nil
|
|
) {
|
|
self.transport = transport
|
|
self.store = store
|
|
self.publishToNostr = publishToNostr ?? Self.livePublishToNostr
|
|
self.deleteFromNostr = deleteFromNostr ?? Self.liveDeleteFromNostr
|
|
cancellable = store.$postsSnapshot
|
|
.receive(on: DispatchQueue.main)
|
|
.sink { [weak self] snapshot in
|
|
self?.posts = snapshot
|
|
}
|
|
}
|
|
|
|
/// Posts for one board context, urgent first, then newest first.
|
|
func posts(forGeohash geohash: String) -> [BoardPostPacket] {
|
|
posts
|
|
.filter { $0.geohash == geohash }
|
|
.sorted {
|
|
if $0.isUrgent != $1.isUrgent { return $0.isUrgent }
|
|
return $0.createdAt > $1.createdAt
|
|
}
|
|
}
|
|
|
|
func isOwnPost(_ post: BoardPostPacket) -> Bool {
|
|
let key = transport.noiseSigningPublicKeyData()
|
|
return !key.isEmpty && key == post.authorSigningKey
|
|
}
|
|
|
|
/// Creates, signs, and broadcasts a board post. Returns false when the
|
|
/// content is empty/oversized or signing fails.
|
|
@discardableResult
|
|
func createPost(
|
|
content: String,
|
|
geohash: String,
|
|
urgent: Bool,
|
|
expiryDays: Int,
|
|
nickname: String
|
|
) -> Bool {
|
|
guard let trimmed = content.trimmedOrNilIfEmpty,
|
|
trimmed.utf8.count <= BoardWireConstants.contentMaxBytes else {
|
|
return false
|
|
}
|
|
let signingKey = transport.noiseSigningPublicKeyData()
|
|
guard signingKey.count == BoardWireConstants.signingKeyLength else { return false }
|
|
|
|
var cleanNickname = nickname
|
|
while cleanNickname.utf8.count > BoardWireConstants.nicknameMaxBytes {
|
|
cleanNickname.removeLast()
|
|
}
|
|
let createdAt = UInt64(Date().timeIntervalSince1970 * 1000)
|
|
let lifetimeMs = min(
|
|
UInt64(max(1, expiryDays)) * 24 * 60 * 60 * 1000,
|
|
BoardWireConstants.maxLifetimeMs
|
|
)
|
|
let expiresAt = createdAt + lifetimeMs
|
|
let flags: UInt8 = urgent ? BoardPostPacket.urgentFlag : 0
|
|
var postID = Data(count: BoardWireConstants.postIDLength)
|
|
let status = postID.withUnsafeMutableBytes { buffer -> Int32 in
|
|
guard let base = buffer.baseAddress else { return -1 }
|
|
return SecRandomCopyBytes(kSecRandomDefault, buffer.count, base)
|
|
}
|
|
guard status == errSecSuccess else { return false }
|
|
|
|
let signingBytes = BoardPostPacket.signingBytes(
|
|
postID: postID,
|
|
geohash: geohash,
|
|
content: trimmed,
|
|
authorSigningKey: signingKey,
|
|
authorNickname: cleanNickname,
|
|
createdAt: createdAt,
|
|
expiresAt: expiresAt,
|
|
flags: flags
|
|
)
|
|
guard let signature = transport.noiseSignData(signingBytes) else {
|
|
SecureLogger.error("Board: failed to sign post", category: .session)
|
|
return false
|
|
}
|
|
let post = BoardPostPacket(
|
|
postID: postID,
|
|
geohash: geohash,
|
|
content: trimmed,
|
|
authorSigningKey: signingKey,
|
|
authorNickname: cleanNickname,
|
|
createdAt: createdAt,
|
|
expiresAt: expiresAt,
|
|
flags: flags,
|
|
signature: signature
|
|
)
|
|
transport.sendBoardPayload(BoardWire.post(post).encode())
|
|
|
|
// Nostr bridge: geohash posts also go out as kind-1 location notes so
|
|
// online users see them. Remember the event id for merged deletes.
|
|
if !geohash.isEmpty, let eventID = publishToNostr(trimmed, geohash, cleanNickname, expiresAt) {
|
|
bridgedEventIDs[postID] = eventID
|
|
}
|
|
return true
|
|
}
|
|
|
|
/// Signs and broadcasts a tombstone for one of our own posts.
|
|
@discardableResult
|
|
func deletePost(_ post: BoardPostPacket) -> Bool {
|
|
guard isOwnPost(post) else { return false }
|
|
let deletedAt = UInt64(Date().timeIntervalSince1970 * 1000)
|
|
let signingBytes = BoardTombstonePacket.signingBytes(postID: post.postID, deletedAt: deletedAt)
|
|
guard let signature = transport.noiseSignData(signingBytes) else {
|
|
SecureLogger.error("Board: failed to sign tombstone", category: .session)
|
|
return false
|
|
}
|
|
let tombstone = BoardTombstonePacket(
|
|
postID: post.postID,
|
|
authorSigningKey: post.authorSigningKey,
|
|
deletedAt: deletedAt,
|
|
signature: signature
|
|
)
|
|
transport.sendBoardPayload(BoardWire.tombstone(tombstone).encode())
|
|
|
|
// Merged delete: also retract the bridged Nostr copy when we still
|
|
// know its event id.
|
|
if !post.geohash.isEmpty, let eventID = bridgedEventIDs.removeValue(forKey: post.postID) {
|
|
deleteFromNostr(eventID, post.geohash)
|
|
}
|
|
return true
|
|
}
|
|
|
|
private static func livePublishToNostr(content: String, geohash: String, nickname: String, expiresAtMs: UInt64) -> String? {
|
|
let relays = GeoRelayDirectory.shared.closestRelays(toGeohash: geohash, count: TransportConfig.nostrGeoRelayCount)
|
|
guard !relays.isEmpty else {
|
|
SecureLogger.debug("Board: no geo relays for \(geohash); skipping Nostr bridge", category: .session)
|
|
return nil
|
|
}
|
|
do {
|
|
let identity = try NostrIdentityBridge().deriveIdentity(forGeohash: geohash)
|
|
let event = try NostrProtocol.createGeohashTextNote(
|
|
content: content,
|
|
geohash: geohash,
|
|
senderIdentity: identity,
|
|
nickname: nickname,
|
|
expiresAt: Date(timeIntervalSince1970: TimeInterval(expiresAtMs) / 1000)
|
|
)
|
|
NostrRelayManager.shared.sendEvent(event, to: relays)
|
|
return event.id
|
|
} catch {
|
|
SecureLogger.error("Board: failed to bridge post to Nostr: \(error)", category: .session)
|
|
return nil
|
|
}
|
|
}
|
|
|
|
private static func liveDeleteFromNostr(eventID: String, geohash: String) {
|
|
let relays = GeoRelayDirectory.shared.closestRelays(toGeohash: geohash, count: TransportConfig.nostrGeoRelayCount)
|
|
guard !relays.isEmpty else { return }
|
|
do {
|
|
let identity = try NostrIdentityBridge().deriveIdentity(forGeohash: geohash)
|
|
let deletion = try NostrProtocol.createDeleteEvent(ofEventID: eventID, senderIdentity: identity)
|
|
NostrRelayManager.shared.sendEvent(deletion, to: relays)
|
|
} catch {
|
|
SecureLogger.error("Board: failed to delete bridged Nostr note: \(error)", category: .session)
|
|
}
|
|
}
|
|
}
|