Skip to main content

PubkyHttpClientBuilder

Struct PubkyHttpClientBuilder 

Source
pub struct PubkyHttpClientBuilder { /* private fields */ }
Expand description

Configures a PubkyHttpClient before construction.

Customize timeouts, user-agent, pkarr relays, and (WASM) testnet behavior. Most code obtains this via PubkyHttpClient::builder(), which simply returns PubkyHttpClientBuilder::default().

§Defaults

§Example

use std::time::Duration;
let client = PubkyHttpClient::builder()
    .request_timeout(Duration::from_secs(10))
    .user_agent_extra("myapp/1.2.3")
    .build()?;

You can keep the default Pkarr relays or override them via the builder:

// Start from defaults; you can also supply your own entirely.
let mut b = PubkyHttpClient::builder();
b.pkarr(|p| p.relays(&["https://pkarr.example.net/"]).expect("infallible"));
let _client = b.build()?;

Implementations§

Source§

impl PubkyHttpClientBuilder

Source

pub fn testnet(&mut self) -> &mut Self

Configure this builder to talk to a local Pubky testnet on localhost.

Concretely:

  • DHT bootstrap to the local testnet node at: "localhost:6881"
  • PKARR relay base URL: "http://localhost:15411"
  • WASM builds additionally remember the hostname when resolving _pubky.<pk> targets.
§Examples
use pubky::PubkyHttpClient;

let client = PubkyHttpClient::builder()
    .testnet()
    .build()
    .expect("testnet client");
Source

pub fn testnet_with_host(&mut self, host: &str) -> &mut Self

Configure this builder to talk to a Pubky testnet reachable at a custom host.

Use this when your testnet stack isn’t on localhost (e.g. running in Docker, a remote VM, or LAN machine).

Concretely:

  • DHT bootstrap peer: "<host>:6881" (native only)
  • PKARR relay base: "http://<host>:15411"
  • WASM remembers <host> to adjust URL rewriting for the browser environment.
§Examples
use pubky::PubkyHttpClient;

let client = PubkyHttpClient::builder()
    .testnet_with_host("192.168.1.50") // or "host.docker.internal"
    .build()
    .expect("testnet client");
§Notes
  • These ports come from pubky_common::constants::testnet_ports::{ BOOTSTRAP, PKARR_RELAY }.
  • Ensure your testnet exposes them from that host (and they’re reachable from where this code runs).
§Panics

If the testnet cannot because the given host leads to an invalid relay URL.

Source

pub fn pkarr<F>(&mut self, f: F) -> &mut Self
where F: FnOnce(&mut ClientBuilder) -> &mut ClientBuilder,

Allows mutating the internal pkarr::ClientBuilder with a callback function.

Use this to influence PKARR resolution inputs (relays, bootstrap nodes, timeouts, etc.) before building the client. There are no per-request resolution knobs; configuration is done up front.

§Example
let client = PubkyHttpClient::builder()
    .pkarr(|p| p
        .relays(&["https://pkarr.example.net/"]).expect("infallible")
        .bootstrap(&["dht.node.example:6881"])
    )
    .build()?;
Source

pub const fn request_timeout(&mut self, timeout: Duration) -> &mut Self

Set HTTP requests timeout.

Source

pub fn user_agent_extra<S: Into<String>>(&mut self, extra: S) -> &mut Self

Append an extra user-agent segment after the default pubky.org@<version>. Enables app-level telemetry Example: .user_agent_extra("myapp/1.2.3")

Source

pub fn build(&self) -> Result<PubkyHttpClient, BuildError>

Build a PubkyHttpClient.

§Errors
§Examples
let client = PubkyHttpClient::builder().build()?;

Trait Implementations§

Source§

impl Clone for PubkyHttpClientBuilder

Source§

fn clone(&self) -> PubkyHttpClientBuilder

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for PubkyHttpClientBuilder

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for PubkyHttpClientBuilder

Source§

fn default() -> PubkyHttpClientBuilder

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> CompatExt for T

Source§

fn compat(self) -> Compat<T>

Applies the Compat adapter by value. Read more
Source§

fn compat_ref(&self) -> Compat<&T>

Applies the Compat adapter by shared reference. Read more
Source§

fn compat_mut(&mut self) -> Compat<&mut T>

Applies the Compat adapter by mutable reference. Read more
Source§

impl<T> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more