apx_sdk 0.24.0

Minimalistic ActivityPub toolkit
Documentation
//! Agent: responsible for making requests to other nodes.

pub use apx_core::http_signatures::create::HttpSigner;

/// Federation agent parameters
pub struct FederationAgent {
    /// User-Agent string.
    pub user_agent: Option<String>,
    // https://www.w3.org/TR/activitypub/#security-localhost
    pub ssrf_protection_enabled: bool,

    pub response_size_limit: usize,
    pub fetcher_timeout: u64,
    pub deliverer_timeout: u64,

    // Proxy for outgoing requests
    pub proxy_url: Option<String>,
    pub onion_proxy_url: Option<String>,
    pub i2p_proxy_url: Option<String>,

    /// Key for creating HTTP signatures.
    pub signer: Option<HttpSigner>,
    /// Enable RFC-9421 signatures?
    pub rfc9421_enabled: bool,
}

impl Default for FederationAgent {
    fn default() -> Self {
        Self {
            user_agent: None,
            ssrf_protection_enabled: true,
            response_size_limit: 2_000_000,
            fetcher_timeout: 10,
            deliverer_timeout: 10,
            proxy_url: None,
            onion_proxy_url: None,
            i2p_proxy_url: None,
            signer: None,
            rfc9421_enabled: false,
        }
    }
}