2018-12-18 23:57:45 +00:00
|
|
|
use std::fs::{create_dir_all, remove_file, symlink_metadata, File};
|
2018-02-10 00:00:55 +00:00
|
|
|
use std::io::prelude::*;
|
2019-10-05 12:48:15 +00:00
|
|
|
use std::net::ToSocketAddrs;
|
2019-01-28 22:58:32 +00:00
|
|
|
use std::time::{Duration, SystemTime};
|
2018-02-10 00:00:55 +00:00
|
|
|
|
|
|
|
use rocket::http::ContentType;
|
2018-12-18 23:57:45 +00:00
|
|
|
use rocket::response::Content;
|
|
|
|
use rocket::Route;
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2019-10-05 12:48:15 +00:00
|
|
|
use reqwest::{header::HeaderMap, Client, Response, Url};
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2019-03-03 15:11:55 +00:00
|
|
|
use rocket::http::Cookie;
|
2019-01-31 14:49:58 +00:00
|
|
|
|
2019-01-27 14:39:19 +00:00
|
|
|
use regex::Regex;
|
|
|
|
use soup::prelude::*;
|
|
|
|
|
2019-01-28 22:58:32 +00:00
|
|
|
use crate::error::Error;
|
|
|
|
use crate::CONFIG;
|
2020-01-30 21:30:57 +00:00
|
|
|
use crate::util::Cached;
|
2019-01-27 14:39:19 +00:00
|
|
|
|
2018-02-10 00:00:55 +00:00
|
|
|
pub fn routes() -> Vec<Route> {
|
|
|
|
routes![icon]
|
|
|
|
}
|
|
|
|
|
2018-12-18 23:57:45 +00:00
|
|
|
const FALLBACK_ICON: &[u8; 344] = include_bytes!("../static/fallback-icon.png");
|
|
|
|
|
2019-03-18 21:12:39 +00:00
|
|
|
const ALLOWED_CHARS: &str = "_-.";
|
|
|
|
|
2019-01-29 20:20:59 +00:00
|
|
|
lazy_static! {
|
|
|
|
// Reuse the client between requests
|
|
|
|
static ref CLIENT: Client = Client::builder()
|
2019-08-12 15:24:32 +00:00
|
|
|
.use_sys_proxy()
|
2019-01-29 20:20:59 +00:00
|
|
|
.gzip(true)
|
2019-02-12 20:56:28 +00:00
|
|
|
.timeout(Duration::from_secs(CONFIG.icon_download_timeout()))
|
2019-01-29 20:20:59 +00:00
|
|
|
.default_headers(_header_map())
|
|
|
|
.build()
|
|
|
|
.unwrap();
|
|
|
|
}
|
|
|
|
|
2019-03-18 21:12:39 +00:00
|
|
|
fn is_valid_domain(domain: &str) -> bool {
|
|
|
|
// Don't allow empty or too big domains or path traversal
|
|
|
|
if domain.is_empty() || domain.len() > 255 || domain.contains("..") {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Only alphanumeric or specific characters
|
|
|
|
for c in domain.chars() {
|
|
|
|
if !c.is_alphanumeric() && !ALLOWED_CHARS.contains(c) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
true
|
|
|
|
}
|
|
|
|
|
2018-02-10 00:00:55 +00:00
|
|
|
#[get("/<domain>/icon.png")]
|
2020-01-30 21:30:57 +00:00
|
|
|
fn icon(domain: String) -> Cached<Content<Vec<u8>>> {
|
2018-02-17 17:48:42 +00:00
|
|
|
let icon_type = ContentType::new("image", "x-icon");
|
|
|
|
|
2019-03-18 21:12:39 +00:00
|
|
|
if !is_valid_domain(&domain) {
|
|
|
|
warn!("Invalid domain: {:#?}", domain);
|
2020-01-30 21:30:57 +00:00
|
|
|
return Cached::long(Content(icon_type, FALLBACK_ICON.to_vec()));
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
|
|
|
|
2020-01-30 21:30:57 +00:00
|
|
|
Cached::long(Content(icon_type, get_icon(&domain)))
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
|
|
|
|
2019-10-05 12:48:15 +00:00
|
|
|
fn check_icon_domain_is_blacklisted(domain: &str) -> bool {
|
2019-11-02 16:39:01 +00:00
|
|
|
let mut is_blacklisted = CONFIG.icon_blacklist_non_global_ips()
|
|
|
|
&& (domain, 0)
|
2019-10-05 12:48:15 +00:00
|
|
|
.to_socket_addrs()
|
|
|
|
.map(|x| {
|
|
|
|
for ip_port in x {
|
|
|
|
if !ip_port.ip().is_global() {
|
|
|
|
warn!("IP {} for domain '{}' is not a global IP!", ip_port.ip(), domain);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
false
|
|
|
|
})
|
|
|
|
.unwrap_or(false);
|
|
|
|
|
|
|
|
// Skip the regex check if the previous one is true already
|
|
|
|
if !is_blacklisted {
|
|
|
|
if let Some(blacklist) = CONFIG.icon_blacklist_regex() {
|
|
|
|
let regex = Regex::new(&blacklist).expect("Valid Regex");
|
|
|
|
if regex.is_match(&domain) {
|
|
|
|
warn!("Blacklisted domain: {:#?} matched {:#?}", domain, blacklist);
|
|
|
|
is_blacklisted = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
is_blacklisted
|
|
|
|
}
|
|
|
|
|
2018-12-18 23:57:45 +00:00
|
|
|
fn get_icon(domain: &str) -> Vec<u8> {
|
2019-01-25 17:23:51 +00:00
|
|
|
let path = format!("{}/{}.png", CONFIG.icon_cache_folder(), domain);
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2018-06-12 19:09:42 +00:00
|
|
|
if let Some(icon) = get_cached_icon(&path) {
|
|
|
|
return icon;
|
|
|
|
}
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2019-01-28 22:58:32 +00:00
|
|
|
if CONFIG.disable_icon_download() {
|
|
|
|
return FALLBACK_ICON.to_vec();
|
|
|
|
}
|
|
|
|
|
2018-06-12 19:09:42 +00:00
|
|
|
// Get the icon, or fallback in case of error
|
2019-01-27 15:03:18 +00:00
|
|
|
match download_icon(&domain) {
|
2018-06-12 19:09:42 +00:00
|
|
|
Ok(icon) => {
|
|
|
|
save_icon(&path, &icon);
|
|
|
|
icon
|
2018-12-18 23:57:45 +00:00
|
|
|
}
|
2018-07-01 13:27:42 +00:00
|
|
|
Err(e) => {
|
2018-12-06 19:35:25 +00:00
|
|
|
error!("Error downloading icon: {:?}", e);
|
2019-11-06 19:34:52 +00:00
|
|
|
let miss_indicator = path + ".miss";
|
2019-11-06 19:21:47 +00:00
|
|
|
let empty_icon = Vec::new();
|
|
|
|
save_icon(&miss_indicator, &empty_icon);
|
2018-12-18 23:57:45 +00:00
|
|
|
FALLBACK_ICON.to_vec()
|
2018-07-01 13:27:42 +00:00
|
|
|
}
|
2018-06-12 19:09:42 +00:00
|
|
|
}
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
|
|
|
|
2018-06-12 19:09:42 +00:00
|
|
|
fn get_cached_icon(path: &str) -> Option<Vec<u8>> {
|
2018-12-18 21:33:32 +00:00
|
|
|
// Check for expiration of negatively cached copy
|
|
|
|
if icon_is_negcached(path) {
|
2018-12-18 23:57:45 +00:00
|
|
|
return Some(FALLBACK_ICON.to_vec());
|
2018-12-18 21:33:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check for expiration of successfully cached copy
|
|
|
|
if icon_is_expired(path) {
|
2018-12-18 23:57:45 +00:00
|
|
|
return None;
|
2018-12-18 21:33:32 +00:00
|
|
|
}
|
|
|
|
|
2018-02-14 23:53:11 +00:00
|
|
|
// Try to read the cached icon, and return it if it exists
|
2018-06-11 13:44:37 +00:00
|
|
|
if let Ok(mut f) = File::open(path) {
|
|
|
|
let mut buffer = Vec::new();
|
|
|
|
|
|
|
|
if f.read_to_end(&mut buffer).is_ok() {
|
2018-06-12 19:09:42 +00:00
|
|
|
return Some(buffer);
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-12 19:09:42 +00:00
|
|
|
None
|
|
|
|
}
|
|
|
|
|
2019-01-20 14:36:33 +00:00
|
|
|
fn file_is_expired(path: &str, ttl: u64) -> Result<bool, Error> {
|
2018-12-18 21:33:32 +00:00
|
|
|
let meta = symlink_metadata(path)?;
|
|
|
|
let modified = meta.modified()?;
|
|
|
|
let age = SystemTime::now().duration_since(modified)?;
|
|
|
|
|
|
|
|
Ok(ttl > 0 && ttl <= age.as_secs())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn icon_is_negcached(path: &str) -> bool {
|
|
|
|
let miss_indicator = path.to_owned() + ".miss";
|
2019-01-25 17:23:51 +00:00
|
|
|
let expired = file_is_expired(&miss_indicator, CONFIG.icon_cache_negttl());
|
2018-12-18 23:57:45 +00:00
|
|
|
|
2018-12-18 21:33:32 +00:00
|
|
|
match expired {
|
|
|
|
// No longer negatively cached, drop the marker
|
|
|
|
Ok(true) => {
|
2018-12-18 23:57:45 +00:00
|
|
|
if let Err(e) = remove_file(&miss_indicator) {
|
|
|
|
error!("Could not remove negative cache indicator for icon {:?}: {:?}", path, e);
|
2018-12-18 21:33:32 +00:00
|
|
|
}
|
|
|
|
false
|
2018-12-18 23:57:45 +00:00
|
|
|
}
|
2018-12-18 21:33:32 +00:00
|
|
|
// The marker hasn't expired yet.
|
2018-12-18 23:57:45 +00:00
|
|
|
Ok(false) => true,
|
2018-12-18 21:33:32 +00:00
|
|
|
// The marker is missing or inaccessible in some way.
|
2018-12-18 23:57:45 +00:00
|
|
|
Err(_) => false,
|
2018-12-18 21:33:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn icon_is_expired(path: &str) -> bool {
|
2019-01-25 17:23:51 +00:00
|
|
|
let expired = file_is_expired(path, CONFIG.icon_cache_ttl());
|
2018-12-18 21:33:32 +00:00
|
|
|
expired.unwrap_or(true)
|
|
|
|
}
|
|
|
|
|
2019-01-28 22:58:32 +00:00
|
|
|
#[derive(Debug)]
|
2019-03-18 21:12:39 +00:00
|
|
|
struct Icon {
|
2019-01-28 22:58:32 +00:00
|
|
|
priority: u8,
|
|
|
|
href: String,
|
|
|
|
}
|
|
|
|
|
2019-03-18 21:12:39 +00:00
|
|
|
impl Icon {
|
|
|
|
fn new(priority: u8, href: String) -> Self {
|
|
|
|
Self { href, priority }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-04 15:59:52 +00:00
|
|
|
/// Returns a Result/Tuple which holds a Vector IconList and a string which holds the cookies from the last response.
|
|
|
|
/// There will always be a result with a string which will contain https://example.com/favicon.ico and an empty string for the cookies.
|
|
|
|
/// This does not mean that that location does exists, but it is the default location browser use.
|
2019-01-27 14:39:19 +00:00
|
|
|
///
|
|
|
|
/// # Argument
|
|
|
|
/// * `domain` - A string which holds the domain with extension.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
/// ```
|
2019-02-04 15:59:52 +00:00
|
|
|
/// let (mut iconlist, cookie_str) = get_icon_url("github.com")?;
|
|
|
|
/// let (mut iconlist, cookie_str) = get_icon_url("gitlab.com")?;
|
2019-01-27 14:39:19 +00:00
|
|
|
/// ```
|
2019-03-18 21:12:39 +00:00
|
|
|
fn get_icon_url(domain: &str) -> Result<(Vec<Icon>, String), Error> {
|
2019-01-27 14:39:19 +00:00
|
|
|
// Default URL with secure and insecure schemes
|
|
|
|
let ssldomain = format!("https://{}", domain);
|
|
|
|
let httpdomain = format!("http://{}", domain);
|
|
|
|
|
|
|
|
// Create the iconlist
|
2019-03-18 21:12:39 +00:00
|
|
|
let mut iconlist: Vec<Icon> = Vec::new();
|
2019-01-27 14:39:19 +00:00
|
|
|
|
2019-01-31 14:49:58 +00:00
|
|
|
// Create the cookie_str to fill it all the cookies from the response
|
|
|
|
// These cookies can be used to request/download the favicon image.
|
|
|
|
// Some sites have extra security in place with for example XSRF Tokens.
|
|
|
|
let mut cookie_str = String::new();
|
|
|
|
|
2019-01-29 20:20:59 +00:00
|
|
|
let resp = get_page(&ssldomain).or_else(|_| get_page(&httpdomain));
|
2019-12-18 23:37:16 +00:00
|
|
|
if let Ok(mut content) = resp {
|
2019-01-28 22:58:32 +00:00
|
|
|
// Extract the URL from the respose in case redirects occured (like @ gitlab.com)
|
2019-01-29 17:08:23 +00:00
|
|
|
let url = content.url().clone();
|
2019-10-05 12:48:15 +00:00
|
|
|
|
2019-01-31 14:49:58 +00:00
|
|
|
let raw_cookies = content.headers().get_all("set-cookie");
|
2019-03-18 21:12:39 +00:00
|
|
|
cookie_str = raw_cookies
|
|
|
|
.iter()
|
2019-07-30 17:38:54 +00:00
|
|
|
.filter_map(|raw_cookie| raw_cookie.to_str().ok())
|
|
|
|
.map(|cookie_str| {
|
|
|
|
if let Ok(cookie) = Cookie::parse(cookie_str) {
|
|
|
|
format!("{}={}; ", cookie.name(), cookie.value())
|
|
|
|
} else {
|
|
|
|
String::new()
|
|
|
|
}
|
2019-03-18 21:12:39 +00:00
|
|
|
})
|
|
|
|
.collect::<String>();
|
2019-01-27 14:39:19 +00:00
|
|
|
|
|
|
|
// Add the default favicon.ico to the list with the domain the content responded from.
|
2019-03-18 21:12:39 +00:00
|
|
|
iconlist.push(Icon::new(35, url.join("/favicon.ico").unwrap().into_string()));
|
2019-01-27 14:39:19 +00:00
|
|
|
|
2019-12-18 23:37:16 +00:00
|
|
|
// 512KB should be more than enough for the HTML, though as we only really need
|
|
|
|
// the HTML header, it could potentially be reduced even further
|
|
|
|
let limited_reader = crate::util::LimitedReader::new(&mut content, 512 * 1024);
|
|
|
|
|
|
|
|
let soup = Soup::from_reader(limited_reader)?;
|
2019-01-27 14:39:19 +00:00
|
|
|
// Search for and filter
|
|
|
|
let favicons = soup
|
|
|
|
.tag("link")
|
|
|
|
.attr("rel", Regex::new(r"icon$|apple.*icon")?) // Only use icon rels
|
2019-11-22 12:16:12 +00:00
|
|
|
.attr("href", Regex::new(r"(?i)\w+\.(jpg|jpeg|png|ico)(\?.*)?$|^data:image.*base64")?) // Only allow specific extensions
|
2019-01-27 14:39:19 +00:00
|
|
|
.find_all();
|
|
|
|
|
|
|
|
// Loop through all the found icons and determine it's priority
|
|
|
|
for favicon in favicons {
|
2019-03-18 21:12:39 +00:00
|
|
|
let sizes = favicon.get("sizes");
|
|
|
|
let href = favicon.get("href").expect("Missing href");
|
|
|
|
let full_href = url.join(&href).unwrap().into_string();
|
|
|
|
|
|
|
|
let priority = get_icon_priority(&full_href, sizes);
|
2019-01-27 14:39:19 +00:00
|
|
|
|
2019-03-18 21:12:39 +00:00
|
|
|
iconlist.push(Icon::new(priority, full_href))
|
2019-01-27 14:39:19 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Add the default favicon.ico to the list with just the given domain
|
2019-03-18 21:12:39 +00:00
|
|
|
iconlist.push(Icon::new(35, format!("{}/favicon.ico", ssldomain)));
|
2019-10-29 13:24:01 +00:00
|
|
|
iconlist.push(Icon::new(35, format!("{}/favicon.ico", httpdomain)));
|
2019-01-27 14:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Sort the iconlist by priority
|
|
|
|
iconlist.sort_by_key(|x| x.priority);
|
|
|
|
|
|
|
|
// There always is an icon in the list, so no need to check if it exists, and just return the first one
|
2019-02-04 15:59:52 +00:00
|
|
|
Ok((iconlist, cookie_str))
|
2019-01-27 14:39:19 +00:00
|
|
|
}
|
|
|
|
|
2019-01-29 20:20:59 +00:00
|
|
|
fn get_page(url: &str) -> Result<Response, Error> {
|
2019-01-31 14:49:58 +00:00
|
|
|
get_page_with_cookies(url, "")
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_page_with_cookies(url: &str, cookie_str: &str) -> Result<Response, Error> {
|
2019-10-05 12:48:15 +00:00
|
|
|
if check_icon_domain_is_blacklisted(Url::parse(url).unwrap().host_str().unwrap_or_default()) {
|
|
|
|
err!("Favicon rel linked to a non blacklisted domain!");
|
|
|
|
}
|
2019-10-05 14:45:36 +00:00
|
|
|
|
2019-10-05 13:45:09 +00:00
|
|
|
if cookie_str.is_empty() {
|
2019-11-02 16:39:01 +00:00
|
|
|
CLIENT.get(url).send()?.error_for_status().map_err(Into::into)
|
2019-10-05 13:45:09 +00:00
|
|
|
} else {
|
|
|
|
CLIENT
|
|
|
|
.get(url)
|
|
|
|
.header("cookie", cookie_str)
|
|
|
|
.send()?
|
|
|
|
.error_for_status()
|
|
|
|
.map_err(Into::into)
|
|
|
|
}
|
2019-01-29 20:20:59 +00:00
|
|
|
}
|
|
|
|
|
2019-01-27 14:39:19 +00:00
|
|
|
/// Returns a Integer with the priority of the type of the icon which to prefer.
|
|
|
|
/// The lower the number the better.
|
|
|
|
///
|
|
|
|
/// # Arguments
|
|
|
|
/// * `href` - A string which holds the href value or relative path.
|
|
|
|
/// * `sizes` - The size of the icon if available as a <width>x<height> value like 32x32.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
/// ```
|
|
|
|
/// priority1 = get_icon_priority("http://example.com/path/to/a/favicon.png", "32x32");
|
|
|
|
/// priority2 = get_icon_priority("https://example.com/path/to/a/favicon.ico", "");
|
|
|
|
/// ```
|
2019-03-18 21:12:39 +00:00
|
|
|
fn get_icon_priority(href: &str, sizes: Option<String>) -> u8 {
|
2019-01-27 14:39:19 +00:00
|
|
|
// Check if there is a dimension set
|
2019-02-04 11:55:39 +00:00
|
|
|
let (width, height) = parse_sizes(sizes);
|
2019-01-27 14:39:19 +00:00
|
|
|
|
2019-02-04 11:55:39 +00:00
|
|
|
// Check if there is a size given
|
|
|
|
if width != 0 && height != 0 {
|
2019-01-27 14:39:19 +00:00
|
|
|
// Only allow square dimensions
|
|
|
|
if width == height {
|
|
|
|
// Change priority by given size
|
|
|
|
if width == 32 {
|
|
|
|
1
|
|
|
|
} else if width == 64 {
|
|
|
|
2
|
|
|
|
} else if width >= 24 && width <= 128 {
|
|
|
|
3
|
|
|
|
} else if width == 16 {
|
|
|
|
4
|
|
|
|
} else {
|
2019-02-04 11:55:39 +00:00
|
|
|
5
|
2019-01-27 14:39:19 +00:00
|
|
|
}
|
2019-02-04 11:55:39 +00:00
|
|
|
// There are dimensions available, but the image is not a square
|
2019-01-27 14:39:19 +00:00
|
|
|
} else {
|
|
|
|
200
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Change priority by file extension
|
|
|
|
if href.ends_with(".png") {
|
|
|
|
10
|
|
|
|
} else if href.ends_with(".jpg") || href.ends_with(".jpeg") {
|
|
|
|
20
|
|
|
|
} else {
|
|
|
|
30
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-04 11:55:39 +00:00
|
|
|
/// Returns a Tuple with the width and hight as a seperate value extracted from the sizes attribute
|
|
|
|
/// It will return 0 for both values if no match has been found.
|
|
|
|
///
|
|
|
|
/// # Arguments
|
|
|
|
/// * `sizes` - The size of the icon if available as a <width>x<height> value like 32x32.
|
2019-02-04 16:27:40 +00:00
|
|
|
///
|
2019-02-04 11:55:39 +00:00
|
|
|
/// # Example
|
|
|
|
/// ```
|
|
|
|
/// let (width, height) = parse_sizes("64x64"); // (64, 64)
|
|
|
|
/// let (width, height) = parse_sizes("x128x128"); // (128, 128)
|
|
|
|
/// let (width, height) = parse_sizes("32"); // (0, 0)
|
|
|
|
/// ```
|
2019-03-18 21:12:39 +00:00
|
|
|
fn parse_sizes(sizes: Option<String>) -> (u16, u16) {
|
2019-02-04 11:55:39 +00:00
|
|
|
let mut width: u16 = 0;
|
|
|
|
let mut height: u16 = 0;
|
|
|
|
|
2019-03-18 21:12:39 +00:00
|
|
|
if let Some(sizes) = sizes {
|
2019-02-04 11:55:39 +00:00
|
|
|
match Regex::new(r"(?x)(\d+)\D*(\d+)").unwrap().captures(sizes.trim()) {
|
2019-03-03 15:11:55 +00:00
|
|
|
None => {}
|
2019-02-04 11:55:39 +00:00
|
|
|
Some(dimensions) => {
|
|
|
|
if dimensions.len() >= 3 {
|
|
|
|
width = dimensions[1].parse::<u16>().unwrap_or_default();
|
|
|
|
height = dimensions[2].parse::<u16>().unwrap_or_default();
|
|
|
|
}
|
2019-03-03 15:11:55 +00:00
|
|
|
}
|
2019-02-04 11:55:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
(width, height)
|
|
|
|
}
|
|
|
|
|
2019-01-27 15:03:18 +00:00
|
|
|
fn download_icon(domain: &str) -> Result<Vec<u8>, Error> {
|
2019-10-10 21:21:22 +00:00
|
|
|
if check_icon_domain_is_blacklisted(domain) {
|
|
|
|
err!("Domain is blacklisted", domain)
|
|
|
|
}
|
|
|
|
|
2019-03-18 21:12:39 +00:00
|
|
|
let (iconlist, cookie_str) = get_icon_url(&domain)?;
|
2018-06-12 19:09:42 +00:00
|
|
|
|
2019-01-29 20:20:59 +00:00
|
|
|
let mut buffer = Vec::new();
|
2019-02-04 15:59:52 +00:00
|
|
|
|
2019-11-22 12:16:12 +00:00
|
|
|
use data_url::DataUrl;
|
|
|
|
|
2019-03-18 21:12:39 +00:00
|
|
|
for icon in iconlist.iter().take(5) {
|
2019-11-22 12:16:12 +00:00
|
|
|
if icon.href.starts_with("data:image") {
|
|
|
|
let datauri = DataUrl::process(&icon.href).unwrap();
|
|
|
|
// Check if we are able to decode the data uri
|
|
|
|
match datauri.decode_to_vec() {
|
|
|
|
Ok((body, _fragment)) => {
|
|
|
|
// Also check if the size is atleast 67 bytes, which seems to be the smallest png i could create
|
|
|
|
if body.len() >= 67 {
|
|
|
|
buffer = body;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2019-12-27 17:37:14 +00:00
|
|
|
_ => warn!("data uri is invalid"),
|
2019-11-22 12:16:12 +00:00
|
|
|
};
|
|
|
|
} else {
|
|
|
|
match get_page_with_cookies(&icon.href, &cookie_str) {
|
|
|
|
Ok(mut res) => {
|
|
|
|
info!("Downloaded icon from {}", icon.href);
|
|
|
|
res.copy_to(&mut buffer)?;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
Err(_) => info!("Download failed for {}", icon.href),
|
|
|
|
};
|
|
|
|
}
|
2019-02-04 15:59:52 +00:00
|
|
|
}
|
2018-06-12 19:09:42 +00:00
|
|
|
|
2019-01-29 20:20:59 +00:00
|
|
|
if buffer.is_empty() {
|
|
|
|
err!("Empty response")
|
|
|
|
}
|
|
|
|
|
2018-06-12 19:09:42 +00:00
|
|
|
Ok(buffer)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn save_icon(path: &str, icon: &[u8]) {
|
2019-11-06 19:21:47 +00:00
|
|
|
match File::create(path) {
|
|
|
|
Ok(mut f) => {
|
|
|
|
f.write_all(icon).expect("Error writing icon file");
|
|
|
|
}
|
|
|
|
Err(ref e) if e.kind() == std::io::ErrorKind::NotFound => {
|
|
|
|
create_dir_all(&CONFIG.icon_cache_folder()).expect("Error creating icon cache");
|
|
|
|
}
|
|
|
|
Err(e) => {
|
|
|
|
info!("Icon save error: {:?}", e);
|
|
|
|
}
|
|
|
|
}
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
2019-01-29 20:20:59 +00:00
|
|
|
|
|
|
|
fn _header_map() -> HeaderMap {
|
|
|
|
// Set some default headers for the request.
|
|
|
|
// Use a browser like user-agent to make sure most websites will return there correct website.
|
|
|
|
use reqwest::header::*;
|
|
|
|
|
|
|
|
macro_rules! headers {
|
2019-02-02 15:47:27 +00:00
|
|
|
($( $name:ident : $value:literal),+ $(,)? ) => {
|
2019-01-29 20:20:59 +00:00
|
|
|
let mut headers = HeaderMap::new();
|
|
|
|
$( headers.insert($name, HeaderValue::from_static($value)); )+
|
|
|
|
headers
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
headers! {
|
|
|
|
USER_AGENT: "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299",
|
|
|
|
ACCEPT_LANGUAGE: "en-US,en;q=0.8",
|
|
|
|
CACHE_CONTROL: "no-cache",
|
|
|
|
PRAGMA: "no-cache",
|
|
|
|
ACCEPT: "text/html,application/xhtml+xml,application/xml; q=0.9,image/webp,image/apng,*/*;q=0.8",
|
|
|
|
}
|
|
|
|
}
|