2026-07-01 09:56:25 +08:00
|
|
|
//! The opinionated Logos client.
|
|
|
|
|
//!
|
2026-07-03 02:17:45 +08:00
|
|
|
//! `LogosChatClient` commits to the Logos service stack so independently built
|
|
|
|
|
//! clients share the same production services instead of each re-deriving them:
|
|
|
|
|
//! a delegate identity, the HTTP keypackage + account registry, encrypted
|
|
|
|
|
//! on-disk storage, and — unlike the generic [`ChatClientBuilder`] — the
|
|
|
|
|
//! logos-delivery transport itself. logos-delivery *is* the transport for the
|
|
|
|
|
//! Logos client, so the caller no longer supplies one; only per-client secrets
|
|
|
|
|
//! (the database path and key) and the network config are passed in.
|
2026-07-01 09:56:25 +08:00
|
|
|
//!
|
2026-07-03 02:17:45 +08:00
|
|
|
//! The logos-delivery transport carries a native dependency, so this whole
|
|
|
|
|
//! module is gated behind the `embedded-p2p-delivery` cargo feature. The registry
|
|
|
|
|
//! endpoint lives in [`crate::config`] instead, so it stays available to other
|
|
|
|
|
//! transports when the feature is off.
|
2026-07-01 09:56:25 +08:00
|
|
|
|
2026-07-03 02:17:45 +08:00
|
|
|
use components::{EmbeddedP2pDeliveryService, HttpRegistry, P2pConfig};
|
2026-07-01 09:56:25 +08:00
|
|
|
use crossbeam_channel::Receiver;
|
|
|
|
|
use libchat::{ChatStorage, StorageConfig};
|
|
|
|
|
|
|
|
|
|
use crate::ChatClientBuilder;
|
|
|
|
|
use crate::client::{ChatClient, Transport};
|
2026-07-03 02:17:45 +08:00
|
|
|
use crate::config::{NETWORK_PRESET, REGISTRY_ENDPOINT};
|
2026-07-01 09:56:25 +08:00
|
|
|
use crate::delegate::DelegateSigner;
|
|
|
|
|
use crate::errors::ClientError;
|
|
|
|
|
use crate::event::Event;
|
|
|
|
|
|
2026-07-03 02:17:45 +08:00
|
|
|
// logos-delivery already implements `DeliveryService`; teaching it the inbound
|
|
|
|
|
// half here (in the crate that owns `Transport`) makes it a full transport, so
|
|
|
|
|
// callers need no wrapper newtype.
|
|
|
|
|
impl Transport for EmbeddedP2pDeliveryService {
|
|
|
|
|
fn inbound(&mut self) -> Receiver<Vec<u8>> {
|
|
|
|
|
self.inbound_queue()
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-07-01 09:56:25 +08:00
|
|
|
|
|
|
|
|
/// A [`ChatClient`] wired to the Logos service stack: a [`DelegateSigner`]
|
|
|
|
|
/// identity, the HTTP keypackage + account registry ([`HttpRegistry`], which is
|
2026-07-03 02:17:45 +08:00
|
|
|
/// both the keypackage store and the account → device directory), encrypted
|
|
|
|
|
/// [`ChatStorage`], and the logos-delivery transport.
|
|
|
|
|
pub type LogosChatClient =
|
|
|
|
|
ChatClient<DelegateSigner, EmbeddedP2pDeliveryService, HttpRegistry, ChatStorage>;
|
2026-07-01 09:56:25 +08:00
|
|
|
|
2026-07-03 02:17:45 +08:00
|
|
|
impl LogosChatClient {
|
|
|
|
|
/// Open a client on the Logos stack, starting a logos-delivery node on
|
|
|
|
|
/// `tcp_port` as its transport and persisting to the encrypted database at
|
|
|
|
|
/// `db_path` unlocked with `db_key`. When `preset`/`registry_url` are `Some`,
|
|
|
|
|
/// they override the baked-in network preset/registry endpoint (e.g. a local
|
|
|
|
|
/// deployment); otherwise the preconfigured values are used.
|
2026-07-01 09:56:25 +08:00
|
|
|
///
|
2026-07-03 02:17:45 +08:00
|
|
|
/// `db_path` is a per-client location, `db_key` is a secret, and `tcp_port`
|
|
|
|
|
/// is a per-client local resource, so all three are caller-supplied — never
|
|
|
|
|
/// baked into the library.
|
2026-07-01 09:56:25 +08:00
|
|
|
pub fn open(
|
|
|
|
|
db_path: impl Into<String>,
|
|
|
|
|
db_key: impl Into<String>,
|
2026-07-03 02:17:45 +08:00
|
|
|
tcp_port: u16,
|
|
|
|
|
preset: Option<&str>,
|
2026-07-01 09:56:25 +08:00
|
|
|
registry_url: Option<&str>,
|
|
|
|
|
) -> Result<(Self, Receiver<Event>), ClientError> {
|
2026-07-03 02:17:45 +08:00
|
|
|
let transport = EmbeddedP2pDeliveryService::start(P2pConfig {
|
|
|
|
|
preset: preset.unwrap_or(NETWORK_PRESET).to_string(),
|
|
|
|
|
tcp_port,
|
|
|
|
|
..Default::default()
|
|
|
|
|
})
|
|
|
|
|
.map_err(|e| ClientError::Transport(e.to_string()))?;
|
|
|
|
|
|
2026-07-01 09:56:25 +08:00
|
|
|
let endpoint = registry_url.unwrap_or(REGISTRY_ENDPOINT);
|
|
|
|
|
ChatClientBuilder::new()
|
|
|
|
|
.ident(DelegateSigner::random())
|
|
|
|
|
.transport(transport)
|
|
|
|
|
.registration(HttpRegistry::new(endpoint))
|
|
|
|
|
.storage_config(StorageConfig::Encrypted {
|
|
|
|
|
path: db_path.into(),
|
|
|
|
|
key: db_key.into(),
|
|
|
|
|
})
|
|
|
|
|
.build()
|
|
|
|
|
}
|
|
|
|
|
}
|