obsolete domain list
This commit is contained in:
parent
10e2e586b2
commit
e56d5bef1d
1 changed files with 67 additions and 10 deletions
|
@ -3,15 +3,15 @@ use nom::{
|
||||||
branch::alt,
|
branch::alt,
|
||||||
bytes::complete::tag,
|
bytes::complete::tag,
|
||||||
character::complete::satisfy,
|
character::complete::satisfy,
|
||||||
combinator::{into,opt},
|
combinator::{into,map,opt,recognize},
|
||||||
multi::many0,
|
multi::{separated_list1, many0},
|
||||||
sequence::{delimited,pair,tuple},
|
sequence::{delimited,pair,preceded,terminated,tuple},
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::model::{MailboxRef, AddrSpec};
|
use crate::model::{MailboxRef, AddrSpec};
|
||||||
use crate::misc_token::phrase;
|
use crate::misc_token::{phrase, word};
|
||||||
use crate::whitespace::{cfws, fws};
|
use crate::whitespace::{cfws, fws, is_obs_no_ws_ctl};
|
||||||
use crate::words::dot_atom;
|
use crate::words::{atom, dot_atom};
|
||||||
use crate::quoted::quoted_string;
|
use crate::quoted::quoted_string;
|
||||||
|
|
||||||
/// Mailbox
|
/// Mailbox
|
||||||
|
@ -43,12 +43,39 @@ fn name_addr(input: &str) -> IResult<&str, MailboxRef> {
|
||||||
/// ```
|
/// ```
|
||||||
pub fn angle_addr(input: &str) -> IResult<&str, MailboxRef> {
|
pub fn angle_addr(input: &str) -> IResult<&str, MailboxRef> {
|
||||||
delimited(
|
delimited(
|
||||||
pair(opt(cfws), tag("<")),
|
tuple((opt(cfws), tag("<"), opt(obs_route))),
|
||||||
into(addr_spec),
|
into(addr_spec),
|
||||||
pair(tag(">"), opt(cfws)),
|
pair(tag(">"), opt(cfws)),
|
||||||
)(input)
|
)(input)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// obs-route = obs-domain-list ":"
|
||||||
|
fn obs_route(input: &str) -> IResult<&str, Vec<String>> {
|
||||||
|
terminated(obs_domain_list, tag(":"))(input)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// ```abnf
|
||||||
|
/// obs-domain-list = *(CFWS / ",") "@" domain
|
||||||
|
/// *("," [CFWS] ["@" domain])
|
||||||
|
/// ```
|
||||||
|
fn obs_domain_list(input: &str) -> IResult<&str, Vec<String>> {
|
||||||
|
//@FIXME complexity is O(n) in term of domains here.
|
||||||
|
let (input, head) = preceded(pair(many0(alt((recognize(cfws), tag(",")))), tag("@")), domain_part)(input)?;
|
||||||
|
let (input, mut rest) = obs_domain_list_rest(input)?;
|
||||||
|
rest.insert(0, head);
|
||||||
|
Ok(("", rest))
|
||||||
|
}
|
||||||
|
|
||||||
|
fn obs_domain_list_rest(input: &str) -> IResult<&str, Vec<String>> {
|
||||||
|
map(
|
||||||
|
many0(preceded(
|
||||||
|
pair(tag(","), opt(cfws)),
|
||||||
|
opt(preceded(tag("@"), domain_part)),
|
||||||
|
)),
|
||||||
|
|v: Vec<Option<String>>| v.into_iter().flatten().collect()
|
||||||
|
)(input)
|
||||||
|
}
|
||||||
|
|
||||||
/// Add-spec
|
/// Add-spec
|
||||||
///
|
///
|
||||||
/// ```abnf
|
/// ```abnf
|
||||||
|
@ -68,7 +95,12 @@ pub fn addr_spec(input: &str) -> IResult<&str, AddrSpec> {
|
||||||
/// local-part = dot-atom / quoted-string / obs-local-part
|
/// local-part = dot-atom / quoted-string / obs-local-part
|
||||||
/// ```
|
/// ```
|
||||||
fn local_part(input: &str) -> IResult<&str, String> {
|
fn local_part(input: &str) -> IResult<&str, String> {
|
||||||
alt((into(dot_atom), quoted_string))(input)
|
alt((into(dot_atom), quoted_string, obs_local_part))(input)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// obs-local-part = word *("." word)
|
||||||
|
fn obs_local_part(input: &str) -> IResult<&str, String> {
|
||||||
|
map(recognize(separated_list1(tag("."), word)), |s| s.into())(input)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Domain
|
/// Domain
|
||||||
|
@ -77,7 +109,12 @@ fn local_part(input: &str) -> IResult<&str, String> {
|
||||||
/// domain = dot-atom / domain-literal / obs-domain
|
/// domain = dot-atom / domain-literal / obs-domain
|
||||||
/// ```
|
/// ```
|
||||||
pub fn domain_part(input: &str) -> IResult<&str, String> {
|
pub fn domain_part(input: &str) -> IResult<&str, String> {
|
||||||
alt((into(dot_atom), domain_litteral))(input)
|
alt((into(dot_atom), domain_litteral, obs_domain))(input)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// obs-domain = atom *("." atom)
|
||||||
|
fn obs_domain(input: &str) -> IResult<&str, String> {
|
||||||
|
map(recognize(separated_list1(tag("."), atom)), |s| s.into())(input)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Domain litteral
|
/// Domain litteral
|
||||||
|
@ -111,15 +148,22 @@ fn inner_domain_litteral(input: &str) -> IResult<&str, String> {
|
||||||
Ok((input, domain))
|
Ok((input, domain))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
fn is_strict_dtext(c: char) -> bool {
|
||||||
|
(c >= '\x21' && c <= '\x5A') || (c >= '\x5E' && c <= '\x7E') || !c.is_ascii()
|
||||||
|
}
|
||||||
|
|
||||||
/// Is domain text
|
/// Is domain text
|
||||||
///
|
///
|
||||||
/// ```abnf
|
/// ```abnf
|
||||||
/// dtext = %d33-90 / ; Printable US-ASCII
|
/// dtext = %d33-90 / ; Printable US-ASCII
|
||||||
/// %d94-126 / ; characters not including
|
/// %d94-126 / ; characters not including
|
||||||
/// obs-dtext ; "[", "]", or "\"
|
/// obs-dtext ; "[", "]", or "\"
|
||||||
|
/// obs-dtext = obs-NO-WS-CTL / quoted-pair
|
||||||
/// ```
|
/// ```
|
||||||
pub fn is_dtext(c: char) -> bool {
|
pub fn is_dtext(c: char) -> bool {
|
||||||
(c >= '\x21' && c <= '\x5A') || (c >= '\x5E' && c <= '\x7E') || !c.is_ascii()
|
is_strict_dtext(c) || is_obs_no_ws_ctl(c)
|
||||||
|
//@FIXME does not support quoted pair yet while RFC requires it
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
|
@ -200,4 +244,17 @@ mod tests {
|
||||||
}
|
}
|
||||||
})));
|
})));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_obs_domain_list() {
|
||||||
|
assert_eq!(obs_domain_list(r#"(shhh it's coming)
|
||||||
|
,
|
||||||
|
(not yet)
|
||||||
|
@33+4.com,,,,
|
||||||
|
,,,,
|
||||||
|
(again)
|
||||||
|
@example.com,@yep.com,@a,@b,,,@c"#),
|
||||||
|
Ok(("", vec!["33+4.com".into(), "example.com".into(), "yep.com".into(), "a".into(), "b".into(), "c".into()]))
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue