/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ #[cfg(not(any(target_os = "android", target_env = "ohos")))] use std::path::{Path, PathBuf}; use servo::net_traits::pub_domains::is_reg_domain; use servo::servo_config::pref; use servo::servo_url::ServoUrl; #[cfg(not(any(target_os = "android", target_env = "ohos")))] pub fn parse_url_or_filename(cwd: &Path, input: &str) -> Result { match ServoUrl::parse(input) { Ok(url) => Ok(url), Err(url::ParseError::RelativeUrlWithoutBase) => { url::Url::from_file_path(&*cwd.join(input)).map(ServoUrl::from_url) }, Err(_) => Err(()), } } #[cfg(not(any(target_os = "android", target_env = "ohos")))] pub fn get_default_url( url_opt: Option<&str>, cwd: impl AsRef, exists: impl FnOnce(&PathBuf) -> bool, ) -> ServoUrl { // If the url is not provided, we fallback to the homepage in prefs, // or a blank page in case the homepage is not set either. let mut new_url = None; let cmdline_url = url_opt.map(|s| s.to_string()).and_then(|url_string| { parse_url_or_filename(cwd.as_ref(), &url_string) .map_err(|error| { log::warn!("URL parsing failed ({:?}).", error); error }) .ok() }); if let Some(url) = cmdline_url.clone() { // Check if the URL path corresponds to a file match (url.scheme(), url.host(), url.to_file_path()) { ("file", None, Ok(ref path)) if exists(path) => { new_url = cmdline_url; }, _ => {}, } } if new_url.is_none() && url_opt.is_some() { new_url = location_bar_input_to_url(url_opt.unwrap()); } let pref_url = { let homepage_url = pref!(shell.homepage); parse_url_or_filename(cwd.as_ref(), &homepage_url).ok() }; let blank_url = ServoUrl::parse("about:blank").ok(); new_url.or(pref_url).or(blank_url).unwrap() } /// Interpret an input URL. /// /// If this is not a valid URL, try to "fix" it by adding a scheme or if all else fails, /// interpret the string as a search term. pub fn location_bar_input_to_url(request: &str) -> Option { let request = request.trim(); ServoUrl::parse(request) .ok() .or_else(|| { if request.starts_with('/') { ServoUrl::parse(&format!("file://{}", request)).ok() } else if request.contains('/') || is_reg_domain(request) { ServoUrl::parse(&format!("https://{}", request)).ok() } else { None } }) .or_else(|| { let url = pref!(shell.searchpage).replace("%s", request); ServoUrl::parse(&url).ok() }) }