#[derive(Eq, Hash, Clone, Debug, PartialEq)]
pub struct ApiKey(pub unc_jsonrpc_client::auth::ApiKey);
impl From<ApiKey> for unc_jsonrpc_client::auth::ApiKey {
fn from(api_key: ApiKey) -> Self {
api_key.0
}
}
impl std::fmt::Display for ApiKey {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
write!(f, "{}", self.0.to_str().map_err(|_| std::fmt::Error)?)
}
}
impl std::str::FromStr for ApiKey {
type Err = color_eyre::eyre::Report;
fn from_str(api_key: &str) -> Result<Self, Self::Err> {
Ok(Self(unc_jsonrpc_client::auth::ApiKey::new(api_key)?))
}
}
impl serde::ser::Serialize for ApiKey {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::ser::Serializer,
{
serializer.serialize_str(self.0.to_str().map_err(serde::ser::Error::custom)?)
}
}
impl<'de> serde::de::Deserialize<'de> for ApiKey {
fn deserialize<D>(deserializer: D) -> Result<ApiKey, D::Error>
where
D: serde::de::Deserializer<'de>,
{
String::deserialize(deserializer)?
.parse()
.map_err(|err: color_eyre::eyre::Report| serde::de::Error::custom(err.to_string()))
}
}
impl interactive_clap::ToCli for ApiKey {
type CliVariant = ApiKey;
}