1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
use std::fmt;
use std::str::FromStr;
use regex::RegexSet;
use errors::{Result, Error, ErrorKind};
use {Host, Email};
lazy_static! {
static ref LOCAL: RegexSet = {
let global = r#"[[:alnum:]!#$%&'*+/=?^_`{|}~-]"#;
let non_ascii = r#"[^\x00-\x7F]"#;
let quoted = r#"["(),\\:;<>@\[\]. ]"#;
let combined = format!(r#"({}*{}*)"#, global, non_ascii);
let exprs = vec![
format!(r#"^{}+$"#, combined),
format!(r#"^({0}+[.]?{0}+)+$"#, combined),
format!(r#"^"({}*{}*)*"$"#, combined, quoted),
];
RegexSet::new(exprs).unwrap()
};
}
impl FromStr for Email {
type Err = Error;
fn from_str(address: &str) -> Result<Email> {
let mut parts = address.rsplitn(2, "@");
let host = match parts.next() {
Some(host) => host,
None => { return Err(ErrorKind::InvalidEmail.into()); }
};
let local = match parts.next() {
Some(local) => local,
None => { return Err(ErrorKind::InvalidEmail.into()); }
};
if local.chars().count() > 64
|| address.chars().count() > 254
|| (!local.starts_with('"') && local.contains(".."))
|| !LOCAL.is_match(local)
{
return Err(ErrorKind::InvalidEmail.into());
}
let host = Host::from_str(host)?;
let name = local.to_owned();
Ok(Email { name, host })
}
}
impl Email {
pub fn user(&self) -> &str {
&self.name
}
pub fn host(&self) -> &Host {
&self.host
}
}
impl fmt::Display for Email {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}@{}", self.name, self.host)
}
}