use super::SnsHostError;
use crate::icrc::ledger::IcrcLedgerError;
use candid::{CandidType, Deserialize, Principal};
use ic_agent::Agent;
impl IcrcLedgerError for SnsHostError {
fn agent_build(endpoint: &str, reason: String) -> Self {
Self::AgentBuild {
endpoint: endpoint.to_string(),
reason,
}
}
fn invalid_principal(field: &'static str, reason: String) -> Self {
Self::InvalidPrincipal { field, reason }
}
fn candid_encode(message: &'static str, reason: String) -> Self {
Self::CandidEncode { message, reason }
}
fn agent_call(method: &'static str, reason: String) -> Self {
Self::AgentCall { method, reason }
}
fn candid_decode(message: &'static str, reason: String) -> Self {
Self::CandidDecode { message, reason }
}
}
pub(super) async fn query_canister<Arg, Response>(
agent: &Agent,
canister: &Principal,
method: &'static str,
request_message: &'static str,
response_message: &'static str,
arg: &Arg,
) -> Result<Response, SnsHostError>
where
Arg: CandidType + Sync,
Response: for<'de> Deserialize<'de> + CandidType,
{
let arg = candid::encode_one(arg).map_err(|err| SnsHostError::CandidEncode {
message: request_message,
reason: err.to_string(),
})?;
let bytes = agent
.query(canister, method)
.with_arg(arg)
.call()
.await
.map_err(|err| SnsHostError::AgentCall {
method,
reason: err.to_string(),
})?;
candid::decode_one(&bytes).map_err(|err| SnsHostError::CandidDecode {
message: response_message,
reason: err.to_string(),
})
}
pub(super) fn sns_agent(endpoint: &str) -> Result<Agent, SnsHostError> {
Agent::builder()
.with_url(endpoint)
.build()
.map_err(|err| SnsHostError::AgentBuild {
endpoint: endpoint.to_string(),
reason: err.to_string(),
})
}
pub(super) fn principal_from_text(
value: &str,
field: &'static str,
) -> Result<Principal, SnsHostError> {
Principal::from_text(value).map_err(|err| SnsHostError::InvalidPrincipal {
field,
reason: err.to_string(),
})
}