ringdrop 0.10.0

P2P streamed file transfer with ring-based access control, built on iroh and bao protocols
Documentation
pub(super) mod blob;
pub(super) mod grant;
pub(super) mod peer;
pub(super) mod receive;
pub(super) mod remote;
pub(super) mod ring;
pub(super) mod tag;

use std::path::PathBuf;

use anyhow::Result;
use iroh_blobs::Hash;
use iroh_rings::{Registry, Ring};
use tokio::sync::mpsc;

use crate::core::Node;
use crate::daemon::protocol::Event;
use crate::util::parse_hash;

pub(super) fn format_ring(ring: &Ring) -> String {
    if ring.is_open() {
        format!("  {} (open — publicly accessible)", ring.as_str())
    } else {
        format!("  {}", ring.as_str())
    }
}

pub(super) async fn send(tx: &mpsc::Sender<Event>, event: Event) {
    let _ = tx.send(event).await;
}

pub(super) async fn resolve_target<R: Registry + Clone + Send + Sync + 'static>(
    node: &Node<R>,
    target: &str,
) -> Result<Hash> {
    let path = PathBuf::from(target);
    if path.exists() {
        let (hash, _) = node.import_path(&path).await?;
        Ok(hash)
    } else {
        parse_hash(target)
    }
}