use super::*;
static RECORD_CIPHERTEXT_PREFIX: &str = "record";
impl<N: Network> Parser for Record<N, Ciphertext<N>> {
#[inline]
fn parse(string: &str) -> ParserResult<Self> {
let parse_record_ciphertext = recognize(pair(
pair(tag(RECORD_CIPHERTEXT_PREFIX), tag("1")),
many1(terminated(one_of("qpzry9x8gf2tvdw0s3jn54khce6mua7l"), many0(char('_')))),
));
map_res(parse_record_ciphertext, |record_ciphertext: &str| -> Result<_, Error> {
Self::from_str(&record_ciphertext.replace('_', ""))
})(string)
}
}
impl<N: Network> FromStr for Record<N, Ciphertext<N>> {
type Err = Error;
fn from_str(ciphertext: &str) -> Result<Self, Self::Err> {
let checked = bech32::primitives::decode::CheckedHrpstring::new::<LongBech32m>(ciphertext)?;
let hrp = checked.hrp();
let data: Vec<u8> = checked.byte_iter().collect();
if hrp.as_str() != RECORD_CIPHERTEXT_PREFIX {
bail!("Failed to decode record ciphertext: '{hrp}' is an invalid prefix")
} else if data.is_empty() {
bail!("Failed to decode record ciphertext: data field is empty")
}
Ok(Self::read_le(&data[..])?)
}
}
impl<N: Network> Debug for Record<N, Ciphertext<N>> {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
Display::fmt(self, f)
}
}
impl<N: Network> Display for Record<N, Ciphertext<N>> {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
let bytes = self.to_bytes_le().map_err(|_| fmt::Error)?;
let string = bech32::encode::<LongBech32m>(bech32::Hrp::parse_unchecked(RECORD_CIPHERTEXT_PREFIX), &bytes)
.map_err(|_| fmt::Error)?;
Display::fmt(&string, f)
}
}