publicsuffix/lib.rs
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 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792
//! Robust domain name parsing using the Public Suffix List
//!
//! This library allows you to easily and accurately parse any given domain name.
//!
//! ## Examples
//!
//! ```rust,norun
//! extern crate publicsuffix;
//!
//! use publicsuffix::List;
//! # use publicsuffix::Result;
//!
//! # fn examples() -> Result<()> {
//! // Fetch the list from the official URL,
//! # #[cfg(feature = "remote_list")]
//! let list = List::fetch()?;
//!
//! // from your own URL
//! # #[cfg(feature = "remote_list")]
//! let list = List::from_url("https://example.com/path/to/public_suffix_list.dat")?;
//!
//! // or from a local file.
//! let list = List::from_path("/path/to/public_suffix_list.dat")?;
//!
//! // Using the list you can find out the root domain
//! // or extension of any given domain name
//! let domain = list.parse_domain("www.example.com")?;
//! assert_eq!(domain.root(), Some("example.com"));
//! assert_eq!(domain.suffix(), Some("com"));
//!
//! let domain = list.parse_domain("www.食狮.中国")?;
//! assert_eq!(domain.root(), Some("食狮.中国"));
//! assert_eq!(domain.suffix(), Some("中国"));
//!
//! let domain = list.parse_domain("www.xn--85x722f.xn--55qx5d.cn")?;
//! assert_eq!(domain.root(), Some("xn--85x722f.xn--55qx5d.cn"));
//! assert_eq!(domain.suffix(), Some("xn--55qx5d.cn"));
//!
//! let domain = list.parse_domain("a.b.example.uk.com")?;
//! assert_eq!(domain.root(), Some("example.uk.com"));
//! assert_eq!(domain.suffix(), Some("uk.com"));
//!
//! let name = list.parse_dns_name("_tcp.example.com.")?;
//! assert_eq!(name.domain().and_then(|domain| domain.root()), Some("example.com"));
//! assert_eq!(name.domain().and_then(|domain| domain.suffix()), Some("com"));
//!
//! // You can also find out if this is an ICANN domain
//! assert!(!domain.is_icann());
//!
//! // or a private one
//! assert!(domain.is_private());
//!
//! // In any case if the domain's suffix is in the list
//! // then this is definately a registrable domain name
//! assert!(domain.has_known_suffix());
//! # Ok(())
//! # }
//! # fn main() {}
//! ```
#![recursion_limit = "1024"]
#[macro_use]
extern crate error_chain;
#[cfg(feature = "remote_list")]
extern crate native_tls;
#[macro_use]
extern crate lazy_static;
extern crate regex;
extern crate idna;
extern crate url;
pub mod errors;
#[cfg(feature = "remote_list")]
#[cfg(test)]
mod tests;
use std::fs::File;
use std::path::Path;
#[cfg(feature = "remote_list")]
use std::time::Duration;
#[cfg(feature = "remote_list")]
use std::net::TcpStream;
use std::io::Read;
#[cfg(feature = "remote_list")]
use std::io::Write;
use std::collections::HashMap;
use std::net::IpAddr;
use std::str::FromStr;
use std::fmt;
pub use errors::{Result, Error};
use regex::RegexSet;
use errors::{ErrorKind, ResultExt};
#[cfg(feature = "remote_list")]
use native_tls::TlsConnector;
use idna::{domain_to_unicode};
use url::Url;
/// The official URL of the list
pub const LIST_URL: &'static str = "https://publicsuffix.org/list/public_suffix_list.dat";
const PREVAILING_STAR_RULE: &'static str = "*";
#[derive(Debug, PartialEq, Eq, Hash)]
struct Suffix {
rule: String,
typ: Type,
}
#[derive(Debug)]
struct ListLeaf {
typ: Type,
is_exception_rule: bool,
}
impl ListLeaf {
fn new(typ: Type, is_exception_rule: bool) -> Self {
Self { typ, is_exception_rule }
}
}
#[derive(Debug)]
struct ListNode {
children: HashMap<String, Box<ListNode>>,
leaf: Option<ListLeaf>,
}
impl ListNode {
fn new() -> Self {
Self {
children: HashMap::new(),
leaf: None,
}
}
}
/// Stores the public suffix list
///
/// You can use the methods, `fetch`, `from_url` or `from_path` to build the list.
/// If you are using this in a long running server it's recommended you use either
/// `fetch` or `from_url` to download updates at least once a week.
#[derive(Debug)]
pub struct List {
root: ListNode,
all: Vec<Suffix>, // to support all(), icann(), private()
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
enum Type {
Icann,
Private,
}
/// Holds information about a particular domain
///
/// This is created by `List::parse_domain`.
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct Domain {
full: String,
typ: Option<Type>,
suffix: Option<String>,
registrable: Option<String>,
}
/// Holds information about a particular host
///
/// This is created by `List::parse_host`.
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum Host {
Ip(IpAddr),
Domain(Domain),
}
/// Holds information about a particular DNS name
///
/// This is created by `List::parse_dns_name`.
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct DnsName {
name: String,
domain: Option<Domain>,
}
lazy_static! {
// Regex for matching domain name labels
static ref LABEL: RegexSet = {
let exprs = vec![
// can be any combination of alphanumeric characters
r"^[[:alnum:]]+$",
// or it can start with an alphanumeric character
// then optionally be followed by any combination of
// alphanumeric characters and dashes before finally
// ending with an alphanumeric character
r"^[[:alnum:]]+[[:alnum:]-]*[[:alnum:]]+$",
];
RegexSet::new(exprs).unwrap()
};
// Regex for matching the local-part of an
// email address
static ref LOCAL: RegexSet = {
// these characters can be anywhere in the expresion
let global = r#"[[:alnum:]!#$%&'*+/=?^_`{|}~-]"#;
// non-ascii characters (an also be unquoted)
let non_ascii = r#"[^\x00-\x7F]"#;
// the pattern to match
let quoted = r#"["(),\\:;<>@\[\]. ]"#;
// combined regex
let combined = format!(r#"({}*{}*)"#, global, non_ascii);
let exprs = vec![
// can be any combination of allowed characters
format!(r#"^{}+$"#, combined),
// can be any combination of allowed charaters
// separated by a . in between
format!(r#"^({0}+[.]?{0}+)+$"#, combined),
// can be a quoted string with allowed plus
// additional characters
format!(r#"^"({}*{}*)*"$"#, combined, quoted),
];
RegexSet::new(exprs).unwrap()
};
}
/// Converts a type into a Url object
pub trait IntoUrl {
fn into_url(self) -> Result<Url>;
}
impl IntoUrl for Url {
fn into_url(self) -> Result<Url> {
Ok(self)
}
}
impl<'a> IntoUrl for &'a str {
fn into_url(self) -> Result<Url> {
Ok(Url::parse(self)?)
}
}
impl<'a> IntoUrl for &'a String {
fn into_url(self) -> Result<Url> {
Ok(Url::parse(self)?)
}
}
impl IntoUrl for String {
fn into_url(self) -> Result<Url> {
Ok(Url::parse(&self)?)
}
}
#[cfg(feature = "remote_list")]
fn request<U: IntoUrl>(u: U) -> Result<String> {
let url = u.into_url()?;
let host = match url.host_str() {
Some(host) => host,
None => { return Err(ErrorKind::NoHost.into()); }
};
let port = match url.port_or_known_default() {
Some(port) => port,
None => { return Err(ErrorKind::NoPort.into()); }
};
let data = format!("GET {} HTTP/1.0\r\nHost: {}\r\n\r\n", url.path(), host);
let addr = format!("{}:{}", host, port);
let stream = TcpStream::connect(addr)?;
let timeout = Duration::from_secs(2);
stream.set_read_timeout(Some(timeout))?;
stream.set_write_timeout(Some(timeout))?;
let mut res = String::new();
match url.scheme() {
scheme if scheme == "https" => {
let connector = TlsConnector::builder().build()?;
let mut stream = connector.connect(host, stream)?;
stream.write_all(data.as_bytes())?;
stream.read_to_string(&mut res)?;
}
scheme if scheme == "http" => {
let mut stream = stream;
stream.write_all(data.as_bytes())?;
stream.read_to_string(&mut res)?;
}
_ => { return Err(ErrorKind::UnsupportedScheme.into()); }
}
Ok(res)
}
impl List {
fn append(&mut self, mut rule: &str, typ: Type) -> Result<()> {
let mut is_exception_rule = false;
if rule.starts_with("!") {
is_exception_rule = true;
rule = &rule[1..];
}
let mut current = &mut self.root;
for label in rule.rsplit('.') {
if label.is_empty() {
return Err(ErrorKind::InvalidRule(rule.into()).into());
}
let cur = current;
current = cur.children.entry(label.to_owned())
.or_insert(Box::new(ListNode::new()));
}
current.leaf = Some(ListLeaf::new(typ, is_exception_rule));
// to support all(), icann(), private()
self.all.push(Suffix {rule: rule.to_owned(), typ: typ});
Ok(())
}
fn build(res: &str) -> Result<List> {
let mut typ = None;
let mut list = List::empty();
for line in res.lines() {
match line {
line if line.contains("BEGIN ICANN DOMAINS") => { typ = Some(Type::Icann); }
line if line.contains("BEGIN PRIVATE DOMAINS") => { typ = Some(Type::Private); }
line if line.starts_with("//") => { continue; }
line => {
match typ {
Some(typ) => {
let rule = match line.split_whitespace().next() {
Some(rule) => rule,
None => continue,
};
list.append(rule, typ)?;
}
None => { continue; }
}
}
}
}
if list.root.children.is_empty() || list.all().is_empty() {
return Err(ErrorKind::InvalidList.into());
}
list.append(PREVAILING_STAR_RULE, Type::Icann)?; // add the default rule
Ok(list)
}
/// Creates an empty List without any rules
///
/// Sometimes all you want is to do syntax checks. If you don't really care whether
/// the domain has a known suffix or not you can just create an empty list and use
/// that to parse domain names and email addresses.
pub fn empty() -> List {
List {
root: ListNode::new(),
all: Vec::new(),
}
}
/// Pull the list from a URL
#[cfg(feature = "remote_list")]
pub fn from_url<U: IntoUrl>(url: U) -> Result<List> {
request(url).and_then(Self::from_string)
}
/// Fetch the list from a local file
pub fn from_path<P: AsRef<Path>>(path: P) -> Result<List> {
File::open(path)
.map_err(|err| ErrorKind::Io(err).into())
.and_then(|mut data| {
let mut res = String::new();
data.read_to_string(&mut res)?;
Ok(res)
})
.and_then(Self::from_string)
}
/// Build the list from the result of anything that implements `std::io::Read`
///
/// If you don't already have your list on the filesystem but want to use your
/// own library to fetch the list you can use this method so you don't have to
/// save it first.
pub fn from_reader<R: Read>(mut reader: R) -> Result<List> {
let mut res = String::new();
reader.read_to_string(&mut res)?;
Self::build(&res)
}
/// Build the list from a string
///
/// The list doesn't always have to come from a file. You can maintain your own
/// list, say in a DBMS. You can then pull it at runtime and build the list from
/// the resulting String.
pub fn from_string(string: String) -> Result<List> {
Self::from_str(&string)
}
/// Build the list from a str
///
/// The list doesn't always have to come from a file. You can maintain your own
/// list, say in a DBMS. You can then pull it at runtime and build the list from
/// the resulting str.
pub fn from_str(string: &str) -> Result<List> {
Self::build(string)
}
/// Pull the list from the official URL
#[cfg(feature = "remote_list")]
pub fn fetch() -> Result<List> {
let github = "https://raw.githubusercontent.com/publicsuffix/list/master/public_suffix_list.dat";
Self::from_url(LIST_URL)
// Fallback to the Github repo if the official link
// is down for some reason.
.or_else(|_| Self::from_url(github))
}
fn find_type(&self, typ: Type) -> Vec<&str> {
self.all_internal()
.filter(|s| s.typ == typ)
.map(|s| s.rule.as_str()).collect()
}
/// Gets a list of all ICANN domain suffices
pub fn icann(&self) -> Vec<&str> {
self.find_type(Type::Icann)
}
/// Gets a list of all private domain suffices
pub fn private(&self) -> Vec<&str> {
self.find_type(Type::Private)
}
/// Gets a list of all domain suffices
pub fn all(&self) -> Vec<&str> {
self.all_internal().map(|s| s.rule.as_str()).collect()
}
fn all_internal(&self) -> impl Iterator<Item = &Suffix> {
self.all.iter()
// remove the default rule
.filter(|s| s.rule != PREVAILING_STAR_RULE)
}
/// Parses a domain using the list
pub fn parse_domain(&self, domain: &str) -> Result<Domain> {
Domain::parse(domain, self, true)
}
/// Parses a host using the list
///
/// A host, for the purposes of this library, is either
/// an IP address or a domain name.
pub fn parse_host(&self, host: &str) -> Result<Host> {
Host::parse(host, self)
}
/// Extracts Host from a URL
pub fn parse_url<U: IntoUrl>(&self, url: U) -> Result<Host> {
let url = url.into_url()?;
match url.scheme() {
"mailto" => {
match url.host_str() {
Some(host) => self.parse_email(&format!("{}@{}", url.username(), host)),
None => Err(ErrorKind::InvalidEmail.into()),
}
}
_ => {
match url.host_str() {
Some(host) => self.parse_host(host),
None => Err(ErrorKind::NoHost.into()),
}
}
}
}
/// Extracts Host from an email address
///
/// This method can also be used, simply to validate an email address.
/// If it returns an error, the email address is not valid.
// https://en.wikipedia.org/wiki/Email_address#Syntax
// https://en.wikipedia.org/wiki/International_email#Email_addresses
// http://girders.org/blog/2013/01/31/dont-rfc-validate-email-addresses/
// https://html.spec.whatwg.org/multipage/forms.html#valid-e-mail-address
// https://hackernoon.com/the-100-correct-way-to-validate-email-addresses-7c4818f24643#.pgcir4z3e
// http://haacked.com/archive/2007/08/21/i-knew-how-to-validate-an-email-address-until-i.aspx/
// https://tools.ietf.org/html/rfc6530#section-10.1
// http://rumkin.com/software/email/rules.php
pub fn parse_email(&self, address: &str) -> Result<Host> {
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());
}
self.parse_host(host)
}
/// Parses any arbitrary string
///
/// Effectively this means that the string is either a URL, an email address or a host.
pub fn parse_str(&self, string: &str) -> Result<Host> {
if string.contains("://") {
self.parse_url(string)
} else if string.contains("@") {
self.parse_email(string)
} else {
self.parse_host(string)
}
}
/// Parses any arbitrary string that can be used as a key in a DNS database
pub fn parse_dns_name(&self, name: &str) -> Result<DnsName> {
let mut dns_name = DnsName {
name: Domain::to_ascii(name).chain_err(|| {
ErrorKind::InvalidDomain(name.into())
})?,
domain: None,
};
if let Ok(mut domain) = Domain::parse(name, self, false) {
if let Some(root) = domain.root().map(|root| root.to_string()) {
if Domain::has_valid_syntax(&root) {
domain.full = root;
dns_name.domain = Some(domain);
}
}
}
Ok(dns_name)
}
}
impl Host {
fn parse(mut host: &str, list: &List) -> Result<Host> {
if let Ok(domain) = Domain::parse(host, list, true) {
return Ok(Host::Domain(domain));
}
if host.starts_with("[")
&& !host.starts_with("[[")
&& host.ends_with("]")
&& !host.ends_with("]]")
{
host = host
.trim_start_matches("[")
.trim_end_matches("]");
};
if let Ok(ip) = IpAddr::from_str(host) {
return Ok(Host::Ip(ip));
}
Err(ErrorKind::InvalidHost.into())
}
/// A convenient method to simply check if a host is an IP address
pub fn is_ip(&self) -> bool {
if let &Host::Ip(_) = self {
return true;
}
false
}
/// A convenient method to simply check if a host is a domain name
pub fn is_domain(&self) -> bool {
if let &Host::Domain(_) = self {
return true;
}
false
}
}
impl fmt::Display for Host {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
&Host::Ip(ref ip) => write!(f, "{}", ip),
&Host::Domain(ref domain) => write!(f, "{}", domain),
}
}
}
impl Domain {
/// Check if a domain has valid syntax
// https://en.wikipedia.org/wiki/Domain_name#Domain_name_syntax
// http://blog.sacaluta.com/2011/12/dns-domain-names-253-or-255-bytesoctets.html
// https://blogs.msdn.microsoft.com/oldnewthing/20120412-00/?p=7873/
pub fn has_valid_syntax(domain: &str) -> bool {
// we are explicitly checking for this here before calling `domain_to_ascii`
// because `domain_to_ascii` strips of leading dots so we won't be able to
// check for this later
if domain.starts_with('.') { return false; }
// let's convert the domain to ascii early on so we can validate
// internationalised domain names as well
let domain = match Self::to_ascii(domain) {
Ok(domain) => { domain }
Err(_) => { return false; }
};
let mut labels: Vec<&str> = domain.split('.').collect();
// strip of the first dot from a domain to support fully qualified domain names
if domain.ends_with(".") { labels.pop(); }
// a domain must not have more than 127 labels
if labels.len() > 127 { return false; }
labels.reverse();
for (i, label) in labels.iter().enumerate() {
// the tld must not be a number
if i == 0 && label.parse::<f64>().is_ok() { return false; }
// any label must only contain allowed characters
if !LABEL.is_match(label) { return false; }
}
true
}
/// Get the full domain
pub fn full(&self) -> &str {
&self.full
}
fn assemble(input: &str, s_len: usize) -> String {
let domain = input.to_lowercase();
let d_labels: Vec<&str> = domain
.trim_end_matches('.')
.split('.').rev().collect();
(&d_labels[..s_len]).iter().rev()
.map(|part| *part)
.collect::<Vec<_>>()
.join(".")
}
fn find_match(input: &str, domain: &str, list: &List) -> Result<Domain> {
let mut longest_valid = None;
let mut current = &list.root;
let mut s_labels_len = 0;
for label in domain.rsplit('.') {
if let Some(child) = current.children.get(label) {
current = child;
s_labels_len += 1;
} else if let Some(child) = current.children.get("*") {
// wildcard rule
current = child;
s_labels_len += 1;
} else {
// no match rules
break;
}
if let Some(list_leaf) = ¤t.leaf {
longest_valid = Some((list_leaf, s_labels_len));
}
}
match longest_valid {
Some((leaf, suffix_len)) => {
let typ = Some(leaf.typ);
let suffix_len = if leaf.is_exception_rule {
suffix_len - 1
} else {
suffix_len
};
let suffix = Some(Self::assemble(input, suffix_len));
let d_labels_len = domain.match_indices(".").count() + 1;
let registrable = if d_labels_len > suffix_len {
Some(Self::assemble(input, suffix_len + 1))
} else {
None
};
Ok(Domain {
full: input.to_owned(),
typ: typ,
suffix: suffix,
registrable: registrable,
})
},
None => {
Ok(Domain {
full: input.to_owned(),
typ: None,
suffix: None,
registrable: None,
})
},
}
}
fn to_ascii(domain: &str) -> Result<String> {
let result = idna::Config::default()
.transitional_processing(true)
.verify_dns_length(true)
.to_ascii(domain);
result.map_err(|error| ErrorKind::Uts46(error).into())
}
fn parse(domain: &str, list: &List, check_syntax: bool) -> Result<Domain> {
if check_syntax && !Self::has_valid_syntax(domain) {
return Err(ErrorKind::InvalidDomain(domain.into()).into());
}
let input = domain.trim_end_matches('.');
let (domain, res) = domain_to_unicode(input);
if let Err(errors) = res {
return Err(ErrorKind::Uts46(errors).into());
}
Self::find_match(input, &domain, list)
}
/// Gets the root domain portion if any
pub fn root(&self) -> Option<&str> {
match self.registrable {
Some(ref registrable) => Some(registrable),
None => None,
}
}
/// Gets the suffix if any
pub fn suffix(&self) -> Option<&str> {
match self.suffix {
Some(ref suffix) => Some(suffix),
None => None,
}
}
/// Whether the domain has a private suffix
pub fn is_private(&self) -> bool {
match self.typ {
Some(typ) => match typ {
Type::Icann => false,
Type::Private => true,
},
None => false,
}
}
/// Whether the domain has an ICANN suffix
pub fn is_icann(&self) -> bool {
match self.typ {
Some(typ) => match typ {
Type::Icann => true,
Type::Private => false,
},
None => false,
}
}
/// Whether this domain's suffix is in the list
///
/// If it is, this is definately a valid domain. If it's not
/// chances are very high that this isn't a valid domain name,
/// however, it might simply be because the suffix is new and
/// it hasn't been added to the list yet.
///
/// If you want to validate a domain name, use this as a quick
/// check but fall back to a DNS lookup if it returns false.
pub fn has_known_suffix(&self) -> bool {
self.typ.is_some()
}
}
impl fmt::Display for Domain {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}", self.full.trim_end_matches(".").to_lowercase())
}
}
impl DnsName {
/// Extracts the root domain from a DNS name, if any
pub fn domain(&self) -> Option<&Domain> {
self.domain.as_ref()
}
}
impl fmt::Display for DnsName {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
self.name.fmt(f)
}
}