use std::collections::HashMap;
use std::str::FromStr;
use std::time::Duration;
use bpstd::hashes::{sha256, Hash};
use bpstd::{BlockHash, ScriptPubkey, Txid};
#[allow(unused_imports)]
use log::{debug, error, info, trace};
use ureq::{Agent, Proxy, Response};
use crate::{BlockStatus, BlockSummary, Builder, Error, OutputStatus, Tx, TxStatus, Utxo};
#[derive(Debug, Clone)]
pub struct BlockingClient {
url: String,
agent: Agent,
}
impl BlockingClient {
pub fn from_builder(builder: Builder) -> Result<Self, Error> {
let mut agent_builder = ureq::AgentBuilder::new();
if let Some(timeout) = builder.timeout {
agent_builder = agent_builder.timeout(Duration::from_secs(timeout));
}
if let Some(proxy) = &builder.proxy {
agent_builder = agent_builder.proxy(Proxy::new(proxy)?);
}
Ok(Self::from_agent(builder.base_url, agent_builder.build()))
}
pub fn from_agent(url: String, agent: Agent) -> Self {
BlockingClient { url, agent }
}
pub fn txid_at_block_index(
&self,
block_hash: &BlockHash,
index: usize,
) -> Result<Option<Txid>, Error> {
let resp = self
.agent
.get(&format!("{}/block/{}/txid/{}", self.url, block_hash, index))
.call();
match resp {
Ok(resp) => Ok(Some(Txid::from_str(&resp.into_string()?)?)),
Err(ureq::Error::Status(code, _)) => {
if is_status_not_found(code) {
return Ok(None);
}
Err(Error::HttpResponse(code))
}
Err(e) => Err(Error::Ureq(e)),
}
}
pub fn tx_status(&self, txid: &Txid) -> Result<TxStatus, Error> {
let resp = self
.agent
.get(&format!("{}/tx/{}/status", self.url, txid))
.call();
match resp {
Ok(resp) => Ok(resp.into_json()?),
Err(ureq::Error::Status(code, _)) => Err(Error::HttpResponse(code)),
Err(e) => Err(Error::Ureq(e)),
}
}
pub fn block_status(&self, block_hash: &BlockHash) -> Result<BlockStatus, Error> {
let resp = self
.agent
.get(&format!("{}/block/{}/status", self.url, block_hash))
.call();
match resp {
Ok(resp) => Ok(resp.into_json()?),
Err(ureq::Error::Status(code, _)) => Err(Error::HttpResponse(code)),
Err(e) => Err(Error::Ureq(e)),
}
}
pub fn output_status(&self, txid: &Txid, index: u64) -> Result<Option<OutputStatus>, Error> {
let resp = self
.agent
.get(&format!("{}/tx/{}/outspend/{}", self.url, txid, index))
.call();
match resp {
Ok(resp) => Ok(Some(resp.into_json()?)),
Err(ureq::Error::Status(code, _)) => {
if is_status_not_found(code) {
return Ok(None);
}
Err(Error::HttpResponse(code))
}
Err(e) => Err(Error::Ureq(e)),
}
}
pub fn height(&self) -> Result<u32, Error> {
let resp = self
.agent
.get(&format!("{}/blocks/tip/height", self.url))
.call();
match resp {
Ok(resp) => Ok(resp.into_string()?.parse()?),
Err(ureq::Error::Status(code, _)) => Err(Error::HttpResponse(code)),
Err(e) => Err(Error::Ureq(e)),
}
}
pub fn tip_hash(&self) -> Result<BlockHash, Error> {
let resp = self
.agent
.get(&format!("{}/blocks/tip/hash", self.url))
.call();
Self::process_block_result(resp)
}
pub fn block_hash(&self, block_height: u32) -> Result<BlockHash, Error> {
let resp = self
.agent
.get(&format!("{}/block-height/{}", self.url, block_height))
.call();
if let Err(ureq::Error::Status(code, _)) = resp {
if is_status_not_found(code) {
return Err(Error::HeaderHeightNotFound(block_height));
}
}
Self::process_block_result(resp)
}
fn process_block_result(response: Result<Response, ureq::Error>) -> Result<BlockHash, Error> {
match response {
Ok(resp) => Ok(BlockHash::from_str(&resp.into_string()?)?),
Err(ureq::Error::Status(code, _)) => Err(Error::HttpResponse(code)),
Err(e) => Err(Error::Ureq(e)),
}
}
pub fn fee_estimates(&self) -> Result<HashMap<String, f64>, Error> {
let resp = self
.agent
.get(&format!("{}/fee-estimates", self.url,))
.call();
let map = match resp {
Ok(resp) => {
let map: HashMap<String, f64> = resp.into_json()?;
Ok(map)
}
Err(ureq::Error::Status(code, _)) => Err(Error::HttpResponse(code)),
Err(e) => Err(Error::Ureq(e)),
}?;
Ok(map)
}
pub fn scripthash_txs(
&self,
script: &ScriptPubkey,
last_seen: Option<Txid>,
) -> Result<Vec<Tx>, Error> {
let script_hash = sha256::Hash::hash(script.as_ref());
let url = match last_seen {
Some(last_seen) => format!(
"{}/scripthash/{:x}/txs/chain/{}",
self.url, script_hash, last_seen
),
None => format!("{}/scripthash/{:x}/txs", self.url, script_hash),
};
Ok(self.agent.get(&url).call()?.into_json()?)
}
pub fn scripthash_utxo(&self, script: &ScriptPubkey) -> Result<Vec<Utxo>, Error> {
let script_hash = sha256::Hash::hash(script.as_ref());
let url = format!("{}/scripthash/{:x}/utxo", self.url, script_hash);
Ok(self.agent.get(&url).call()?.into_json()?)
}
pub fn blocks(&self, height: Option<u32>) -> Result<Vec<BlockSummary>, Error> {
let url = match height {
Some(height) => format!("{}/blocks/{}", self.url, height),
None => format!("{}/blocks", self.url),
};
Ok(self.agent.get(&url).call()?.into_json()?)
}
pub fn url(&self) -> &str {
&self.url
}
pub fn agent(&self) -> &Agent {
&self.agent
}
}
fn is_status_not_found(status: u16) -> bool {
status == 404
}