use std::fmt;
use crate::MailParseError;
#[derive(Clone, Debug, PartialEq)]
pub struct MessageIdList(Vec<String>);
impl std::ops::Deref for MessageIdList {
type Target = Vec<String>;
fn deref(&self) -> &Vec<String> {
&self.0
}
}
impl std::ops::DerefMut for MessageIdList {
fn deref_mut(&mut self) -> &mut Vec<String> {
&mut self.0
}
}
impl fmt::Display for MessageIdList {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let mut first = true;
for msgid in self.iter() {
if !first {
write!(f, " ")?;
}
write!(f, "<{}>", msgid)?;
first = false;
}
Ok(())
}
}
pub fn msgidparse(ids: &str) -> Result<MessageIdList, MailParseError> {
let mut msgids = Vec::new();
let mut remaining = ids.trim_start();
while !remaining.is_empty() {
if !remaining.starts_with('<') {
return Err(MailParseError::Generic("Message IDs must start with <"));
}
let end_index = remaining
.find('>')
.ok_or(MailParseError::Generic("Message IDs must end with >"))?;
msgids.push(remaining[1..end_index].to_string());
remaining = remaining[end_index + 1..].trim_start();
}
Ok(MessageIdList(msgids))
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn parse_message_ids() {
assert_eq!(
msgidparse("").expect("Empty string"),
MessageIdList(Vec::new())
);
assert_eq!(
msgidparse("<msg_one@foo.com>").expect("Single reference"),
MessageIdList(vec!["msg_one@foo.com".to_string()])
);
assert_eq!(
msgidparse(" <msg_one@foo.com>").expect("Single reference, leading whitespace"),
MessageIdList(vec!["msg_one@foo.com".to_string()])
);
assert_eq!(
msgidparse("<msg_one@foo.com> ").expect("Single reference, trailing whitespace"),
MessageIdList(vec!["msg_one@foo.com".to_string()])
);
assert_eq!(
msgidparse("<msg_one@foo.com> <msg_two@bar.com>")
.expect("Multiple references separated by space"),
MessageIdList(vec![
"msg_one@foo.com".to_string(),
"msg_two@bar.com".to_string(),
])
);
assert_eq!(
msgidparse("\n<msg_one@foo.com> <msg_two@bar.com>\t<msg_three@qux.com>\r ")
.expect("Multiple references separated by various whitespace"),
MessageIdList(vec![
"msg_one@foo.com".to_string(),
"msg_two@bar.com".to_string(),
"msg_three@qux.com".to_string(),
])
);
assert_eq!(
msgidparse("<msg_one@foo.com><msg_two@bar.com>")
.expect("Multiple references, no whitespace"),
MessageIdList(vec![
"msg_one@foo.com".to_string(),
"msg_two@bar.com".to_string(),
])
);
assert_eq!(
msgidparse("<msg_one@foo.com><msg_two@bar.com> <msg_three@spam.com> ")
.expect("Mixed whitespace/non-whitespace separator"),
MessageIdList(vec![
"msg_one@foo.com".to_string(),
"msg_two@bar.com".to_string(),
"msg_three@spam.com".to_string(),
])
);
}
}