2020-05-02 12:13:28 +02:00
|
|
|
use base64;
|
2020-06-26 00:23:56 +02:00
|
|
|
use chrono::prelude::*;
|
2019-09-22 02:06:00 +02:00
|
|
|
use html5ever::interface::QualName;
|
2019-08-24 20:48:10 +02:00
|
|
|
use html5ever::parse_document;
|
|
|
|
use html5ever::rcdom::{Handle, NodeData, RcDom};
|
|
|
|
use html5ever::serialize::{serialize, SerializeOpts};
|
2019-12-10 01:40:29 +01:00
|
|
|
use html5ever::tendril::{format_tendril, Tendril, TendrilSink};
|
2019-09-22 02:06:00 +02:00
|
|
|
use html5ever::tree_builder::{Attribute, TreeSink};
|
|
|
|
use html5ever::{local_name, namespace_url, ns};
|
2020-01-07 05:22:28 +01:00
|
|
|
use reqwest::blocking::Client;
|
2020-06-26 00:23:56 +02:00
|
|
|
use reqwest::Url;
|
2020-05-02 12:13:28 +02:00
|
|
|
use sha2::{Digest, Sha256, Sha384, Sha512};
|
2019-10-23 00:33:22 +02:00
|
|
|
use std::collections::HashMap;
|
2019-08-23 05:17:15 +02:00
|
|
|
use std::default::Default;
|
|
|
|
|
2020-06-24 09:16:40 +02:00
|
|
|
use crate::css::embed_css;
|
|
|
|
use crate::js::attr_is_event_handler;
|
2020-06-28 07:36:41 +02:00
|
|
|
use crate::opts::Options;
|
2020-06-24 09:16:40 +02:00
|
|
|
use crate::url::{
|
|
|
|
data_to_data_url, get_url_fragment, is_http_url, resolve_url, url_has_protocol,
|
|
|
|
url_with_fragment,
|
|
|
|
};
|
|
|
|
use crate::utils::retrieve_asset;
|
|
|
|
|
2020-05-17 19:54:07 +02:00
|
|
|
struct SrcSetItem<'a> {
|
|
|
|
path: &'a str,
|
|
|
|
descriptor: &'a str,
|
|
|
|
}
|
|
|
|
|
2020-01-03 23:49:39 +01:00
|
|
|
const ICON_VALUES: &[&str] = &[
|
2019-09-29 23:15:49 +02:00
|
|
|
"icon",
|
|
|
|
"shortcut icon",
|
|
|
|
"mask-icon",
|
|
|
|
"apple-touch-icon",
|
|
|
|
"fluid-icon",
|
|
|
|
];
|
|
|
|
|
|
|
|
pub fn get_parent_node(node: &Handle) -> Handle {
|
2019-08-24 17:21:29 +02:00
|
|
|
let parent = node.parent.take().clone();
|
2019-09-22 02:06:00 +02:00
|
|
|
parent.and_then(|node| node.upgrade()).unwrap()
|
|
|
|
}
|
|
|
|
|
2020-04-03 06:00:08 +02:00
|
|
|
pub fn get_node_name(node: &Handle) -> Option<&'_ str> {
|
2019-09-22 02:06:00 +02:00
|
|
|
match &node.data {
|
2020-04-03 06:00:08 +02:00
|
|
|
NodeData::Element { ref name, .. } => Some(name.local.as_ref()),
|
|
|
|
_ => None,
|
2019-08-24 17:21:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-29 23:15:49 +02:00
|
|
|
pub fn is_icon(attr_value: &str) -> bool {
|
2020-04-03 06:00:08 +02:00
|
|
|
ICON_VALUES.contains(&attr_value.to_lowercase().as_str())
|
2019-09-29 23:15:49 +02:00
|
|
|
}
|
|
|
|
|
2020-05-02 12:13:28 +02:00
|
|
|
pub fn has_proper_integrity(data: &[u8], integrity: &str) -> bool {
|
|
|
|
if integrity.starts_with("sha256-") {
|
|
|
|
let mut hasher = Sha256::new();
|
2020-06-20 07:05:39 +02:00
|
|
|
hasher.update(data);
|
|
|
|
base64::encode(hasher.finalize()) == integrity[7..]
|
2020-05-02 12:13:28 +02:00
|
|
|
} else if integrity.starts_with("sha384-") {
|
|
|
|
let mut hasher = Sha384::new();
|
2020-06-20 07:05:39 +02:00
|
|
|
hasher.update(data);
|
|
|
|
base64::encode(hasher.finalize()) == integrity[7..]
|
2020-05-02 12:13:28 +02:00
|
|
|
} else if integrity.starts_with("sha512-") {
|
|
|
|
let mut hasher = Sha512::new();
|
2020-06-20 07:05:39 +02:00
|
|
|
hasher.update(data);
|
|
|
|
base64::encode(hasher.finalize()) == integrity[7..]
|
2020-05-02 12:13:28 +02:00
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-17 19:54:07 +02:00
|
|
|
pub fn embed_srcset(
|
|
|
|
cache: &mut HashMap<String, Vec<u8>>,
|
|
|
|
client: &Client,
|
|
|
|
parent_url: &str,
|
|
|
|
srcset: &str,
|
2020-06-28 07:36:41 +02:00
|
|
|
options: &Options,
|
2020-05-17 19:54:07 +02:00
|
|
|
) -> String {
|
|
|
|
let mut array: Vec<SrcSetItem> = vec![];
|
|
|
|
let srcset_items: Vec<&str> = srcset.split(',').collect();
|
|
|
|
for srcset_item in srcset_items {
|
|
|
|
let parts: Vec<&str> = srcset_item.trim().split_whitespace().collect();
|
|
|
|
let path = parts[0].trim();
|
|
|
|
let descriptor = if parts.len() > 1 { parts[1].trim() } else { "" };
|
|
|
|
let srcset_real_item = SrcSetItem { path, descriptor };
|
|
|
|
array.push(srcset_real_item);
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut result: String = str!();
|
|
|
|
let mut i: usize = array.len();
|
|
|
|
for part in array {
|
2020-06-28 07:36:41 +02:00
|
|
|
if options.no_images {
|
2020-05-17 19:54:07 +02:00
|
|
|
result.push_str(empty_image!());
|
|
|
|
} else {
|
|
|
|
let image_full_url = resolve_url(&parent_url, part.path).unwrap_or_default();
|
|
|
|
let image_url_fragment = get_url_fragment(image_full_url.clone());
|
2020-06-28 07:36:41 +02:00
|
|
|
match retrieve_asset(cache, client, &parent_url, &image_full_url, options.silent) {
|
2020-05-17 19:54:07 +02:00
|
|
|
Ok((image_data, image_final_url, image_media_type)) => {
|
2020-06-24 08:17:16 +02:00
|
|
|
let image_data_url =
|
|
|
|
data_to_data_url(&image_media_type, &image_data, &image_final_url);
|
2020-05-17 19:54:07 +02:00
|
|
|
// Append retreved asset as a data URL
|
2020-06-24 08:17:16 +02:00
|
|
|
let assembled_url: String =
|
|
|
|
url_with_fragment(image_data_url.as_str(), image_url_fragment.as_str());
|
|
|
|
result.push_str(assembled_url.as_ref());
|
2020-05-17 19:54:07 +02:00
|
|
|
}
|
|
|
|
Err(_) => {
|
|
|
|
// Keep remote reference if unable to retrieve the asset
|
|
|
|
if is_http_url(image_full_url.clone()) {
|
2020-06-24 08:17:16 +02:00
|
|
|
let assembled_url: String =
|
|
|
|
url_with_fragment(image_full_url.as_str(), image_url_fragment.as_str());
|
|
|
|
result.push_str(assembled_url.as_ref());
|
2020-05-17 19:54:07 +02:00
|
|
|
} else {
|
|
|
|
// Avoid breaking the structure in case if not an HTTP(S) URL
|
|
|
|
result.push_str(empty_image!());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !part.descriptor.is_empty() {
|
|
|
|
result.push_str(" ");
|
|
|
|
result.push_str(part.descriptor);
|
|
|
|
}
|
|
|
|
|
|
|
|
if i > 1 {
|
|
|
|
result.push_str(", ");
|
|
|
|
}
|
|
|
|
|
|
|
|
i -= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
result
|
|
|
|
}
|
|
|
|
|
2019-08-23 20:33:18 +02:00
|
|
|
pub fn walk_and_embed_assets(
|
2020-04-11 02:43:29 +02:00
|
|
|
cache: &mut HashMap<String, Vec<u8>>,
|
2019-12-10 03:13:25 +01:00
|
|
|
client: &Client,
|
2019-08-23 20:33:18 +02:00
|
|
|
url: &str,
|
|
|
|
node: &Handle,
|
2020-06-28 07:36:41 +02:00
|
|
|
options: &Options,
|
2019-08-23 20:33:18 +02:00
|
|
|
) {
|
2019-08-23 05:17:15 +02:00
|
|
|
match node.data {
|
|
|
|
NodeData::Document => {
|
|
|
|
// Dig deeper
|
|
|
|
for child in node.children.borrow().iter() {
|
2020-06-28 07:36:41 +02:00
|
|
|
walk_and_embed_assets(cache, client, &url, child, options);
|
2019-08-23 05:17:15 +02:00
|
|
|
}
|
2019-08-23 20:24:45 +02:00
|
|
|
}
|
2019-08-23 05:17:15 +02:00
|
|
|
NodeData::Element {
|
|
|
|
ref name,
|
|
|
|
ref attrs,
|
|
|
|
..
|
|
|
|
} => {
|
2019-08-23 20:24:45 +02:00
|
|
|
let attrs_mut = &mut attrs.borrow_mut();
|
2019-08-23 05:17:15 +02:00
|
|
|
|
2019-08-24 02:16:16 +02:00
|
|
|
match name.local.as_ref() {
|
2020-06-26 05:53:20 +02:00
|
|
|
"meta" => {
|
|
|
|
// Determine type
|
|
|
|
let mut is_unwanted_meta: bool = false;
|
|
|
|
for attr in attrs_mut.iter_mut() {
|
|
|
|
let attr_name: &str = &attr.name.local;
|
|
|
|
if attr_name.eq_ignore_ascii_case("http-equiv") {
|
|
|
|
let value: String = attr.value.to_string();
|
|
|
|
is_unwanted_meta = value.eq_ignore_ascii_case("refresh")
|
|
|
|
|| value.eq_ignore_ascii_case("location");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if is_unwanted_meta {
|
|
|
|
// Strip this node off all its attributes
|
|
|
|
while attrs_mut.len() > 0 {
|
|
|
|
attrs_mut.remove(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-08-24 02:16:16 +02:00
|
|
|
"link" => {
|
2020-05-02 12:13:28 +02:00
|
|
|
// Remove integrity attributes, keep value of the last one
|
|
|
|
let mut integrity: String = str!();
|
2019-12-26 15:44:01 +01:00
|
|
|
let mut i = 0;
|
|
|
|
while i < attrs_mut.len() {
|
2020-05-02 12:13:28 +02:00
|
|
|
let attr_name: &str = &attrs_mut[i].name.local;
|
2019-12-26 15:44:01 +01:00
|
|
|
if attr_name.eq_ignore_ascii_case("integrity") {
|
2020-05-02 12:13:28 +02:00
|
|
|
integrity = str!(attrs_mut.remove(i).value.trim());
|
2019-12-26 15:44:01 +01:00
|
|
|
} else {
|
|
|
|
i += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-09 07:34:30 +01:00
|
|
|
enum LinkType {
|
|
|
|
Icon,
|
|
|
|
Stylesheet,
|
|
|
|
Preload,
|
|
|
|
DnsPrefetch,
|
|
|
|
Unknown,
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut link_type = LinkType::Unknown;
|
2019-08-24 02:16:16 +02:00
|
|
|
for attr in attrs_mut.iter_mut() {
|
|
|
|
if &attr.name.local == "rel" {
|
2020-01-10 06:27:15 +01:00
|
|
|
let value = attr.value.trim();
|
2020-01-09 10:18:21 +01:00
|
|
|
if is_icon(value) {
|
2020-01-09 07:34:30 +01:00
|
|
|
link_type = LinkType::Icon;
|
2019-08-24 02:16:16 +02:00
|
|
|
break;
|
2020-01-10 05:52:31 +01:00
|
|
|
} else if value.eq_ignore_ascii_case("stylesheet") {
|
2020-01-09 07:34:30 +01:00
|
|
|
link_type = LinkType::Stylesheet;
|
2019-08-24 02:16:16 +02:00
|
|
|
break;
|
2020-01-10 05:52:31 +01:00
|
|
|
} else if value.eq_ignore_ascii_case("preload") {
|
2020-01-09 10:18:21 +01:00
|
|
|
link_type = LinkType::Preload;
|
|
|
|
break;
|
2020-01-10 05:52:31 +01:00
|
|
|
} else if value.eq_ignore_ascii_case("dns-prefetch") {
|
2020-01-09 10:18:21 +01:00
|
|
|
link_type = LinkType::DnsPrefetch;
|
|
|
|
break;
|
2019-08-24 02:16:16 +02:00
|
|
|
}
|
2019-08-23 05:17:15 +02:00
|
|
|
}
|
|
|
|
}
|
2020-01-09 07:34:30 +01:00
|
|
|
let link_type = link_type;
|
2019-08-23 05:17:15 +02:00
|
|
|
|
2020-01-09 07:34:30 +01:00
|
|
|
match link_type {
|
|
|
|
LinkType::Icon => {
|
2020-05-02 12:13:28 +02:00
|
|
|
// Find and remove href attribute(s), keep value of the last found one
|
|
|
|
let mut link_href: String = str!();
|
|
|
|
let mut i = 0;
|
|
|
|
while i < attrs_mut.len() {
|
|
|
|
let attr_name: &str = &attrs_mut[i].name.local;
|
|
|
|
if attr_name.eq_ignore_ascii_case("href") {
|
|
|
|
link_href = str!(attrs_mut.remove(i).value.trim());
|
|
|
|
} else {
|
|
|
|
i += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-28 07:36:41 +02:00
|
|
|
if !options.no_images && !link_href.is_empty() {
|
2020-05-02 12:13:28 +02:00
|
|
|
let link_href_full_url =
|
|
|
|
resolve_url(&url, link_href).unwrap_or_default();
|
|
|
|
let link_href_url_fragment =
|
|
|
|
get_url_fragment(link_href_full_url.clone());
|
|
|
|
match retrieve_asset(
|
|
|
|
cache,
|
|
|
|
client,
|
|
|
|
&url,
|
|
|
|
&link_href_full_url,
|
2020-06-28 07:36:41 +02:00
|
|
|
options.silent,
|
2020-05-02 12:13:28 +02:00
|
|
|
) {
|
|
|
|
Ok((
|
|
|
|
link_href_data,
|
|
|
|
link_href_final_url,
|
|
|
|
link_href_media_type,
|
|
|
|
)) => {
|
|
|
|
// Check integrity
|
|
|
|
if integrity.is_empty()
|
|
|
|
|| has_proper_integrity(&link_href_data, &integrity)
|
|
|
|
{
|
|
|
|
let link_href_data_url = data_to_data_url(
|
|
|
|
&link_href_media_type,
|
|
|
|
&link_href_data,
|
|
|
|
&link_href_final_url,
|
|
|
|
);
|
|
|
|
// Add new data URL href attribute
|
2020-06-24 08:17:16 +02:00
|
|
|
let assembled_url: String = url_with_fragment(
|
|
|
|
link_href_data_url.as_str(),
|
|
|
|
link_href_url_fragment.as_str(),
|
|
|
|
);
|
2020-05-02 12:13:28 +02:00
|
|
|
attrs_mut.push(Attribute {
|
|
|
|
name: QualName::new(
|
|
|
|
None,
|
|
|
|
ns!(),
|
|
|
|
local_name!("href"),
|
|
|
|
),
|
2020-06-24 08:17:16 +02:00
|
|
|
value: Tendril::from_slice(assembled_url.as_ref()),
|
2020-05-02 12:13:28 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Err(_) => {
|
|
|
|
// Keep remote reference if unable to retrieve the asset
|
|
|
|
if is_http_url(link_href_full_url.clone()) {
|
2020-06-24 08:17:16 +02:00
|
|
|
let assembled_url: String = url_with_fragment(
|
|
|
|
link_href_full_url.as_str(),
|
|
|
|
link_href_url_fragment.as_str(),
|
|
|
|
);
|
2020-05-02 12:13:28 +02:00
|
|
|
attrs_mut.push(Attribute {
|
|
|
|
name: QualName::new(
|
|
|
|
None,
|
|
|
|
ns!(),
|
|
|
|
local_name!("href"),
|
|
|
|
),
|
2020-06-24 08:17:16 +02:00
|
|
|
value: Tendril::from_slice(assembled_url.as_ref()),
|
2020-05-02 12:13:28 +02:00
|
|
|
});
|
|
|
|
}
|
2020-01-09 07:34:30 +01:00
|
|
|
}
|
2019-08-25 05:06:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-01-09 07:34:30 +01:00
|
|
|
LinkType::Stylesheet => {
|
2020-05-02 12:13:28 +02:00
|
|
|
// Find and remove href attribute(s), keep value of the last found one
|
|
|
|
let mut link_href: String = str!();
|
|
|
|
let mut i = 0;
|
|
|
|
while i < attrs_mut.len() {
|
|
|
|
let attr_name: &str = &attrs_mut[i].name.local;
|
|
|
|
if attr_name.eq_ignore_ascii_case("href") {
|
|
|
|
link_href = str!(attrs_mut.remove(i).value.trim());
|
|
|
|
} else {
|
|
|
|
i += 1;
|
|
|
|
}
|
|
|
|
}
|
2019-12-06 01:10:47 +01:00
|
|
|
|
2020-06-28 07:36:41 +02:00
|
|
|
if !options.no_css && !link_href.is_empty() {
|
2020-05-02 12:13:28 +02:00
|
|
|
let link_href_full_url =
|
|
|
|
resolve_url(&url, link_href).unwrap_or_default();
|
|
|
|
match retrieve_asset(
|
|
|
|
cache,
|
|
|
|
client,
|
|
|
|
&url,
|
|
|
|
&link_href_full_url,
|
2020-06-28 07:36:41 +02:00
|
|
|
options.silent,
|
2020-05-02 12:13:28 +02:00
|
|
|
) {
|
|
|
|
Ok((
|
|
|
|
link_href_data,
|
|
|
|
link_href_final_url,
|
|
|
|
_link_href_media_type,
|
|
|
|
)) => {
|
|
|
|
// Check integrity
|
|
|
|
if integrity.is_empty()
|
|
|
|
|| has_proper_integrity(&link_href_data, &integrity)
|
|
|
|
{
|
|
|
|
let css: String = embed_css(
|
|
|
|
cache,
|
|
|
|
client,
|
|
|
|
&link_href_final_url,
|
|
|
|
&String::from_utf8_lossy(&link_href_data),
|
2020-06-28 07:36:41 +02:00
|
|
|
options,
|
2020-05-02 12:13:28 +02:00
|
|
|
);
|
|
|
|
let link_href_data_url = data_to_data_url(
|
|
|
|
"text/css",
|
|
|
|
css.as_bytes(),
|
|
|
|
&link_href_final_url,
|
|
|
|
);
|
|
|
|
// Add new data URL href attribute
|
|
|
|
attrs_mut.push(Attribute {
|
|
|
|
name: QualName::new(
|
|
|
|
None,
|
|
|
|
ns!(),
|
|
|
|
local_name!("href"),
|
|
|
|
),
|
|
|
|
value: Tendril::from_slice(
|
|
|
|
link_href_data_url.as_ref(),
|
|
|
|
),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Err(_) => {
|
|
|
|
// Keep remote reference if unable to retrieve the asset
|
|
|
|
if is_http_url(link_href_full_url.clone()) {
|
|
|
|
attrs_mut.push(Attribute {
|
|
|
|
name: QualName::new(
|
|
|
|
None,
|
|
|
|
ns!(),
|
|
|
|
local_name!("href"),
|
|
|
|
),
|
|
|
|
value: Tendril::from_slice(
|
|
|
|
link_href_full_url.as_ref(),
|
|
|
|
),
|
|
|
|
});
|
|
|
|
}
|
2020-01-09 07:34:30 +01:00
|
|
|
}
|
2019-09-22 02:06:00 +02:00
|
|
|
}
|
2019-08-25 05:06:40 +02:00
|
|
|
}
|
|
|
|
}
|
2020-01-09 10:18:21 +01:00
|
|
|
LinkType::Preload | LinkType::DnsPrefetch => {
|
2020-01-13 15:47:07 +01:00
|
|
|
// Since all resources are embedded as data URL, preloading and prefetching are unnecessary
|
2020-05-02 12:13:28 +02:00
|
|
|
for _ in 0..attrs_mut.len() {
|
|
|
|
attrs_mut.remove(0);
|
2020-01-09 10:18:21 +01:00
|
|
|
}
|
|
|
|
}
|
2020-01-09 07:34:30 +01:00
|
|
|
LinkType::Unknown => {
|
|
|
|
for attr in attrs_mut.iter_mut() {
|
2020-05-02 12:13:28 +02:00
|
|
|
let attr_name: &str = &attr.name.local;
|
|
|
|
if attr_name.eq_ignore_ascii_case("href") {
|
2020-01-09 07:34:30 +01:00
|
|
|
let href_full_url =
|
2020-05-02 12:13:28 +02:00
|
|
|
resolve_url(&url, attr.value.trim()).unwrap_or_default();
|
2020-01-09 07:34:30 +01:00
|
|
|
attr.value.clear();
|
|
|
|
attr.value.push_slice(&href_full_url.as_str());
|
|
|
|
}
|
2019-08-24 20:22:34 +02:00
|
|
|
}
|
2019-08-23 05:17:15 +02:00
|
|
|
}
|
|
|
|
}
|
2019-08-23 20:24:45 +02:00
|
|
|
}
|
2020-03-05 10:56:09 +01:00
|
|
|
"body" => {
|
2020-05-02 12:13:28 +02:00
|
|
|
// Find and remove background attribute(s), keep value of the last found one
|
|
|
|
let mut background: String = str!();
|
2020-03-05 10:56:09 +01:00
|
|
|
let mut i = 0;
|
|
|
|
while i < attrs_mut.len() {
|
2020-05-02 12:13:28 +02:00
|
|
|
let attr_name: &str = &attrs_mut[i].name.local;
|
2020-03-05 10:56:09 +01:00
|
|
|
if attr_name.eq_ignore_ascii_case("background") {
|
2020-05-02 12:13:28 +02:00
|
|
|
background = str!(attrs_mut.remove(i).value.trim());
|
2020-03-05 10:56:09 +01:00
|
|
|
} else {
|
|
|
|
i += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-28 07:36:41 +02:00
|
|
|
if !options.no_images && !background.is_empty() {
|
2020-05-02 12:13:28 +02:00
|
|
|
let background_full_url = resolve_url(&url, background).unwrap_or_default();
|
|
|
|
let background_url_fragment = get_url_fragment(background_full_url.clone());
|
2020-06-28 07:36:41 +02:00
|
|
|
match retrieve_asset(
|
|
|
|
cache,
|
|
|
|
client,
|
|
|
|
&url,
|
|
|
|
&background_full_url,
|
|
|
|
options.silent,
|
|
|
|
) {
|
2020-05-02 12:13:28 +02:00
|
|
|
Ok((background_data, background_final_url, background_media_type)) => {
|
|
|
|
let background_data_url = data_to_data_url(
|
|
|
|
&background_media_type,
|
|
|
|
&background_data,
|
|
|
|
&background_final_url,
|
|
|
|
);
|
|
|
|
// Add new data URL background attribute
|
2020-06-24 08:17:16 +02:00
|
|
|
let assembled_url: String = url_with_fragment(
|
|
|
|
background_data_url.as_str(),
|
|
|
|
background_url_fragment.as_str(),
|
|
|
|
);
|
2020-05-02 12:13:28 +02:00
|
|
|
attrs_mut.push(Attribute {
|
|
|
|
name: QualName::new(None, ns!(), local_name!("background")),
|
2020-06-24 08:17:16 +02:00
|
|
|
value: Tendril::from_slice(assembled_url.as_ref()),
|
2020-05-02 12:13:28 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
Err(_) => {
|
|
|
|
// Keep remote reference if unable to retrieve the asset
|
|
|
|
if is_http_url(background_full_url.clone()) {
|
2020-06-24 08:17:16 +02:00
|
|
|
let assembled_url: String = url_with_fragment(
|
|
|
|
background_full_url.as_str(),
|
|
|
|
background_url_fragment.as_str(),
|
|
|
|
);
|
2020-05-02 12:13:28 +02:00
|
|
|
attrs_mut.push(Attribute {
|
|
|
|
name: QualName::new(None, ns!(), local_name!("background")),
|
2020-06-24 08:17:16 +02:00
|
|
|
value: Tendril::from_slice(assembled_url.as_ref()),
|
2020-05-02 12:13:28 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2020-03-05 10:56:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-08-25 05:06:40 +02:00
|
|
|
"img" => {
|
2020-03-05 10:56:09 +01:00
|
|
|
// Find source attribute(s)
|
2020-05-02 12:13:28 +02:00
|
|
|
let mut img_data_src: String = str!();
|
2020-05-17 19:54:07 +02:00
|
|
|
let mut img_src: String = str!();
|
|
|
|
let mut img_srcset: String = str!();
|
2019-12-10 01:40:29 +01:00
|
|
|
let mut i = 0;
|
|
|
|
while i < attrs_mut.len() {
|
2020-05-02 12:13:28 +02:00
|
|
|
let attr_name: &str = &attrs_mut[i].name.local;
|
2020-05-17 19:54:07 +02:00
|
|
|
if attr_name.eq_ignore_ascii_case("data-src") {
|
2020-05-02 12:13:28 +02:00
|
|
|
img_data_src = str!(attrs_mut.remove(i).value.trim());
|
2020-05-17 19:54:07 +02:00
|
|
|
} else if attr_name.eq_ignore_ascii_case("src") {
|
|
|
|
img_src = str!(attrs_mut.remove(i).value.trim());
|
|
|
|
} else if attr_name.eq_ignore_ascii_case("srcset") {
|
|
|
|
img_srcset = str!(attrs_mut.remove(i).value.trim());
|
2019-12-10 01:40:29 +01:00
|
|
|
} else {
|
|
|
|
i += 1;
|
2019-08-23 05:17:15 +02:00
|
|
|
}
|
|
|
|
}
|
2019-12-10 01:40:29 +01:00
|
|
|
|
2020-06-28 07:36:41 +02:00
|
|
|
if options.no_images {
|
2020-05-02 12:13:28 +02:00
|
|
|
// Add empty image src attribute
|
2019-12-10 01:40:29 +01:00
|
|
|
attrs_mut.push(Attribute {
|
|
|
|
name: QualName::new(None, ns!(), local_name!("src")),
|
2020-04-03 09:30:52 +02:00
|
|
|
value: Tendril::from_slice(empty_image!()),
|
2019-12-10 01:40:29 +01:00
|
|
|
});
|
2020-05-02 12:13:28 +02:00
|
|
|
} else {
|
|
|
|
if img_src.is_empty() && img_data_src.is_empty() {
|
|
|
|
// Add empty src attribute
|
|
|
|
attrs_mut.push(Attribute {
|
|
|
|
name: QualName::new(None, ns!(), local_name!("src")),
|
|
|
|
value: Tendril::from_slice(""),
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
// Add data URL src attribute
|
|
|
|
let img_full_url = resolve_url(
|
2020-03-08 20:31:42 +01:00
|
|
|
&url,
|
2020-05-02 12:13:28 +02:00
|
|
|
if !img_data_src.is_empty() {
|
|
|
|
img_data_src
|
|
|
|
} else {
|
|
|
|
img_src
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.unwrap_or_default();
|
|
|
|
let img_url_fragment = get_url_fragment(img_full_url.clone());
|
2020-06-28 07:36:41 +02:00
|
|
|
match retrieve_asset(cache, client, &url, &img_full_url, options.silent)
|
|
|
|
{
|
2020-05-02 12:13:28 +02:00
|
|
|
Ok((img_data, img_final_url, img_media_type)) => {
|
|
|
|
let img_data_url = data_to_data_url(
|
|
|
|
&img_media_type,
|
|
|
|
&img_data,
|
|
|
|
&img_final_url,
|
2020-06-24 08:17:16 +02:00
|
|
|
);
|
|
|
|
let assembled_url: String = url_with_fragment(
|
|
|
|
img_data_url.as_str(),
|
|
|
|
img_url_fragment.as_str(),
|
2020-05-02 12:13:28 +02:00
|
|
|
);
|
|
|
|
attrs_mut.push(Attribute {
|
|
|
|
name: QualName::new(None, ns!(), local_name!("src")),
|
2020-06-24 08:17:16 +02:00
|
|
|
value: Tendril::from_slice(assembled_url.as_ref()),
|
2020-05-02 12:13:28 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
Err(_) => {
|
|
|
|
// Keep remote reference if unable to retrieve the asset
|
|
|
|
if is_http_url(img_full_url.clone()) {
|
2020-06-24 08:17:16 +02:00
|
|
|
let assembled_url: String = url_with_fragment(
|
|
|
|
img_full_url.as_str(),
|
|
|
|
img_url_fragment.as_str(),
|
|
|
|
);
|
2020-05-02 12:13:28 +02:00
|
|
|
attrs_mut.push(Attribute {
|
|
|
|
name: QualName::new(None, ns!(), local_name!("src")),
|
2020-06-24 08:17:16 +02:00
|
|
|
value: Tendril::from_slice(assembled_url.as_ref()),
|
2020-05-02 12:13:28 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-05-17 19:54:07 +02:00
|
|
|
|
|
|
|
if !img_srcset.is_empty() {
|
|
|
|
attrs_mut.push(Attribute {
|
|
|
|
name: QualName::new(None, ns!(), local_name!("srcset")),
|
|
|
|
value: Tendril::from_slice(
|
2020-06-28 07:36:41 +02:00
|
|
|
embed_srcset(cache, client, &url, &img_srcset, options).as_ref(),
|
2020-05-17 19:54:07 +02:00
|
|
|
),
|
|
|
|
});
|
|
|
|
}
|
2020-05-02 12:13:28 +02:00
|
|
|
}
|
|
|
|
"svg" => {
|
2020-06-28 07:36:41 +02:00
|
|
|
if options.no_images {
|
2020-05-02 12:13:28 +02:00
|
|
|
node.children.borrow_mut().clear();
|
2019-12-10 01:40:29 +01:00
|
|
|
}
|
2019-08-23 20:24:45 +02:00
|
|
|
}
|
2020-04-03 09:30:52 +02:00
|
|
|
"input" => {
|
2020-05-02 12:13:28 +02:00
|
|
|
// Determine input type
|
|
|
|
let mut is_image_input: bool = false;
|
2020-04-03 09:30:52 +02:00
|
|
|
for attr in attrs_mut.iter_mut() {
|
|
|
|
let attr_name: &str = &attr.name.local;
|
2020-05-02 12:13:28 +02:00
|
|
|
if attr_name.eq_ignore_ascii_case("type") {
|
|
|
|
is_image_input = attr.value.to_string().eq_ignore_ascii_case("image");
|
2020-04-03 09:30:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-02 12:13:28 +02:00
|
|
|
if is_image_input {
|
|
|
|
let mut input_image_src: String = str!();
|
2020-04-03 09:30:52 +02:00
|
|
|
let mut i = 0;
|
|
|
|
while i < attrs_mut.len() {
|
2020-05-02 12:13:28 +02:00
|
|
|
let attr_name: &str = &attrs_mut[i].name.local;
|
2020-04-03 09:30:52 +02:00
|
|
|
if attr_name.eq_ignore_ascii_case("src") {
|
2020-05-02 12:13:28 +02:00
|
|
|
input_image_src = str!(attrs_mut.remove(i).value.trim());
|
2020-04-03 09:30:52 +02:00
|
|
|
} else {
|
|
|
|
i += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-28 07:36:41 +02:00
|
|
|
if options.no_images || input_image_src.is_empty() {
|
2020-04-03 09:30:52 +02:00
|
|
|
attrs_mut.push(Attribute {
|
|
|
|
name: QualName::new(None, ns!(), local_name!("src")),
|
2020-05-02 12:13:28 +02:00
|
|
|
value: Tendril::from_slice(if input_image_src.is_empty() {
|
|
|
|
""
|
|
|
|
} else {
|
|
|
|
empty_image!()
|
|
|
|
}),
|
2020-04-03 09:30:52 +02:00
|
|
|
});
|
2020-05-02 12:13:28 +02:00
|
|
|
} else {
|
|
|
|
let input_image_full_url =
|
|
|
|
resolve_url(&url, input_image_src).unwrap_or_default();
|
|
|
|
let input_image_url_fragment =
|
|
|
|
get_url_fragment(input_image_full_url.clone());
|
|
|
|
match retrieve_asset(
|
|
|
|
cache,
|
|
|
|
client,
|
|
|
|
&url,
|
|
|
|
&input_image_full_url,
|
2020-06-28 07:36:41 +02:00
|
|
|
options.silent,
|
2020-05-02 12:13:28 +02:00
|
|
|
) {
|
|
|
|
Ok((
|
|
|
|
input_image_data,
|
|
|
|
input_image_final_url,
|
|
|
|
input_image_media_type,
|
|
|
|
)) => {
|
|
|
|
let input_image_data_url = data_to_data_url(
|
|
|
|
&input_image_media_type,
|
|
|
|
&input_image_data,
|
|
|
|
&input_image_final_url,
|
|
|
|
);
|
|
|
|
// Add data URL src attribute
|
2020-06-24 08:17:16 +02:00
|
|
|
let assembled_url: String = url_with_fragment(
|
|
|
|
input_image_data_url.as_str(),
|
|
|
|
input_image_url_fragment.as_str(),
|
|
|
|
);
|
2020-05-02 12:13:28 +02:00
|
|
|
attrs_mut.push(Attribute {
|
|
|
|
name: QualName::new(None, ns!(), local_name!("src")),
|
2020-06-24 08:17:16 +02:00
|
|
|
value: Tendril::from_slice(assembled_url.as_ref()),
|
2020-05-02 12:13:28 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
Err(_) => {
|
|
|
|
// Keep remote reference if unable to retrieve the asset
|
|
|
|
if is_http_url(input_image_full_url.clone()) {
|
2020-06-24 08:17:16 +02:00
|
|
|
let assembled_url: String = url_with_fragment(
|
|
|
|
input_image_full_url.as_str(),
|
|
|
|
input_image_url_fragment.as_str(),
|
|
|
|
);
|
2020-05-02 12:13:28 +02:00
|
|
|
attrs_mut.push(Attribute {
|
|
|
|
name: QualName::new(None, ns!(), local_name!("src")),
|
2020-06-24 08:17:16 +02:00
|
|
|
value: Tendril::from_slice(assembled_url.as_ref()),
|
2020-05-02 12:13:28 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-03 09:30:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-30 03:34:39 +02:00
|
|
|
"image" => {
|
2020-05-02 12:13:28 +02:00
|
|
|
// Find and remove (xlink:)href attribute(s), keep value of the last one
|
|
|
|
let mut image_href: String = str!();
|
2020-04-30 03:34:39 +02:00
|
|
|
let mut i = 0;
|
|
|
|
while i < attrs_mut.len() {
|
2020-05-02 12:13:28 +02:00
|
|
|
let attr_name: &str = &attrs_mut[i].name.local;
|
2020-04-30 03:34:39 +02:00
|
|
|
if attr_name.eq_ignore_ascii_case("xlink:href")
|
|
|
|
|| attr_name.eq_ignore_ascii_case("href")
|
|
|
|
{
|
2020-05-02 12:13:28 +02:00
|
|
|
image_href = str!(attrs_mut.remove(i).value.trim());
|
2020-04-30 03:34:39 +02:00
|
|
|
} else {
|
|
|
|
i += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-28 07:36:41 +02:00
|
|
|
if !options.no_images && !image_href.is_empty() {
|
2020-05-02 12:13:28 +02:00
|
|
|
let image_full_url = resolve_url(&url, image_href).unwrap_or_default();
|
|
|
|
let image_url_fragment = get_url_fragment(image_full_url.clone());
|
2020-06-28 07:36:41 +02:00
|
|
|
match retrieve_asset(cache, client, &url, &image_full_url, options.silent) {
|
2020-05-02 12:13:28 +02:00
|
|
|
Ok((image_data, image_final_url, image_media_type)) => {
|
|
|
|
let image_data_url = data_to_data_url(
|
|
|
|
&image_media_type,
|
|
|
|
&image_data,
|
|
|
|
&image_final_url,
|
|
|
|
);
|
|
|
|
// Add new data URL href attribute
|
2020-06-24 08:17:16 +02:00
|
|
|
let assembled_url: String = url_with_fragment(
|
|
|
|
image_data_url.as_str(),
|
|
|
|
image_url_fragment.as_str(),
|
|
|
|
);
|
2020-05-02 12:13:28 +02:00
|
|
|
attrs_mut.push(Attribute {
|
|
|
|
name: QualName::new(None, ns!(), local_name!("href")),
|
2020-06-24 08:17:16 +02:00
|
|
|
value: Tendril::from_slice(assembled_url.as_ref()),
|
2020-05-02 12:13:28 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
Err(_) => {
|
|
|
|
// Keep remote reference if unable to retrieve the asset
|
|
|
|
if is_http_url(image_full_url.clone()) {
|
2020-06-24 08:17:16 +02:00
|
|
|
let assembled_url: String = url_with_fragment(
|
|
|
|
image_full_url.as_str(),
|
|
|
|
image_url_fragment.as_str(),
|
|
|
|
);
|
2020-05-02 12:13:28 +02:00
|
|
|
attrs_mut.push(Attribute {
|
|
|
|
name: QualName::new(None, ns!(), local_name!("href")),
|
2020-06-24 08:17:16 +02:00
|
|
|
value: Tendril::from_slice(assembled_url.as_ref()),
|
2020-05-02 12:13:28 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2020-04-30 03:34:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-08-25 05:06:40 +02:00
|
|
|
"source" => {
|
2019-08-24 17:21:29 +02:00
|
|
|
for attr in attrs_mut.iter_mut() {
|
2019-09-22 18:57:50 +02:00
|
|
|
let attr_name: &str = &attr.name.local;
|
|
|
|
|
2020-05-02 12:13:28 +02:00
|
|
|
if attr_name.eq_ignore_ascii_case("src") {
|
2020-01-10 06:27:15 +01:00
|
|
|
let src_full_url = resolve_url(&url, attr.value.trim())
|
2020-01-04 00:05:02 +01:00
|
|
|
.unwrap_or_else(|_| attr.value.to_string());
|
2019-09-22 18:57:50 +02:00
|
|
|
attr.value.clear();
|
|
|
|
attr.value.push_slice(src_full_url.as_str());
|
2020-05-02 12:13:28 +02:00
|
|
|
} else if attr_name.eq_ignore_ascii_case("srcset") {
|
2020-04-03 06:00:08 +02:00
|
|
|
if get_node_name(&get_parent_node(&node)) == Some("picture") {
|
2020-06-28 07:36:41 +02:00
|
|
|
if options.no_images {
|
2019-08-24 17:21:29 +02:00
|
|
|
attr.value.clear();
|
2020-04-03 09:30:52 +02:00
|
|
|
attr.value.push_slice(empty_image!());
|
2019-08-24 17:21:29 +02:00
|
|
|
} else {
|
2020-01-04 08:33:11 +01:00
|
|
|
let srcset_full_url =
|
2020-01-10 06:27:15 +01:00
|
|
|
resolve_url(&url, attr.value.trim()).unwrap_or_default();
|
2020-05-02 12:13:28 +02:00
|
|
|
let srcset_url_fragment =
|
|
|
|
get_url_fragment(srcset_full_url.clone());
|
|
|
|
match retrieve_asset(
|
2019-10-23 00:33:22 +02:00
|
|
|
cache,
|
2019-12-10 03:13:25 +01:00
|
|
|
client,
|
2020-03-08 20:31:42 +01:00
|
|
|
&url,
|
2019-09-22 02:06:00 +02:00
|
|
|
&srcset_full_url,
|
2020-06-28 07:36:41 +02:00
|
|
|
options.silent,
|
2020-05-02 12:13:28 +02:00
|
|
|
) {
|
|
|
|
Ok((srcset_data, srcset_final_url, srcset_media_type)) => {
|
|
|
|
let srcset_data_url = data_to_data_url(
|
|
|
|
&srcset_media_type,
|
|
|
|
&srcset_data,
|
|
|
|
&srcset_final_url,
|
|
|
|
);
|
|
|
|
attr.value.clear();
|
2020-06-24 08:17:16 +02:00
|
|
|
let assembled_url: String = url_with_fragment(
|
|
|
|
srcset_data_url.as_str(),
|
|
|
|
srcset_url_fragment.as_str(),
|
|
|
|
);
|
|
|
|
attr.value.push_slice(assembled_url.as_str());
|
2020-05-02 12:13:28 +02:00
|
|
|
}
|
|
|
|
Err(_) => {
|
|
|
|
// Keep remote reference if unable to retrieve the asset
|
|
|
|
if is_http_url(srcset_full_url.clone()) {
|
|
|
|
attr.value.clear();
|
2020-06-24 08:17:16 +02:00
|
|
|
let assembled_url: String = url_with_fragment(
|
|
|
|
srcset_full_url.as_str(),
|
|
|
|
srcset_url_fragment.as_str(),
|
|
|
|
);
|
|
|
|
attr.value.push_slice(assembled_url.as_str());
|
2020-05-02 12:13:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-08-24 17:21:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-04 20:55:45 +02:00
|
|
|
"a" | "area" => {
|
2019-08-23 05:17:15 +02:00
|
|
|
for attr in attrs_mut.iter_mut() {
|
2020-05-02 12:13:28 +02:00
|
|
|
let attr_name: &str = &attr.name.local;
|
|
|
|
if attr_name.eq_ignore_ascii_case("href") {
|
2020-01-10 06:27:15 +01:00
|
|
|
let attr_value = attr.value.trim();
|
2020-02-03 07:42:46 +01:00
|
|
|
|
2020-06-28 07:36:41 +02:00
|
|
|
if options.no_js && attr_value.trim().starts_with("javascript:") {
|
2020-02-03 07:42:46 +01:00
|
|
|
attr.value.clear();
|
|
|
|
// Replace with empty JS call to preserve original behavior
|
|
|
|
attr.value.push_slice("javascript:;");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-08-23 22:00:05 +02:00
|
|
|
// Don't touch email links or hrefs which begin with a hash sign
|
2020-01-10 06:27:15 +01:00
|
|
|
if attr_value.starts_with('#') || url_has_protocol(attr_value) {
|
2019-08-23 05:17:15 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-01-10 06:27:15 +01:00
|
|
|
let href_full_url = resolve_url(&url, attr_value).unwrap_or_default();
|
2019-08-23 05:17:15 +02:00
|
|
|
attr.value.clear();
|
2019-08-25 05:06:40 +02:00
|
|
|
attr.value.push_slice(href_full_url.as_str());
|
2019-08-23 05:17:15 +02:00
|
|
|
}
|
|
|
|
}
|
2019-08-23 20:24:45 +02:00
|
|
|
}
|
2019-08-25 05:06:40 +02:00
|
|
|
"script" => {
|
2020-05-02 12:13:28 +02:00
|
|
|
// Remove integrity and src attributes, keep values of the last ones
|
|
|
|
let mut script_integrity: String = str!();
|
|
|
|
let mut script_src: String = str!();
|
2019-12-26 15:44:01 +01:00
|
|
|
let mut i = 0;
|
|
|
|
while i < attrs_mut.len() {
|
2020-05-02 12:13:28 +02:00
|
|
|
let attr_name: &str = &attrs_mut[i].name.local;
|
2019-12-26 15:44:01 +01:00
|
|
|
if attr_name.eq_ignore_ascii_case("integrity") {
|
2020-05-02 12:13:28 +02:00
|
|
|
script_integrity = str!(attrs_mut.remove(i).value.trim());
|
|
|
|
} else if attr_name.eq_ignore_ascii_case("src") {
|
|
|
|
script_src = str!(attrs_mut.remove(i).value.trim());
|
2019-12-26 15:44:01 +01:00
|
|
|
} else {
|
|
|
|
i += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-28 07:36:41 +02:00
|
|
|
if options.no_js {
|
2020-05-02 12:13:28 +02:00
|
|
|
// Empty inner content (src is already gone)
|
2019-08-23 05:17:15 +02:00
|
|
|
node.children.borrow_mut().clear();
|
2020-05-02 12:13:28 +02:00
|
|
|
} else if !script_src.is_empty() {
|
|
|
|
let script_full_url = resolve_url(&url, script_src).unwrap_or_default();
|
2020-06-28 07:36:41 +02:00
|
|
|
match retrieve_asset(cache, client, &url, &script_full_url, options.silent)
|
|
|
|
{
|
2020-05-02 12:13:28 +02:00
|
|
|
Ok((script_data, script_final_url, _script_media_type)) => {
|
|
|
|
// Only embed if we're able to validate integrity
|
|
|
|
if script_integrity.is_empty()
|
|
|
|
|| has_proper_integrity(&script_data, &script_integrity)
|
|
|
|
{
|
|
|
|
let script_data_url = data_to_data_url(
|
|
|
|
"application/javascript",
|
|
|
|
&script_data,
|
|
|
|
&script_final_url,
|
|
|
|
);
|
|
|
|
// Add new data URL src attribute
|
|
|
|
attrs_mut.push(Attribute {
|
|
|
|
name: QualName::new(None, ns!(), local_name!("src")),
|
|
|
|
value: Tendril::from_slice(script_data_url.as_ref()),
|
|
|
|
});
|
|
|
|
}
|
2019-08-23 05:17:15 +02:00
|
|
|
}
|
2020-05-02 12:13:28 +02:00
|
|
|
Err(_) => {
|
|
|
|
// Keep remote reference if unable to retrieve the asset
|
|
|
|
if is_http_url(script_full_url.clone()) {
|
|
|
|
attrs_mut.push(Attribute {
|
|
|
|
name: QualName::new(None, ns!(), local_name!("src")),
|
|
|
|
value: Tendril::from_slice(script_full_url.as_ref()),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2019-08-23 05:17:15 +02:00
|
|
|
}
|
2019-08-23 20:24:45 +02:00
|
|
|
}
|
2019-09-22 02:06:00 +02:00
|
|
|
"style" => {
|
2020-06-28 07:36:41 +02:00
|
|
|
if options.no_css {
|
2019-09-29 23:15:49 +02:00
|
|
|
// Empty inner content of STYLE tags
|
2019-09-22 02:06:00 +02:00
|
|
|
node.children.borrow_mut().clear();
|
2019-12-06 02:05:52 +01:00
|
|
|
} else {
|
|
|
|
for node in node.children.borrow_mut().iter_mut() {
|
2019-12-06 02:41:43 +01:00
|
|
|
if let NodeData::Text { ref contents } = node.data {
|
2019-12-06 02:20:09 +01:00
|
|
|
let mut tendril = contents.borrow_mut();
|
2020-06-28 07:36:41 +02:00
|
|
|
let replacement =
|
|
|
|
embed_css(cache, client, &url, tendril.as_ref(), options);
|
2019-12-06 02:20:09 +01:00
|
|
|
tendril.clear();
|
2019-12-09 18:41:21 +01:00
|
|
|
tendril.push_slice(&replacement);
|
2019-12-06 02:05:52 +01:00
|
|
|
}
|
|
|
|
}
|
2019-09-22 02:06:00 +02:00
|
|
|
}
|
|
|
|
}
|
2019-08-25 05:06:40 +02:00
|
|
|
"form" => {
|
2019-08-23 09:26:05 +02:00
|
|
|
for attr in attrs_mut.iter_mut() {
|
2020-05-02 12:13:28 +02:00
|
|
|
let attr_name: &str = &attr.name.local;
|
|
|
|
if attr_name.eq_ignore_ascii_case("action") {
|
|
|
|
let form_action = attr.value.trim();
|
|
|
|
// Modify action property to ensure it's a full URL
|
|
|
|
if !is_http_url(form_action) {
|
|
|
|
let form_action_full_url =
|
|
|
|
resolve_url(&url, form_action).unwrap_or_default();
|
2019-09-29 23:15:49 +02:00
|
|
|
attr.value.clear();
|
2020-05-02 12:13:28 +02:00
|
|
|
attr.value.push_slice(form_action_full_url.as_str());
|
2019-08-23 09:26:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-08-23 20:24:45 +02:00
|
|
|
}
|
2020-02-24 06:06:31 +01:00
|
|
|
"frame" | "iframe" => {
|
2019-09-29 23:15:49 +02:00
|
|
|
for attr in attrs_mut.iter_mut() {
|
2020-05-02 12:13:28 +02:00
|
|
|
let attr_name: &str = &attr.name.local;
|
|
|
|
if attr_name.eq_ignore_ascii_case("src") {
|
2020-06-28 07:36:41 +02:00
|
|
|
if options.no_frames {
|
2019-09-29 23:15:49 +02:00
|
|
|
// Empty the src attribute
|
2019-09-22 02:06:00 +02:00
|
|
|
attr.value.clear();
|
2019-09-29 23:15:49 +02:00
|
|
|
continue;
|
2019-08-27 04:57:10 +02:00
|
|
|
}
|
|
|
|
|
2020-02-24 06:06:31 +01:00
|
|
|
let frame_src = attr.value.trim();
|
2019-09-22 02:06:00 +02:00
|
|
|
|
2020-02-24 06:06:31 +01:00
|
|
|
// Ignore (i)frames with empty source — they cause infinite loops
|
|
|
|
if frame_src.is_empty() {
|
2019-09-29 23:15:49 +02:00
|
|
|
continue;
|
2019-09-22 02:06:00 +02:00
|
|
|
}
|
2019-09-29 23:15:49 +02:00
|
|
|
|
2020-05-02 12:13:28 +02:00
|
|
|
let frame_full_url = resolve_url(&url, frame_src).unwrap_or_default();
|
|
|
|
let frame_url_fragment = get_url_fragment(frame_full_url.clone());
|
2020-06-28 07:36:41 +02:00
|
|
|
match retrieve_asset(
|
|
|
|
cache,
|
|
|
|
client,
|
|
|
|
&url,
|
|
|
|
&frame_full_url,
|
|
|
|
options.silent,
|
|
|
|
) {
|
2020-05-02 12:13:28 +02:00
|
|
|
Ok((frame_data, frame_final_url, frame_media_type)) => {
|
|
|
|
let frame_dom =
|
|
|
|
html_to_dom(&String::from_utf8_lossy(&frame_data));
|
|
|
|
walk_and_embed_assets(
|
|
|
|
cache,
|
|
|
|
client,
|
|
|
|
&frame_final_url,
|
|
|
|
&frame_dom.document,
|
2020-06-28 07:36:41 +02:00
|
|
|
&options,
|
2020-05-02 12:13:28 +02:00
|
|
|
);
|
|
|
|
let mut frame_data: Vec<u8> = Vec::new();
|
|
|
|
serialize(
|
|
|
|
&mut frame_data,
|
|
|
|
&frame_dom.document,
|
|
|
|
SerializeOpts::default(),
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
let frame_data_url = data_to_data_url(
|
|
|
|
&frame_media_type,
|
|
|
|
&frame_data,
|
|
|
|
&frame_final_url,
|
|
|
|
);
|
|
|
|
attr.value.clear();
|
2020-06-24 08:17:16 +02:00
|
|
|
let assembled_url: String = url_with_fragment(
|
|
|
|
frame_data_url.as_str(),
|
|
|
|
frame_url_fragment.as_str(),
|
|
|
|
);
|
|
|
|
attr.value.push_slice(assembled_url.as_str());
|
2020-05-02 12:13:28 +02:00
|
|
|
}
|
|
|
|
Err(_) => {
|
|
|
|
// Keep remote reference if unable to retrieve the asset
|
|
|
|
if is_http_url(frame_full_url.clone()) {
|
|
|
|
attr.value.clear();
|
2020-06-24 08:17:16 +02:00
|
|
|
let assembled_url: String = url_with_fragment(
|
|
|
|
frame_full_url.as_str(),
|
|
|
|
frame_url_fragment.as_str(),
|
|
|
|
);
|
|
|
|
attr.value.push_slice(assembled_url.as_str());
|
2020-05-02 12:13:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-08-24 02:16:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-09-22 18:57:50 +02:00
|
|
|
"video" => {
|
|
|
|
for attr in attrs_mut.iter_mut() {
|
2020-05-02 12:13:28 +02:00
|
|
|
let attr_name: &str = &attr.name.local;
|
|
|
|
if attr_name.eq_ignore_ascii_case("poster") {
|
|
|
|
let video_poster_url = attr.value.trim();
|
2019-09-22 18:57:50 +02:00
|
|
|
|
2019-09-29 23:15:49 +02:00
|
|
|
// Skip posters with empty source
|
2020-05-02 12:13:28 +02:00
|
|
|
if video_poster_url.is_empty() {
|
2019-09-22 18:57:50 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-06-28 07:36:41 +02:00
|
|
|
if options.no_images {
|
2019-09-22 18:57:50 +02:00
|
|
|
attr.value.clear();
|
2020-05-02 12:13:28 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
let video_poster_full_url =
|
|
|
|
resolve_url(&url, video_poster_url).unwrap_or_default();
|
|
|
|
let video_poster_url_fragment =
|
|
|
|
get_url_fragment(video_poster_full_url.clone());
|
|
|
|
match retrieve_asset(
|
|
|
|
cache,
|
|
|
|
client,
|
|
|
|
&url,
|
|
|
|
&video_poster_full_url,
|
2020-06-28 07:36:41 +02:00
|
|
|
options.silent,
|
2020-05-02 12:13:28 +02:00
|
|
|
) {
|
|
|
|
Ok((
|
|
|
|
video_poster_data,
|
|
|
|
video_poster_final_url,
|
|
|
|
video_poster_media_type,
|
|
|
|
)) => {
|
|
|
|
let video_poster_data_url = data_to_data_url(
|
|
|
|
&video_poster_media_type,
|
|
|
|
&video_poster_data,
|
|
|
|
&video_poster_final_url,
|
|
|
|
);
|
|
|
|
attr.value.clear();
|
2020-06-24 08:17:16 +02:00
|
|
|
let assembled_url: String = url_with_fragment(
|
|
|
|
video_poster_data_url.as_str(),
|
|
|
|
video_poster_url_fragment.as_str(),
|
|
|
|
);
|
|
|
|
attr.value.push_slice(assembled_url.as_str());
|
2020-05-02 12:13:28 +02:00
|
|
|
}
|
|
|
|
Err(_) => {
|
|
|
|
// Keep remote reference if unable to retrieve the asset
|
|
|
|
if is_http_url(video_poster_full_url.clone()) {
|
|
|
|
attr.value.clear();
|
2020-06-24 08:17:16 +02:00
|
|
|
let assembled_url: String = url_with_fragment(
|
|
|
|
video_poster_full_url.as_str(),
|
|
|
|
video_poster_url_fragment.as_str(),
|
|
|
|
);
|
|
|
|
attr.value.push_slice(assembled_url.as_str());
|
2020-05-02 12:13:28 +02:00
|
|
|
}
|
|
|
|
}
|
2019-09-22 18:57:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-08-25 05:06:40 +02:00
|
|
|
_ => {}
|
2019-08-23 05:17:15 +02:00
|
|
|
}
|
|
|
|
|
2019-12-06 21:28:08 +01:00
|
|
|
// Process style attributes
|
2020-06-28 07:36:41 +02:00
|
|
|
if options.no_css {
|
2019-09-22 02:06:00 +02:00
|
|
|
// Get rid of style attributes
|
2020-05-02 12:13:28 +02:00
|
|
|
let mut i = 0;
|
|
|
|
while i < attrs_mut.len() {
|
|
|
|
let attr_name: &str = &attrs_mut[i].name.local;
|
|
|
|
if attr_name.eq_ignore_ascii_case("style") {
|
|
|
|
attrs_mut.remove(i);
|
|
|
|
} else {
|
|
|
|
i += 1;
|
2019-09-22 02:06:00 +02:00
|
|
|
}
|
|
|
|
}
|
2019-12-06 21:28:08 +01:00
|
|
|
} else {
|
|
|
|
// Otherwise, parse any links found in the attributes
|
|
|
|
for attribute in attrs_mut
|
|
|
|
.iter_mut()
|
|
|
|
.filter(|a| a.name.local.as_ref().eq_ignore_ascii_case("style"))
|
|
|
|
{
|
2020-06-28 07:36:41 +02:00
|
|
|
let replacement =
|
|
|
|
embed_css(cache, client, &url, attribute.value.as_ref(), options);
|
2020-03-29 09:54:20 +02:00
|
|
|
// let replacement = str!();
|
2019-12-06 21:28:08 +01:00
|
|
|
attribute.value.clear();
|
2019-12-09 18:41:21 +01:00
|
|
|
attribute.value.push_slice(&replacement);
|
2019-12-06 21:28:08 +01:00
|
|
|
}
|
2019-09-22 02:06:00 +02:00
|
|
|
}
|
|
|
|
|
2020-06-28 07:36:41 +02:00
|
|
|
if options.no_js {
|
2019-08-23 05:17:15 +02:00
|
|
|
// Get rid of JS event attributes
|
2019-09-29 23:15:49 +02:00
|
|
|
let mut js_attr_indexes = Vec::new();
|
|
|
|
for (i, attr) in attrs_mut.iter_mut().enumerate() {
|
|
|
|
if attr_is_event_handler(&attr.name.local) {
|
|
|
|
js_attr_indexes.push(i);
|
2019-08-23 05:17:15 +02:00
|
|
|
}
|
|
|
|
}
|
2019-09-29 23:15:49 +02:00
|
|
|
js_attr_indexes.reverse();
|
|
|
|
for attr_index in js_attr_indexes {
|
|
|
|
attrs_mut.remove(attr_index);
|
|
|
|
}
|
2019-08-23 20:24:45 +02:00
|
|
|
}
|
2019-08-23 05:17:15 +02:00
|
|
|
|
|
|
|
// Dig deeper
|
|
|
|
for child in node.children.borrow().iter() {
|
2020-06-28 07:36:41 +02:00
|
|
|
walk_and_embed_assets(cache, client, &url, child, options);
|
2019-08-23 05:17:15 +02:00
|
|
|
}
|
2019-08-23 20:24:45 +02:00
|
|
|
}
|
2019-09-22 02:06:00 +02:00
|
|
|
_ => {
|
2020-06-28 07:36:41 +02:00
|
|
|
// Note: in case of options.no_js being set to true, there's no need to worry about
|
2019-09-22 02:06:00 +02:00
|
|
|
// getting rid of comments that may contain scripts, e.g. <!--[if IE]><script>...
|
|
|
|
// since that's not part of W3C standard and therefore gets ignored
|
|
|
|
// by browsers other than IE [5, 9]
|
|
|
|
}
|
2019-08-23 05:17:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn html_to_dom(data: &str) -> html5ever::rcdom::RcDom {
|
|
|
|
parse_document(RcDom::default(), Default::default())
|
|
|
|
.from_utf8()
|
|
|
|
.read_from(&mut data.as_bytes())
|
|
|
|
.unwrap()
|
|
|
|
}
|
|
|
|
|
2019-09-22 02:06:00 +02:00
|
|
|
fn get_child_node_by_name(handle: &Handle, node_name: &str) -> Handle {
|
|
|
|
let children = handle.children.borrow();
|
|
|
|
let matching_children = children.iter().find(|child| match child.data {
|
|
|
|
NodeData::Element { ref name, .. } => &*name.local == node_name,
|
|
|
|
_ => false,
|
|
|
|
});
|
|
|
|
match matching_children {
|
|
|
|
Some(node) => node.clone(),
|
2020-01-03 23:49:26 +01:00
|
|
|
_ => handle.clone(),
|
2019-09-22 02:06:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-28 07:36:41 +02:00
|
|
|
pub fn stringify_document(handle: &Handle, options: &Options) -> String {
|
2019-09-22 02:06:00 +02:00
|
|
|
let mut buf: Vec<u8> = Vec::new();
|
|
|
|
serialize(&mut buf, handle, SerializeOpts::default())
|
|
|
|
.expect("unable to serialize DOM into buffer");
|
|
|
|
|
2020-01-04 08:33:11 +01:00
|
|
|
let mut result = String::from_utf8(buf).unwrap();
|
2019-09-22 02:06:00 +02:00
|
|
|
|
2020-06-26 22:19:44 +02:00
|
|
|
// Take care of CSP
|
2020-06-28 07:36:41 +02:00
|
|
|
if options.isolate
|
|
|
|
|| options.no_css
|
|
|
|
|| options.no_fonts
|
|
|
|
|| options.no_frames
|
|
|
|
|| options.no_js
|
|
|
|
|| options.no_images
|
|
|
|
{
|
2019-09-22 02:06:00 +02:00
|
|
|
let mut buf: Vec<u8> = Vec::new();
|
|
|
|
let mut dom = html_to_dom(&result);
|
|
|
|
let doc = dom.get_document();
|
|
|
|
let html = get_child_node_by_name(&doc, "html");
|
|
|
|
let head = get_child_node_by_name(&html, "head");
|
2020-06-28 07:36:41 +02:00
|
|
|
let csp_content: String = csp(options);
|
2019-09-29 23:15:49 +02:00
|
|
|
|
|
|
|
let meta = dom.create_element(
|
|
|
|
QualName::new(None, ns!(), local_name!("meta")),
|
|
|
|
vec![
|
|
|
|
Attribute {
|
|
|
|
name: QualName::new(None, ns!(), local_name!("http-equiv")),
|
|
|
|
value: format_tendril!("Content-Security-Policy"),
|
|
|
|
},
|
|
|
|
Attribute {
|
|
|
|
name: QualName::new(None, ns!(), local_name!("content")),
|
2020-06-26 22:19:44 +02:00
|
|
|
value: format_tendril!("{}", csp_content),
|
2019-09-29 23:15:49 +02:00
|
|
|
},
|
|
|
|
],
|
|
|
|
Default::default(),
|
|
|
|
);
|
|
|
|
// Note: the CSP meta-tag has to be prepended, never appended,
|
|
|
|
// since there already may be one defined in the document,
|
|
|
|
// and browsers don't allow re-defining them (for obvious reasons)
|
2020-06-26 22:19:44 +02:00
|
|
|
head.children.borrow_mut().reverse();
|
|
|
|
head.children.borrow_mut().push(meta.clone());
|
|
|
|
head.children.borrow_mut().reverse();
|
2019-09-29 23:15:49 +02:00
|
|
|
|
2020-06-26 22:19:44 +02:00
|
|
|
// Note: we can't make it isolate the page right away since it may have no HEAD element,
|
|
|
|
// ergo we have to serialize, parse the DOM again, insert the CSP meta tag, and then
|
|
|
|
// finally serialize the result
|
2019-09-22 02:06:00 +02:00
|
|
|
serialize(&mut buf, &doc, SerializeOpts::default())
|
|
|
|
.expect("unable to serialize DOM into buffer");
|
|
|
|
result = String::from_utf8(buf).unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
result
|
2019-08-23 05:17:15 +02:00
|
|
|
}
|
2020-06-26 00:23:56 +02:00
|
|
|
|
2020-06-28 07:36:41 +02:00
|
|
|
pub fn csp(options: &Options) -> String {
|
2020-06-26 22:19:44 +02:00
|
|
|
let mut string_list = vec![];
|
|
|
|
|
2020-06-28 07:36:41 +02:00
|
|
|
if options.isolate {
|
2020-06-26 22:19:44 +02:00
|
|
|
string_list.push("default-src 'unsafe-inline' data:;");
|
|
|
|
}
|
|
|
|
|
2020-06-28 07:36:41 +02:00
|
|
|
if options.no_css {
|
2020-06-26 22:19:44 +02:00
|
|
|
string_list.push("style-src 'none';");
|
|
|
|
}
|
|
|
|
|
2020-06-28 07:36:41 +02:00
|
|
|
if options.no_fonts {
|
2020-06-27 00:14:46 +02:00
|
|
|
string_list.push("font-src 'none';");
|
|
|
|
}
|
|
|
|
|
2020-06-28 07:36:41 +02:00
|
|
|
if options.no_frames {
|
2020-06-26 22:19:44 +02:00
|
|
|
string_list.push("frame-src 'none';");
|
|
|
|
string_list.push("child-src 'none';");
|
|
|
|
}
|
|
|
|
|
2020-06-28 07:36:41 +02:00
|
|
|
if options.no_js {
|
2020-06-26 22:19:44 +02:00
|
|
|
string_list.push("script-src 'none';");
|
|
|
|
}
|
|
|
|
|
2020-06-28 07:36:41 +02:00
|
|
|
if options.no_images {
|
2020-06-26 22:19:44 +02:00
|
|
|
// Note: data: is needed for transparent pixels
|
|
|
|
string_list.push("img-src data:;");
|
|
|
|
}
|
|
|
|
|
|
|
|
string_list.join(" ")
|
|
|
|
}
|
|
|
|
|
2020-06-26 00:23:56 +02:00
|
|
|
pub fn metadata_tag(url: &str) -> String {
|
|
|
|
let timestamp = Utc::now().to_rfc3339_opts(SecondsFormat::Secs, true);
|
|
|
|
|
|
|
|
// Safe to unwrap (we just put this through an HTTP request)
|
|
|
|
match Url::parse(url) {
|
|
|
|
Ok(mut clean_url) => {
|
|
|
|
clean_url.set_fragment(None);
|
|
|
|
|
|
|
|
// Prevent credentials from getting into metadata
|
|
|
|
if is_http_url(url) {
|
|
|
|
// Only HTTP(S) URLs may feature credentials
|
|
|
|
clean_url.set_username("").unwrap();
|
|
|
|
clean_url.set_password(None).unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
if is_http_url(url) {
|
|
|
|
format!(
|
|
|
|
"<!-- Saved from {} at {} using {} v{} -->",
|
|
|
|
&clean_url,
|
|
|
|
timestamp,
|
|
|
|
env!("CARGO_PKG_NAME"),
|
|
|
|
env!("CARGO_PKG_VERSION"),
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
format!(
|
|
|
|
"<!-- Saved from local source at {} using {} v{} -->",
|
|
|
|
timestamp,
|
|
|
|
env!("CARGO_PKG_NAME"),
|
|
|
|
env!("CARGO_PKG_VERSION"),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Err(_) => str!(),
|
|
|
|
}
|
|
|
|
}
|