This library uses Mozilla's Public Suffix List to reliably parse domain names and email addresses in Rust. If all you need is to check whether a domain is syntactically correct and do not need to utilise the list you can just use DomainName::has_valid_syntax
method. This method will reliably tell you if a domain has valid syntax whether or not it is an internationalised domain name (IDN). It also checks the length restrictions for each label, total number of labels and full length of domain name.
You can supply your own list by setting the environment variable PSL_URL
or PSL_PATH
. You can also use the plural forms of those environment variables with the values separated by commas. The first successful list retrieved will be used. If you don't supply your own list, one will be downloaded for you from the official site during the build. If you are only interested in a few TLDs, you can pass them in as PSL_TLD
or PSL_TLDS
. I recommend setting that enviroment variable when developing to boost compile times.
Add this crate to your Cargo.toml
:
toml
[dependencies]
addr = "0.1"
```rust extern crate addr;
use addr::{Domain, DomainName, DnsName};
// Using the list you can find out the root domain // or extension of any given domain name let domain: DomainName = "www.example.com".parse()?; asserteq!(name.root(), Some("example.com")); asserteq!(name.suffix(), Some("com"));
let name: DomainName = "www.食狮.中国".parse()?; asserteq!(name.root(), Some("食狮.中国")); asserteq!(name.suffix(), Some("中国"));
let name: DomainName = "www.xn--85x722f.xn--55qx5d.cn".parse()?; asserteq!(name.root(), Some("xn--85x722f.xn--55qx5d.cn")); asserteq!(name.suffix(), Some("xn--55qx5d.cn"));
let name: DomainName = "a.b.example.uk.com".parse()?; asserteq!(name.root(), Some("example.uk.com")); asserteq!(name.suffix(), Some("uk.com"));
let name: DnsName = "tcp.example.com.".parse()?; asserteq!(name.root(), Some("example.com")); assert_eq!(name.suffix(), Some("com"));
// You can also find out if this is an ICANN domain assert!(!name.is_icann());
// or a private one assert!(name.is_private());
// In any case if the domain's suffix is in the list // then this is definately a registrable domain name assert!(name.hasknownsuffix()); ```
For those who work with domain names the use cases of this library are plenty. publicsuffix.org/learn lists quite a few. For the sake of brevity, I'm not going to repeat them here. I work for a domain registrar so we make good use of this library. Here are some of the ways this library can be used:-