You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
2.2 KiB
Rust
77 lines
2.2 KiB
Rust
use mime_guess::{mime, Mime};
|
|
|
|
pub use url::*;
|
|
|
|
static PROTOCOL_HTTP: &str = "http://";
|
|
static PROTOCOL_HTTPS: &str = "https://";
|
|
static PROTOCOL_FILE: &str = "file:////";
|
|
static PROTOCOL_DATA: &str = "data:";
|
|
static PROTOCOLS: &[&str] = &[PROTOCOL_HTTP, PROTOCOL_HTTPS, PROTOCOL_FILE, PROTOCOL_DATA];
|
|
|
|
/// Adds the protocol in front of the url if it is missing from the input
|
|
fn add_missing_protocol(url_str: &str) -> String {
|
|
for protocol in PROTOCOLS {
|
|
if url_str.starts_with(protocol) {
|
|
return url_str.to_string();
|
|
}
|
|
}
|
|
|
|
format!("{}{}", PROTOCOL_HTTPS, url_str)
|
|
}
|
|
|
|
/// Parses the given url into the url representation
|
|
/// Allows for fuzzier input than the original method. If no protocol is provided,
|
|
/// it assumes https.
|
|
#[inline]
|
|
pub fn parse_url(url_str: &str) -> Result<Url, url::ParseError> {
|
|
let url_str = add_missing_protocol(url_str);
|
|
Url::parse(&url_str)
|
|
}
|
|
|
|
/// Returns the domain for a given url string
|
|
/// Example
|
|
/// ```
|
|
/// use bot_coreutils::url::get_domain_for_url;
|
|
///
|
|
/// assert_eq!(get_domain_for_url("https://reddit.com/r/anime"), Some("reddit.com".to_string()));
|
|
/// assert_eq!(get_domain_for_url("reddit.com"), Some("reddit.com".to_string()));
|
|
/// assert_eq!(get_domain_for_url("invalid url"), None);
|
|
/// ```
|
|
pub fn get_domain_for_url(url_str: &str) -> Option<String> {
|
|
let url = parse_url(url_str).ok()?;
|
|
let domain = url.domain()?;
|
|
|
|
Some(domain.trim_start_matches("www.").to_string())
|
|
}
|
|
|
|
/// Guesses the mime for a given url string
|
|
#[inline]
|
|
fn guess_mime_for_url(url_str: &str) -> Option<Mime> {
|
|
parse_url(url_str)
|
|
.ok()
|
|
.and_then(|u| mime_guess::from_path(u.path()).first())
|
|
}
|
|
|
|
/// Returns if a given url could be an image
|
|
pub fn is_image(url_str: &str) -> bool {
|
|
if let Some(guess) = guess_mime_for_url(url_str) {
|
|
guess.type_() == mime::IMAGE
|
|
} else {
|
|
false
|
|
}
|
|
}
|
|
|
|
/// Returns if a given url could be a video
|
|
pub fn is_video(url_str: &str) -> bool {
|
|
if let Some(guess) = guess_mime_for_url(url_str) {
|
|
guess.type_() == mime::VIDEO
|
|
} else {
|
|
false
|
|
}
|
|
}
|
|
|
|
/// Returns if the given url is valid
|
|
pub fn is_valid(url_str: &str) -> bool {
|
|
Url::parse(url_str).is_ok()
|
|
}
|