1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-25 23:47:47 +01:00
pywb/pywb/static/wombat.js
Ilya Kreymer 781b2aa393 record-history experiments via custom metadata record, head_insert (wip)
- check last url instead of last state, which may be empty
- add init_state tracking
- add accept filtering, enabled via special rule
2018-02-13 18:36:01 -08:00

3596 lines
111 KiB
JavaScript

/*
Copyright(c) 2013-2018 Rhizome and Ilya Kreymer. Released under the GNU General Public License.
This file is part of pywb, https://github.com/webrecorder/pywb
pywb is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
pywb is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with pywb. If not, see <http://www.gnu.org/licenses/>.
*/
//============================================
// Wombat JS-Rewriting Library v2.53
//============================================
var _WBWombat = function($wbwindow, wbinfo) {
// associative array for func->handler for message and storage events
function FuncMap() {
this._arr = [];
this.find = function(func) {
for (var i = 0; i < this._arr.length; i++) {
if (this._arr[i][0] == func) {
return i;
}
}
return -1;
}
this.add_or_get = function(func, initter) {
var res = this.find(func);
if (res >= 0) {
return this._arr[res][1];
}
var value = initter();
this._arr.push([func, value]);
return value;
}
this.remove = function(func) {
var res = this.find(func);
if (res >= 0) {
return this._arr.splice(res, 1)[0][1];
}
return null;
}
this.map = function(param) {
for (var i = 0; i < this._arr.length; i++) {
(this._arr[i][0])(param);
}
}
}
// Globals
var wb_replay_prefix;
var wb_abs_prefix;
var wb_rel_prefix;
var wb_capture_date_part;
var wb_orig_scheme;
var wb_orig_origin;
var wb_curr_host;
var wb_setAttribute = $wbwindow.Element.prototype.setAttribute;
var wb_getAttribute = $wbwindow.Element.prototype.getAttribute;
var wb_info;
var wb_unrewrite_rx;
var wb_wombat_updating = false;
// custom options
var wb_opts;
var wb_is_proxy = false;
var message_listeners = new FuncMap();
var storage_listeners = new FuncMap();
//============================================
function is_host_url(str) {
// Good guess that's its a hostname
if (str.indexOf("www.") == 0) {
return true;
}
// hostname:port (port required)
var matches = str.match(/^[\w-]+(\.[\w-_]+)+(:\d+)(\/|$)/);
if (matches && (matches[0].length < 64)) {
return true;
}
// ip:port
matches = str.match(/^\d+\.\d+\.\d+\.\d+(:\d+)?(\/|$)/);
if (matches && (matches[0].length < 64)) {
return true;
}
return false;
}
//============================================
function starts_with(string, arr_or_prefix) {
if (!string) { return undefined; }
if (arr_or_prefix instanceof Array) {
for (var i = 0; i < arr_or_prefix.length; i++) {
if (string.indexOf(arr_or_prefix[i]) == 0) {
return arr_or_prefix[i];
}
}
} else if (string.indexOf(arr_or_prefix) == 0) {
return arr_or_prefix;
}
return undefined;
}
//============================================
function should_rewrite_attr(tagName, attr) {
if (attr == "href" || attr == "src") {
return true;
}
if (tagName == "VIDEO" && attr == "poster") {
return true;
}
if (tagName == "META" && attr == "content") {
return true;
}
return false;
}
//============================================
function ends_with(str, suffix) {
if (str.indexOf(suffix, str.length - suffix.length) !== -1) {
return suffix;
} else {
return undefined;
}
}
//============================================
var rewrite_url = rewrite_url_;
function rewrite_url_debug(url, use_rel, mod) {
var rewritten = rewrite_url_(url, use_rel, mod);
if (url != rewritten) {
console.log('REWRITE: ' + url + ' -> ' + rewritten);
} else {
console.log('NOT REWRITTEN ' + url);
}
return rewritten;
}
//============================================
var HTTP_PREFIX = "http://";
var HTTPS_PREFIX = "https://";
var REL_PREFIX = "//";
var VALID_PREFIXES = [HTTP_PREFIX, HTTPS_PREFIX, REL_PREFIX];
var IGNORE_PREFIXES = ["#", "about:", "data:", "mailto:", "javascript:", "{", "*"];
var BAD_PREFIXES;
function init_bad_prefixes(prefix) {
BAD_PREFIXES = ["http:" + prefix, "https:" + prefix,
"http:/" + prefix, "https:/" + prefix];
}
var URL_PROPS = ["href", "hash", "pathname", "host", "hostname", "protocol", "origin", "search", "port"];
//============================================
function rewrite_url_(url, use_rel, mod) {
// If undefined, just return it
if (!url) {
return url;
}
var urltype_ = (typeof url);
// If object, use toString
if (urltype_ == "object") {
url = url.toString();
} else if (urltype_ != "string") {
return url;
}
// proxy mode: If no wb_replay_prefix, only rewrite scheme
if (wb_is_proxy) {
if (wb_orig_scheme == HTTP_PREFIX && starts_with(url, HTTPS_PREFIX)) {
return HTTP_PREFIX + url.substr(HTTPS_PREFIX.length);
} else if (wb_orig_scheme == HTTPS_PREFIX && starts_with(url, HTTP_PREFIX)) {
return HTTPS_PREFIX + url.substr(HTTP_PREFIX.length);
} else {
return url;
}
}
// just in case wombat reference made it into url!
url = url.replace("WB_wombat_", "");
// ignore anchors, about, data
if (starts_with(url, IGNORE_PREFIXES)) {
return url;
}
// OPTS: additional ignore prefixes
if (wb_opts.no_rewrite_prefixes) {
if (starts_with(url, wb_opts.no_rewrite_prefixes)) {
return url;
}
}
// If starts with prefix, no rewriting needed
// Only check replay prefix (no date) as date may be different for each
// capture
// if scheme relative, prepend current scheme
var check_url;
if (url.indexOf("//") == 0) {
check_url = window.location.protocol + url;
} else {
check_url = url;
}
if (starts_with(check_url, wb_replay_prefix) || starts_with(check_url, $wbwindow.location.origin + wb_replay_prefix)) {
return url;
}
// A special case where the port somehow gets dropped
// Check for this and add it back in, eg http://localhost/path/ -> http://localhost:8080/path/
if ($wbwindow.location.host != $wbwindow.location.hostname) {
if (starts_with(url, $wbwindow.location.protocol + '//' + $wbwindow.location.hostname + "/")) {
url = url.replace("/" + $wbwindow.location.hostname + "/", "/" + $wbwindow.location.host + "/");
return url;
}
}
// If server relative url, add prefix and original host
if (url.charAt(0) == "/" && !starts_with(url, REL_PREFIX)) {
// Already a relative url, don't make any changes!
if (wb_capture_date_part && url.indexOf(wb_capture_date_part) >= 0) {
return url;
}
// relative collection
if ((url.indexOf(wb_rel_prefix) == 0) && (url.indexOf("http") > 1)) {
var scheme_sep = url.indexOf(":/");
if (scheme_sep > 0 && url[scheme_sep + 2] != '/') {
url = url.substring(0, scheme_sep + 2) + "/" + url.substring(scheme_sep + 2);
}
return url;
}
return get_final_url(true, mod, wb_orig_origin + url);
}
// Use a parser
if (url.charAt(0) == ".") {
url = resolve_rel_url(url);
}
// If full url starting with http://, https:// or //
// add rewrite prefix
var prefix = starts_with(url, VALID_PREFIXES);
if (prefix) {
var orig_host = $wbwindow.__WB_replay_top.location.host;
var orig_protocol = $wbwindow.__WB_replay_top.location.protocol;
var prefix_host = prefix + orig_host + '/';
// if already rewritten url, must still check scheme
if (starts_with(url, prefix_host)) {
if (starts_with(url, wb_replay_prefix)) {
return url;
}
var curr_scheme = orig_protocol + '//';
var path = url.substring(prefix_host.length);
var rebuild = false;
if (path.indexOf(wb_rel_prefix) < 0 && url.indexOf("/static/") < 0) {
path = get_final_url(true, mod, WB_wombat_location.origin + "/" + path);
rebuild = true;
}
// replace scheme to ensure using the correct server scheme
//if (starts_with(url, wb_orig_scheme) && (wb_orig_scheme != curr_scheme)) {
if (prefix != curr_scheme && prefix != REL_PREFIX) {
rebuild = true;
}
if (rebuild) {
if (!use_rel) {
url = curr_scheme + orig_host;
} else {
url = "";
}
if (path && path[0] != "/") {
url += "/";
}
url += path;
}
return url;
}
return get_final_url(use_rel, mod, url);
}
// Check for common bad prefixes and remove them
prefix = starts_with(url, BAD_PREFIXES);
if (prefix) {
url = extract_orig(url);
return get_final_url(use_rel, mod, url);
}
// May or may not be a hostname, call function to determine
// If it is, add the prefix and make sure port is removed
if (is_host_url(url) && !starts_with(url, $wbwindow.location.host + '/')) {
return get_final_url(use_rel, mod, wb_orig_scheme + url);
}
return url;
}
//============================================
function resolve_rel_url(url, doc) {
doc = doc || $wbwindow.document;
var parser = make_parser(doc.baseURI, doc);
var href = parser.href;
var hash = href.lastIndexOf("#");
if (hash >= 0) {
href = href.substring(0, hash);
}
var lastslash = href.lastIndexOf("/");
if (lastslash >= 0 && lastslash != (href.length - 1)) {
href = href.substring(0, lastslash + 1);
}
parser.href = href + url;
url = parser.href;
return url;
}
//============================================
function extract_orig(href) {
if (!href) {
return "";
}
var orig_href = href;
// proxy mode: no extraction needed
if (wb_is_proxy) {
return href;
}
href = href.toString();
// ignore certain urls
if (starts_with(href, IGNORE_PREFIXES)) {
return href;
}
// if no coll, start from beginning, otherwise could be part of coll..
var start = wb_rel_prefix ? 1 : 0;
var index = href.indexOf("/http", start);
if (index < 0) {
index = href.indexOf("///", start);
}
// extract original url from wburl
if (index >= 0) {
href = href.substr(index + 1);
} else {
index = href.indexOf(wb_replay_prefix);
if (index >= 0) {
href = href.substr(index + wb_replay_prefix.length);
}
if ((href.length > 4) &&
(href.charAt(2) == "_") &&
(href.charAt(3) == "/")) {
href = href.substr(4);
}
if (href != orig_href && !starts_with(href, VALID_PREFIXES)) {
href = HTTP_PREFIX + href;
}
}
if (orig_href.charAt(0) == "/" && orig_href.charAt(1) != "/" && starts_with(href, wb_orig_origin)) {
href = href.substr(wb_orig_origin.length);
}
if (starts_with(href, REL_PREFIX)) {
href = "http:" + href;
}
return href;
}
//============================================
// Override a DOM property
function def_prop(obj, prop, set_func, get_func, enumerable) {
// if the property is marked as non-configurable in the current
// browser, skip the override
var existingDescriptor = Object.getOwnPropertyDescriptor(obj, prop);
if (existingDescriptor && !existingDescriptor.configurable) {
return;
}
// if no getter function was supplied, skip the override.
// See https://github.com/webrecorder/pywb/issues/147 for context
if (!get_func) {
return;
}
try {
var descriptor = {
configurable: true,
enumerable: enumerable || false,
get: get_func,
};
if (set_func) {
descriptor.set = set_func;
}
Object.defineProperty(obj, prop, descriptor);
return true;
} catch (e) {
console.warn('Failed to redefine property %s', prop, e.message);
return false;
}
}
//============================================
function make_parser(href, doc) {
href = extract_orig(href);
if (!doc) {
// special case: for newly opened blank windows, use the opener
// to create parser to have the proper baseURI
if ($wbwindow.location.href == "about:blank" && $wbwindow.opener) {
doc = $wbwindow.opener.document;
} else {
doc = $wbwindow.document;
}
}
var p = doc.createElement("a");
p._no_rewrite = true;
p.href = href;
return p;
}
//============================================
function set_loc(loc, orig_href) {
var parser = make_parser(orig_href, loc.ownerDocument);
loc._orig_href = orig_href;
loc._parser = parser;
var href = parser.href;
loc._hash = parser.hash;
loc._href = href;
loc._host = parser.host;
loc._hostname = parser.hostname;
if (parser.origin) {
loc._origin = parser.origin;
} else {
loc._origin = parser.protocol + "//" + parser.hostname + (parser.port ? ':' + parser.port: '');
}
loc._pathname = parser.pathname;
loc._port = parser.port;
//this.protocol = parser.protocol;
loc._protocol = parser.protocol;
loc._search = parser.search;
if (!Object.defineProperty) {
loc.href = href;
loc.hash = parser.hash;
loc.host = loc._host;
loc.hostname = loc._hostname;
loc.origin = loc._origin;
loc.pathname = loc._pathname;
loc.port = loc._port;
loc.protocol = loc._protocol;
loc.search = loc._search;
}
}
function init_loc_override(loc_obj, orig_setter, orig_getter) {
var make_get_loc_prop = function(prop) {
function getter() {
if (this._no_rewrite) {
return orig_getter.call(this, prop);
}
var curr_orig_href = orig_getter.call(this, "href");
if (prop == "href") {
return extract_orig(curr_orig_href);
}
if (this._orig_href != curr_orig_href) {
set_loc(this, curr_orig_href);
}
var value = this["_" + prop];
return value;
}
return getter;
}
var make_set_loc_prop = function(prop) {
function setter(value) {
if (this._no_rewrite) {
orig_setter.call(this, prop, value);
return;
}
if (this["_" + prop] == value) {
return;
}
this["_" + prop] = value;
if (!this._parser) {
var href = orig_getter.call(this);
this._parser = make_parser(href, this.ownerDocument);
}
var rel = false;
//Special case for href="." assignment
if (prop == "href" && typeof(value) == "string") {
if (value) {
if (value[0] == ".") {
value = resolve_rel_url(value, this.ownerDocument);
} else if (value[0] == "/" && (value.length <= 1 || value[1] != "/")) {
rel = true;
value = WB_wombat_location.origin + value;
}
}
}
try {
this._parser[prop] = value;
} catch (e) {
console.log('Error setting ' + prop + ' = ' + value);
}
if (prop == "hash") {
value = this._parser[prop];
orig_setter.call(this, "hash", value);
} else {
rel = rel || (value == this._parser.pathname);
value = rewrite_url(this._parser.href, rel);
orig_setter.call(this, "href", value);
}
}
return setter;
}
function add_loc_prop(loc, prop) {
def_prop(loc, prop, make_set_loc_prop(prop), make_get_loc_prop(prop), true);
}
if (Object.defineProperty) {
for (var i = 0; i < URL_PROPS.length; i++) {
add_loc_prop(loc_obj, URL_PROPS[i]);
}
}
}
//============================================
//Define WombatLocation
function WombatLocation(orig_loc) {
this._orig_loc = orig_loc;
// Rewrite replace and assign functions
this.replace = function(url) {
var new_url = rewrite_url(url);
var orig = extract_orig(new_url);
if (orig == this.href) {
return orig;
}
return this._orig_loc.replace(new_url);
}
this.assign = function(url) {
var new_url = rewrite_url(url);
var orig = extract_orig(new_url);
if (orig == this.href) {
return orig;
}
return this._orig_loc.assign(new_url);
}
this.reload = function() {
return this._orig_loc.reload();
}
this.orig_getter = function(prop) {
return this._orig_loc[prop];
}
this.orig_setter = function(prop, value) {
this._orig_loc[prop] = value;
}
init_loc_override(this, this.orig_setter, this.orig_getter);
set_loc(this, orig_loc.href);
this.toString = function() {
return this.href;
}
// Copy any remaining properties
for (prop in orig_loc) {
if (this.hasOwnProperty(prop)) {
continue;
}
if ((typeof orig_loc[prop]) != "function") {
this[prop] = orig_loc[prop];
}
}
}
//============================================
function update_location(req_href, orig_href, actual_location, wombat_loc) {
if (!req_href) {
return;
}
if (req_href == orig_href) {
// Reset wombat loc to the unrewritten version
//if (wombat_loc) {
// wombat_loc.href = extract_orig(orig_href);
//}
return;
}
var ext_orig = extract_orig(orig_href);
var ext_req = extract_orig(req_href);
if (!ext_orig || ext_orig == ext_req) {
return;
}
var final_href = rewrite_url(req_href);
console.log(actual_location.href + ' -> ' + final_href);
actual_location.href = final_href;
}
//============================================
function check_location_change(wombat_loc, is_top) {
var locType = (typeof wombat_loc);
var actual_location = (is_top ? $wbwindow.__WB_replay_top.location : $wbwindow.location);
// String has been assigned to location, so assign it
if (locType == "string") {
update_location(wombat_loc, actual_location.href, actual_location);
} else if (locType == "object") {
update_location(wombat_loc.href,
wombat_loc._orig_href,
actual_location);
}
}
//============================================
function check_all_locations() {
if (wb_wombat_updating) {
return false;
}
wb_wombat_updating = true;
check_location_change($wbwindow.WB_wombat_location, false);
// Only check top if its a different $wbwindow
if ($wbwindow.WB_wombat_location != $wbwindow.__WB_replay_top.WB_wombat_location) {
check_location_change($wbwindow.__WB_replay_top.WB_wombat_location, true);
}
// lochash = $wbwindow.WB_wombat_location.hash;
//
// if (lochash) {
// $wbwindow.location.hash = lochash;
//
// //if ($wbwindow.top.update_wb_url) {
// // $wbwindow.top.location.hash = lochash;
// //}
// }
wb_wombat_updating = false;
}
//============================================
function init_seeded_random(seed) {
// Adapted from:
// http://indiegamr.com/generate-repeatable-random-numbers-in-js/
$wbwindow.Math.seed = parseInt(seed);
function seeded_random() {
$wbwindow.Math.seed = ($wbwindow.Math.seed * 9301 + 49297) % 233280;
var rnd = $wbwindow.Math.seed / 233280;
return rnd;
}
$wbwindow.Math.random = seeded_random;
}
function init_crypto_random() {
if (!$wbwindow.crypto || !$wbwindow.Crypto) {
return;
}
var orig_getrandom = $wbwindow.Crypto.prototype.getRandomValues;
var new_getrandom = function(array) {
for (i = 0; i < array.length; i++) {
array[i] = parseInt($wbwindow.Math.random() * 4294967296);
}
return array;
}
$wbwindow.Crypto.prototype.getRandomValues = new_getrandom;
$wbwindow.crypto.getRandomValues = new_getrandom;
}
//============================================
function init_fixed_ratio() {
// otherwise, just set it
$wbwindow.devicePixelRatio = 1;
// prevent changing, if possible
if (Object.defineProperty) {
try {
// fixed pix ratio
Object.defineProperty($wbwindow, "devicePixelRatio", {value: 1, writable: false});
} catch (e) { }
}
}
//============================================
function send_history_update(state, type, url, title) {
var message = {
"base_url": wb_info.url,
"base_ts": wb_info.timestamp,
"url": url,
"ts": Date.__WB_ts_now(),
"request_ts": wb_info.request_ts,
"is_live": wb_info.is_live,
"title": title,
"wb_type": "replace-url",
"state": state,
"change_type": type,
"coll": wb_info.coll,
}
send_top_message(message);
}
//============================================
function init_history_overrides() {
override_history_func("pushState");
override_history_func("replaceState");
$wbwindow.addEventListener("popstate", function(event) {
send_history_update(event.state, "popState", $wbwindow.WB_wombat_location.href, $wbwindow.document.title);
});
}
//============================================
function override_history_func(func_name) {
if (!$wbwindow.history) {
return;
}
var orig_func = $wbwindow.history[func_name];
if (!orig_func) {
return;
}
$wbwindow.history['_orig_' + func_name] = orig_func;
function rewritten_func(state_obj, title, url) {
var rewritten_url = undefined;
if (url) {
var parser = $wbwindow.document.createElement("a");
parser.href = url;
url = parser.href;
rewritten_url = rewrite_url(url);
if (url && (url != $wbwindow.WB_wombat_location.origin && $wbwindow.WB_wombat_location.href != "about:blank") &&
!starts_with(url, $wbwindow.WB_wombat_location.origin + "/")) {
//throw new DOMException("Invalid history change: " + url);
}
} else {
url = $wbwindow.WB_wombat_location.href;
}
orig_func.call(this, state_obj, title, rewritten_url);
send_history_update(state_obj, func_name, url, title);
}
$wbwindow.history[func_name] = rewritten_func;
if ($wbwindow.History && $wbwindow.History.prototype) {
$wbwindow.History.prototype[func_name] = rewritten_func;
}
return rewritten_func;
}
//============================================
function init_doc_title_override() {
var orig_get_title = get_orig_getter($wbwindow.document, "title");
var orig_set_title = get_orig_setter($wbwindow.document, "title");
function set_title(value) {
var res = orig_set_title.call(this, value);
var message = {"wb_type": "title",
"title": value,
}
send_top_message(message);
return res;
}
def_prop($wbwindow.document, "title", set_title, orig_get_title);
}
//============================================
function init_ajax_rewrite() {
if (!$wbwindow.XMLHttpRequest ||
!$wbwindow.XMLHttpRequest.prototype ||
!$wbwindow.XMLHttpRequest.prototype.open) {
return;
}
var orig = $wbwindow.XMLHttpRequest.prototype.open;
function open_rewritten(method, url, async, user, password) {
if (!this._no_rewrite) {
url = rewrite_url(url);
}
// defaults to true
if (async != false) {
async = true;
}
result = orig.call(this, method, url, async, user, password);
if (!starts_with(url, "data:")) {
this.setRequestHeader('X-Pywb-Requested-With', 'XMLHttpRequest');
}
}
$wbwindow.XMLHttpRequest.prototype.open = open_rewritten;
// responseURL override
override_prop_extract($wbwindow.XMLHttpRequest.prototype, "responseURL");
}
//============================================
function init_fetch_rewrite()
{
if (!$wbwindow.fetch) {
return;
}
var orig_fetch = $wbwindow.fetch;
$wbwindow.fetch = function(input, init_opts) {
var inputType = typeof(input);
if (inputType === "string") {
input = rewrite_url(input);
} else if (inputType === "object" && input.url) {
var new_url = rewrite_url(input.url);
if (new_url != input.url) {
input = new Request(new_url, input);
}
} else if (inputType === "object" && input.href) {
// it is likely that input is either window.location or window.URL
input = rewrite_url(input.href);
}
init_opts = init_opts || {};
init_opts["credentials"] = "include";
return orig_fetch.call(proxy_to_obj(this), input, init_opts);
}
}
//============================================
function init_request_override()
{
var orig_request = $wbwindow.Request;
if (!orig_request) {
return;
}
$wbwindow.Request = (function (Request) {
return function(input, init_opts) {
if (typeof(input) === "string") {
input = rewrite_url(input);
} else if (typeof(input) === "object" && input.url) {
var new_url = rewrite_url(input.url);
if (new_url != input.url) {
// input = new Request(new_url, input);
input.url = new_url;
}
}
init_opts = init_opts || {};
init_opts["credentials"] = "include";
return new Request(input, init_opts);
}
})($wbwindow.Request);
$wbwindow.Request.prototype = orig_request.prototype;
}
//============================================
function override_prop_extract(proto, prop, cond) {
var orig_getter = get_orig_getter(proto, prop);
if (orig_getter) {
var new_getter = function() {
var obj = proxy_to_obj(this);
var res = orig_getter.call(obj);
if (!cond || cond(obj)) {
res = extract_orig(res);
}
return res;
}
def_prop(proto, prop, undefined, new_getter);
}
}
//============================================
function override_prop_to_proxy(proto, prop) {
var orig_getter = get_orig_getter(proto, prop);
if (orig_getter) {
var new_getter = function() {
return obj_to_proxy(orig_getter.call(this));
}
def_prop(proto, prop, undefined, new_getter);
}
}
//============================================
function override_attr_props() {
function is_rw_attr(attr) {
if (!attr) {
return false;
}
var tagName = attr.ownerElement && attr.ownerElement.tagName;
return should_rewrite_attr(tagName, attr.nodeName);
}
override_prop_extract($wbwindow.Attr.prototype, "nodeValue", is_rw_attr);
override_prop_extract($wbwindow.Attr.prototype, "value", is_rw_attr);
}
//============================================
function init_setAttribute_override()
{
if (!$wbwindow.Element ||
!$wbwindow.Element.prototype ||
!$wbwindow.Element.prototype.setAttribute) {
return;
}
var orig_setAttribute = $wbwindow.Element.prototype.setAttribute;
wb_setAttribute = orig_setAttribute;
$wbwindow.Element.prototype._orig_setAttribute = orig_setAttribute;
$wbwindow.Element.prototype.setAttribute = function(name, value) {
if (name && typeof(value) === "string") {
var lowername = name.toLowerCase();
if (this.tagName == "LINK" && lowername == "href" && value.indexOf("data:text/css") == 0) {
value = rewrite_inline_style(value);
} else if (should_rewrite_attr(this.tagName, lowername)) {
if (!this._no_rewrite) {
var old_value = value;
var mod = undefined;
if (this.tagName == "SCRIPT") {
mod = "js_";
}
value = rewrite_url(value, false, mod);
}
} else if (lowername == "style") {
value = rewrite_style(value);
} else if (lowername == "srcset") {
value = rewrite_srcset(value);
}
}
orig_setAttribute.call(this, name, value);
};
}
//============================================
function init_getAttribute_override()
{
if (!$wbwindow.Element ||
!$wbwindow.Element.prototype ||
!$wbwindow.Element.prototype.setAttribute) {
return;
}
var orig_getAttribute = $wbwindow.Element.prototype.getAttribute;
wb_getAttribute = orig_getAttribute;
$wbwindow.Element.prototype.getAttribute = function(name) {
var result = orig_getAttribute.call(this, name);
if (should_rewrite_attr(this.tagName, name)) {
result = extract_orig(result);
} else if (starts_with(name, "data-") && starts_with(result, VALID_PREFIXES)) {
result = extract_orig(result);
}
return result;
}
}
//============================================
function init_svg_image_overrides()
{
if (!$wbwindow.SVGImageElement) {
return;
}
var orig_getAttr = $wbwindow.SVGImageElement.prototype.getAttribute;
var orig_getAttrNS = $wbwindow.SVGImageElement.prototype.getAttributeNS;
var orig_setAttr = $wbwindow.SVGImageElement.prototype.setAttribute;
var orig_setAttrNS = $wbwindow.SVGImageElement.prototype.setAttributeNS;
$wbwindow.SVGImageElement.prototype.getAttribute = function(name) {
var value = orig_getAttr.call(this, name);
if (name.indexOf("xlink:href") >= 0 || name == "href") {
value = extract_orig(value);
}
return value;
}
$wbwindow.SVGImageElement.prototype.getAttributeNS = function(ns, name) {
var value = orig_getAttrNS.call(this, ns, name);
if (name == "href") {
value = extract_orig(value);
}
return value;
}
$wbwindow.SVGImageElement.prototype.setAttribute = function(name, value) {
if (name.indexOf("xlink:href") >= 0 || name == "href") {
value = rewrite_url(value);
}
return orig_setAttr.call(this, name, value);
}
$wbwindow.SVGImageElement.prototype.setAttributeNS = function(ns, name, value) {
if (name == "href") {
value = rewrite_url(value);
}
return orig_setAttrNS.call(this, ns, name, value);
}
}
//============================================
function init_createElementNS_fix()
{
if (!$wbwindow.document.createElementNS ||
!$wbwindow.Document.prototype.createElementNS) {
return;
}
var orig_createElementNS = $wbwindow.document.createElementNS;
var createElementNS_fix = function(namespaceURI, qualifiedName)
{
namespaceURI = extract_orig(namespaceURI);
return orig_createElementNS.call(this, namespaceURI, qualifiedName);
}
$wbwindow.Document.prototype.createElementNS = createElementNS_fix;
$wbwindow.document.createElementNS = createElementNS_fix;
}
//============================================
function init_date_override(timestamp) {
timestamp = parseInt(timestamp) * 1000;
//var timezone = new Date().getTimezoneOffset() * 60 * 1000;
// Already UTC!
var timezone = 0;
var start_now = $wbwindow.Date.now()
var timediff = start_now - (timestamp - timezone);
if ($wbwindow.__wb_Date_now) {
return;
}
var orig_date = $wbwindow.Date;
var orig_utc = $wbwindow.Date.UTC;
var orig_parse = $wbwindow.Date.parse;
var orig_now = $wbwindow.Date.now;
$wbwindow.__wb_Date_now = orig_now;
$wbwindow.Date = function (Date) {
return function (A, B, C, D, E, F, G) {
// Apply doesn't work for constructors and Date doesn't
// seem to like undefined args, so must explicitly
// call constructor for each possible args 0..7
if (A === undefined) {
return new Date(orig_now() - timediff);
} else if (B === undefined) {
return new Date(A);
} else if (C === undefined) {
return new Date(A, B);
} else if (D === undefined) {
return new Date(A, B, C);
} else if (E === undefined) {
return new Date(A, B, C, D);
} else if (F === undefined) {
return new Date(A, B, C, D, E);
} else if (G === undefined) {
return new Date(A, B, C, D, E, F);
} else {
return new Date(A, B, C, D, E, F, G);
}
}
}($wbwindow.Date);
$wbwindow.Date.prototype = orig_date.prototype;
$wbwindow.Date.now = function() {
return orig_now() - timediff;
}
$wbwindow.Date.UTC = orig_utc;
$wbwindow.Date.parse = orig_parse;
$wbwindow.Date.__WB_timediff = timediff;
$wbwindow.Date.__WB_ts_now = function(precision) {
precision = precision || 14;
return new $wbwindow.Date().toISOString().replace(/[^\d]/g, "").substr(0, precision);
}
Object.defineProperty($wbwindow.Date.prototype, "constructor", {value: $wbwindow.Date});
}
//============================================
function init_audio_override() {
if (!$wbwindow.Audio) {
return;
}
var orig_audio = $wbwindow.Audio;
$wbwindow.Audio = (function (Audio) {
return function (url) {
return new Audio(rewrite_url(url));
}
})($wbwindow.Audio);
$wbwindow.Audio.prototype = orig_audio.prototype;
Object.defineProperty($wbwindow.Audio.prototype, "constructor", {value: $wbwindow.Audio});
}
//============================================
function init_web_worker_override() {
if (!$wbwindow.Worker) {
return;
}
// for now, disabling workers until override of worker content can be supported
// hopefully, pages depending on workers will have a fallback
//$wbwindow.Worker = undefined;
// Worker unrewrite postMessage
var orig_worker = $wbwindow.Worker;
function rewrite_blob(url) {
// use sync ajax request to get the contents, remove postMessage() rewriting
var x = new XMLHttpRequest();
x.open("GET", url, false);
x.send();
var resp = x.responseText.replace(/__WB_pmw\(.*?\)\.(?=postMessage\()/g, "");
if (wbinfo.static_prefix || wbinfo.ww_rw_script) {
var ww_rw = wbinfo.ww_rw_script || wbinfo.static_prefix + "ww_rw.js";
var rw = "(function() { " +
"self.importScripts('" + ww_rw + "');" +
"new WBWombat({'prefix': '" + wb_abs_prefix + wb_info.mod + "/'}); " +
"})();";
resp = rw + resp;
}
if (resp != x.responseText) {
var blob = new Blob([resp], {"type": "text/javascript"});
return URL.createObjectURL(blob);
} else {
return url;
}
}
$wbwindow.Worker = (function (Worker) {
return function (url) {
if (starts_with(url, "blob:")) {
url = rewrite_blob(url);
}
return new Worker(url);
}
})($wbwindow.Worker);
$wbwindow.Worker.prototype = orig_worker.prototype;
}
//============================================
function init_service_worker_override() {
if (!$wbwindow.ServiceWorkerContainer ||
!$wbwindow.ServiceWorkerContainer.prototype ||
!$wbwindow.ServiceWorkerContainer.prototype.register) {
return;
}
var orig_register = $wbwindow.ServiceWorkerContainer.prototype.register;
$wbwindow.ServiceWorkerContainer.prototype.register = function(scriptURL, options) {
scriptURL = rewrite_url(scriptURL, false, "id_");
if (options && options.scope) {
options.scope = rewrite_url(options.scope, false, "id_");
}
return orig_register.call(this, scriptURL, options);
}
}
//============================================
function rewrite_attr(elem, name, abs_url_only) {
if (!elem || !elem.getAttribute) {
return;
}
if (elem._no_rewrite) {
return;
}
// already overwritten
if (elem["_" + name]) {
return;
}
var value = wb_getAttribute.call(elem, name);
if (!value || starts_with(value, "javascript:")) {
return;
}
var new_value;
if (name == "style") {
new_value = rewrite_style(value);
} else if (name == "srcset") {
new_value = rewrite_srcset(value);
} else {
// Only rewrite if absolute url
if (abs_url_only && !starts_with(value, VALID_PREFIXES)) {
return;
}
var mod = undefined;
if (elem.tagName == "SCRIPT") {
mod = "js_";
}
new_value = rewrite_url(value, false, mod);
}
if (new_value != value) {
wb_setAttribute.call(elem, name, new_value);
return true;
}
}
//============================================
function rewrite_style(value)
{
var STYLE_REGEX = /(url\s*\(\s*[\\"']*)([^)'"]+)([\\"']*\s*\))/gi;
var IMPORT_REGEX = /(@import\s+[\\"']*)([^)'";]+)([\\"']*\s*;?)/gi;
function style_replacer(match, n1, n2, n3, offset, string) {
return n1 + rewrite_url(n2) + n3;
}
if (!value) {
return value;
}
if (typeof(value) === "object") {
value = value.toString();
}
if (typeof(value) === "string") {
value = value.replace(STYLE_REGEX, style_replacer);
value = value.replace(IMPORT_REGEX, style_replacer);
value = value.replace(/WB_wombat_/g, '');
}
return value;
}
//============================================
function rewrite_srcset(value)
{
if (!value) {
return "";
}
// Filter removes non-truthy values like null, undefined, and ""
values = value.split(/\s*(\S*\s+[\d\.]+[wx]),|(?:\s*,(?:\s+|(?=https?:)))/).filter(Boolean);
for (var i = 0; i < values.length; i++) {
values[i] = rewrite_url(values[i].trim());
}
return values.join(", ");
}
//============================================
function rewrite_frame_src(elem, name)
{
var value = wb_getAttribute.call(elem, name);
var new_value = undefined;
// special case for rewriting javascript: urls that contain WB_wombat_
// must insert wombat init first!
if (starts_with(value, "javascript:")) {
if (value.indexOf("WB_wombat_") >= 0) {
var JS = "javascript:";
new_value = JS;
new_value += "window.parent._wb_wombat.init_new_window_wombat(window);"
new_value += value.substr(JS.length);
}
}
if (!new_value) {
new_value = rewrite_url(value, false);
}
if (new_value != value) {
wb_setAttribute.call(elem, name, new_value);
return true;
}
return false;
}
//============================================
function rewrite_script(elem) {
if (elem.getAttribute("src") || !elem.textContent || !$wbwindow.Proxy) {
return rewrite_attr(elem, "src");
}
if (elem.textContent.indexOf("_____WB$wombat$assign$function_____") >= 0) {
return false;
}
var text = elem.textContent.trim();
if (!text || text.indexOf("<") == 0) {
return false;
}
var override_props = ["window",
"self",
"document",
"location",
"top",
"parent",
"frames",
"opener"];
var contains_props = false;
for (var i = 0; i < override_props.length; i++) {
if (text.indexOf(override_props[i]) >= 0) {
contains_props = true;
break;
}
}
if (!contains_props) {
return false;
}
var insert_str =
'var _____WB$wombat$assign$function_____ = function(name) {return (self._wb_wombat && self._wb_wombat.local_init && self._wb_wombat.local_init(name)) || self[name]; }\n' +
'if (!self.__WB_pmw) { self.__WB_pmw = function(obj) { return obj; } }\n' +
'{\n';
var prop;
for (i = 0; i < override_props.length; i++) {
prop = override_props[i];
insert_str += 'let ' + prop + ' = _____WB$wombat$assign$function_____("' + prop + '");\n';
}
var content = elem.textContent.replace(/(.postMessage\s*\()/, ".__WB_pmw(self.window)$1");
elem.textContent = insert_str + content + "\n\n}";
return true;
}
//============================================
function rewrite_elem(elem)
{
if (!elem) {
return;
}
var changed;
if (elem.tagName == "STYLE") {
var new_content = rewrite_style(elem.textContent);
if (elem.textContent != new_content) {
elem.textContent = new_content;
changed = true;
}
} else if (elem.tagName == "OBJECT") {
changed = rewrite_attr(elem, "data", true);
} else if (elem.tagName == "FORM") {
changed = rewrite_attr(elem, "action", true);
//} else if (elem.tagName == "INPUT") {
// changed = rewrite_attr(elem, "value", true);
} else if (elem.tagName == "IFRAME" || elem.tagName == "FRAME") {
changed = rewrite_frame_src(elem, "src");
} else if (elem.tagName == "SCRIPT") {
changed = rewrite_script(elem);
} else if (elem.tagName == "image") {
changed = rewrite_attr(elem, "xlink:href");
} else {
changed = rewrite_attr(elem, "src");
changed = rewrite_attr(elem, "srcset") || changed;
changed = rewrite_attr(elem, "href") || changed;
changed = rewrite_attr(elem, "style") || changed;
changed = rewrite_attr(elem, "poster") || changed;
}
if (elem.getAttribute) {
if (elem.getAttribute("crossorigin")) {
elem.removeAttribute("crossorigin");
changed = true;
}
if (elem.getAttribute("integrity")) {
elem.removeAttribute("integrity");
changed = true;
}
}
return changed;
}
var write_buff = "";
//============================================
function rewrite_html(string, check_end_tag) {
if (!string) {
return string;
}
if (typeof string != "string" ) {
string = string.toString();
}
if (write_buff) {
string = write_buff + string;
write_buff = "";
}
if (string.indexOf("<script") <= 0) {
//string = string.replace(/WB_wombat_/g, "");
string = string.replace(/((id|class)=".*)WB_wombat_([^"]+)/, '$1$3');
}
if (!$wbwindow.HTMLTemplateElement || starts_with(string, ["<html", "<head", "<body"])) {
return rewrite_html_full(string, check_end_tag);
}
var inner_doc = new DOMParser().parseFromString("<template>" + string + "</template>", "text/html");
if (!inner_doc || !inner_doc.head || !inner_doc.head.children || !inner_doc.head.children[0].content) {
return string;
}
var template = inner_doc.head.children[0];
function get_new_html() {
template._no_rewrite = true;
var new_html = template.innerHTML;
if (check_end_tag) {
var first_elem = template.content.children && template.content.children[0];
if (first_elem) {
var end_tag = "</" + first_elem.tagName.toLowerCase() + ">";
if (ends_with(new_html, end_tag) && !ends_with(string, end_tag)) {
new_html = new_html.substring(0, new_html.length - end_tag.length);
}
} else if (string[0] != "<" || string[string.length - 1] != ">") {
write_buff += string;
return;
}
}
return new_html;
}
if (recurse_rewrite_elem(template.content)) {
string = get_new_html();
}
return string;
}
//============================================
function rewrite_html_full(string, check_end_tag) {
var inner_doc = new DOMParser().parseFromString(string, "text/html");
if (!inner_doc) {
return string;
}
var changed = false;
for (var i = 0; i < inner_doc.all.length; i++) {
changed = rewrite_elem(inner_doc.all[i]) || changed;
}
function get_new_html() {
var new_html;
// if original had <html> tag, add full document HTML
if (string && string.indexOf("<html") >= 0) {
inner_doc.documentElement._no_rewrite = true;
new_html = inner_doc.documentElement.outerHTML;
} else {
// otherwise, just add contents of head and body
inner_doc.head._no_rewrite = true;
inner_doc.body._no_rewrite = true;
new_html = inner_doc.head.innerHTML;
new_html += inner_doc.body.innerHTML;
if (check_end_tag) {
if (inner_doc.all.length > 3) {
var end_tag = "</" + inner_doc.all[3].tagName.toLowerCase() + ">";
if (ends_with(new_html, end_tag) && !ends_with(string, end_tag)) {
new_html = new_html.substring(0, new_html.length - end_tag.length);
}
} else if (string[0] != "<" || string[string.length - 1] != ">") {
write_buff += string;
return;
}
}
}
return new_html;
}
if (changed) {
string = get_new_html();
}
return string;
}
//============================================
function get_orig_getter(obj, prop) {
var orig_getter;
if (obj.__lookupGetter__) {
orig_getter = obj.__lookupGetter__(prop);
}
if (!orig_getter && Object.getOwnPropertyDescriptor) {
var props = Object.getOwnPropertyDescriptor(obj, prop);
if (props) {
orig_getter = props.get;
}
}
return orig_getter;
}
//============================================
function get_orig_setter(obj, prop) {
var orig_setter;
if (obj.__lookupSetter__) {
orig_setter = obj.__lookupSetter__(prop);
}
if (!orig_setter && Object.getOwnPropertyDescriptor) {
var props = Object.getOwnPropertyDescriptor(obj, prop);
if (props) {
orig_setter = props.set;
}
}
return orig_setter;
}
//============================================
function rewrite_inline_style(orig) {
var decoded;
try {
decoded = decodeURIComponent(orig);
} catch (e) {
decoded = orig;
}
if (decoded != orig) {
val = rewrite_style(decoded);
var parts = val.split(",", 2);
val = parts[0] + "," + encodeURIComponent(parts[1]);
} else {
val = rewrite_style(orig);
}
return val;
}
//============================================
function override_attr(obj, attr, mod, default_to_setget) {
var orig_getter = get_orig_getter(obj, attr);
var orig_setter = get_orig_setter(obj, attr);
var setter = function(orig) {
var val;
if (mod == "cs_" && orig.indexOf("data:text/css") == 0) {
val = rewrite_inline_style(orig);
} else if (attr == "srcset") {
val = rewrite_srcset(orig);
} else {
val = rewrite_url(orig, false, mod);
}
if (orig_setter) {
return orig_setter.call(this, val);
} else if (default_to_setget) {
return wb_setAttribute.call(this, attr, val);
}
}
var getter = function() {
var res = undefined;
if (orig_getter) {
res = orig_getter.call(this);
} else if (default_to_setget) {
res = wb_getAttribute.call(this, attr);
}
res = extract_orig(res);
return res;
}
def_prop(obj, attr, setter, getter);
}
//============================================
function override_style_attr(obj, attr, prop_name) {
var orig_getter = get_orig_getter(obj, attr);
var orig_setter = get_orig_setter(obj, attr);
var setter = function(orig) {
var val = rewrite_style(orig);
if (orig_setter) {
orig_setter.call(this, val);
} else {
this.setProperty(prop_name, val);
}
return val;
}
var getter = orig_getter;
if (!getter) {
getter = function() {
return this.getPropertyValue(prop_name);
}
}
if ((orig_setter && orig_getter) || prop_name) {
def_prop(obj, attr, setter, getter);
}
}
//============================================
function init_attr_overrides() {
override_attr($wbwindow.HTMLLinkElement.prototype, "href", "cs_");
override_attr($wbwindow.CSSStyleSheet.prototype, "href", "cs_");
override_attr($wbwindow.HTMLImageElement.prototype, "src", "im_");
override_attr($wbwindow.HTMLImageElement.prototype, "srcset", "im_");
override_attr($wbwindow.HTMLIFrameElement.prototype, "src", "if_");
override_attr($wbwindow.HTMLScriptElement.prototype, "src", "js_");
override_attr($wbwindow.HTMLVideoElement.prototype, "src", "oe_");
override_attr($wbwindow.HTMLVideoElement.prototype, "poster", "im_");
override_attr($wbwindow.HTMLAudioElement.prototype, "src", "oe_");
override_attr($wbwindow.HTMLAudioElement.prototype, "poster", "im_");
override_attr($wbwindow.HTMLSourceElement.prototype, "src", "oe_");
override_attr($wbwindow.HTMLSourceElement.prototype, "srcset", "oe_");
override_attr($wbwindow.HTMLInputElement.prototype, "src", "oe_");
override_attr($wbwindow.HTMLEmbedElement.prototype, "src", "oe_");
override_attr($wbwindow.HTMLObjectElement.prototype, "data", "oe_");
override_attr($wbwindow.HTMLBaseElement.prototype, "href", "mp_");
override_attr($wbwindow.HTMLMetaElement.prototype, "content", "mp_");
override_attr($wbwindow.HTMLFormElement.prototype, "action", "mp_");
override_anchor_elem();
var style_proto = $wbwindow.CSSStyleDeclaration.prototype;
// For FF
if ($wbwindow.CSS2Properties) {
style_proto = $wbwindow.CSS2Properties.prototype;
}
override_style_attr(style_proto, "cssText");
override_style_attr(style_proto, "background", "background");
override_style_attr(style_proto, "backgroundImage", "background-image");
override_style_attr(style_proto, "cursor", "cursor");
override_style_attr(style_proto, "listStyle", "list-style");
override_style_attr(style_proto, "listStyleImage", "list-style-image");
override_style_attr(style_proto, "border", "border");
override_style_attr(style_proto, "borderImage", "border-image");
override_style_attr(style_proto, "borderImageSource", "border-image-source");
override_style_setProp(style_proto);
}
//============================================
function override_style_setProp(style_proto) {
var orig_setProp = style_proto.setProperty;
style_proto.setProperty = function(name, value, priority) {
value = rewrite_style(value);
return orig_setProp.call(this, name, value, priority);
}
}
//============================================
function override_anchor_elem() {
var anchor_orig = {}
function save_prop(prop) {
anchor_orig["get_" + prop] = get_orig_getter($wbwindow.HTMLAnchorElement.prototype, prop);
anchor_orig["set_" + prop] = get_orig_setter($wbwindow.HTMLAnchorElement.prototype, prop);
}
for (var i = 0; i < URL_PROPS.length; i++) {
save_prop(URL_PROPS[i]);
}
var anchor_setter = function(prop, value) {
var func = anchor_orig["set_" + prop];
if (func) {
return func.call(this, value);
} else {
return "";
}
}
var anchor_getter = function(prop) {
var func = anchor_orig["get_" + prop];
if (func) {
return func.call(this);
} else {
return "";
}
}
init_loc_override($wbwindow.HTMLAnchorElement.prototype, anchor_setter, anchor_getter);
$wbwindow.HTMLAnchorElement.prototype.toString = function () {
return this.href;
};
}
//============================================
function override_html_assign(elemtype, prop, rewrite_getter) {
if (!$wbwindow.DOMParser ||
!elemtype ||
!elemtype.prototype) {
return;
}
var obj = elemtype.prototype;
var orig_getter = get_orig_getter(obj, prop);
var orig_setter = get_orig_setter(obj, prop);
if (!orig_setter) {
return;
}
var setter = function(orig) {
var res = orig;
if (!this._no_rewrite) {
//init_iframe_insert_obs(this);
if (this.tagName == "STYLE") {
res = rewrite_style(orig);
} else {
res = rewrite_html(orig);
}
}
orig_setter.call(this, res);
}
var getter = function() {
res = orig_getter.call(this);
if (!this._no_rewrite) {
res = res.replace(wb_unrewrite_rx, "");
}
return res;
}
def_prop(obj, prop, setter, rewrite_getter ? getter : orig_getter);
}
//============================================
function override_iframe_content_access(prop)
{
if (!$wbwindow.HTMLIFrameElement ||
!$wbwindow.HTMLIFrameElement.prototype) {
return;
}
var obj = $wbwindow.HTMLIFrameElement.prototype;
var orig_getter = get_orig_getter(obj, prop);
var orig_setter = get_orig_setter(obj, prop);
if (!orig_getter) {
return;
}
var getter = function() {
init_iframe_wombat(this);
return obj_to_proxy(orig_getter.call(this));
}
def_prop(obj, prop, orig_setter, getter);
obj["_get_" + prop] = orig_getter;
}
//============================================
function override_frames_access($wbwindow)
{
$wbwindow.__wb_frames = $wbwindow.frames;
var getter = function() {
for (var i = 0; i < this.__wb_frames.length; i++) {
try {
init_new_window_wombat(this.__wb_frames[i]);
} catch (e) {}
}
return this.__wb_frames;
};
def_prop($wbwindow, "frames", undefined, getter);
def_prop($wbwindow.Window.prototype, "frames", undefined, getter);
}
//============================================
function init_insertAdjacentHTML_override()
{
if (!$wbwindow.Element ||
!$wbwindow.Element.prototype ||
!$wbwindow.Element.prototype.insertAdjacentHTML) {
return;
}
var orig_insertAdjacentHTML = $wbwindow.Element.prototype.insertAdjacentHTML;
var insertAdjacent_override = function(position, text)
{
if (!this._no_rewrite) {
// inserting adjacent, so must observe parent
//if (this.parentElement) {
// init_iframe_insert_obs(this.parentElement);
//}
text = rewrite_html(text);
}
return orig_insertAdjacentHTML.call(this, position, text);
}
$wbwindow.Element.prototype.insertAdjacentHTML = insertAdjacent_override;
}
//============================================
function init_wombat_loc(win) {
if (!win || (win.WB_wombat_location && win.document.WB_wombat_location)) {
return;
}
// Location
var wombat_location = new WombatLocation(win.location);
if (Object.defineProperty) {
var setter = function(value) {
var loc = this._WB_wombat_location ||
(this.defaultView && this.defaultView._WB_wombat_location) ||
this.location;
if (loc) {
loc.href = value;
}
}
var getter = function() {
var loc = this._WB_wombat_location ||
(this.defaultView && this.defaultView._WB_wombat_location) ||
this.location;
return loc;
}
def_prop(win.Object.prototype, "WB_wombat_location", setter, getter);
init_proto_pm_origin(win);
win._WB_wombat_location = wombat_location;
} else {
win.WB_wombat_location = wombat_location;
// Check quickly after page load
setTimeout(check_all_locations, 500);
// Check periodically every few seconds
setInterval(check_all_locations, 500);
}
}
//============================================
function recurse_rewrite_elem(curr) {
var changed = false;
var children = curr && (curr.children || curr.childNodes);
if (children) {
for (var i = 0; i < children.length; i++) {
if (children[i].nodeType == Node.ELEMENT_NODE) {
changed = rewrite_elem(children[i]) || changed;
changed = recurse_rewrite_elem(children[i]) || changed;
}
}
}
return changed;
}
//============================================
function init_dom_override() {
if (!$wbwindow.Node || !$wbwindow.Node.prototype) {
return;
}
function replace_dom_func(funcname) {
var orig = $wbwindow.Node.prototype[funcname];
$wbwindow.Node.prototype[funcname] = function() {
var child = arguments[0];
if (child) {
if (child.nodeType == Node.ELEMENT_NODE) {
rewrite_elem(child);
} else if (child.nodeType == Node.TEXT_NODE) {
if (this.tagName == "STYLE") {
child.textContent = rewrite_style(child.textContent);
}
} else if (child.nodeType == Node.DOCUMENT_FRAGMENT_NODE) {
recurse_rewrite_elem(child);
}
}
var created = orig.apply(this, arguments);
if (created && created.tagName == "IFRAME") {
init_iframe_wombat(created);
}
return created;
}
}
replace_dom_func("appendChild");
replace_dom_func("insertBefore");
replace_dom_func("replaceChild");
override_prop_to_proxy($wbwindow.Node.prototype, "ownerDocument");
override_prop_to_proxy($wbwindow.HTMLHtmlElement.prototype, "parentNode");
override_prop_to_proxy($wbwindow.Event.prototype, "target");
}
function init_proto_pm_origin(win) {
if (win.Object.prototype.__WB_pmw) {
return;
}
function pm_origin(origin_window) {
this.__WB_source = origin_window;
return this;
}
try {
win.Object.defineProperty(win.Object.prototype, "__WB_pmw", {get: function() { return pm_origin }, set: function() {}, configurable: true, enumerable: false});
} catch(e) {
}
win.__WB_check_loc = function(loc) {
if ((loc instanceof Location) || (loc instanceof WombatLocation)) {
return this.WB_wombat_location;
} else {
return {}
}
}
}
//============================================
function init_hash_change()
{
if (!$wbwindow.__WB_top_frame) {
return;
}
function receive_hash_change(event)
{
var source = proxy_to_obj(event.source);
if (!event.data || source != $wbwindow.__WB_top_frame) {
return;
}
var message = event.data;
if (!message.wb_type) {
return;
}
if (message.wb_type == "outer_hashchange") {
if ($wbwindow.location.hash != message.hash) {
$wbwindow.location.hash = message.hash;
}
}
}
function send_hash_change() {
var message = {"wb_type": "hashchange",
"hash": $wbwindow.location.hash
}
send_top_message(message);
}
$wbwindow.addEventListener("message", receive_hash_change);
$wbwindow.addEventListener("hashchange", send_hash_change);
}
//============================================
function init_postmessage_override($wbwindow)
{
if (!$wbwindow.postMessage || $wbwindow.__orig_postMessage) {
return;
}
var orig = $wbwindow.postMessage;
$wbwindow.__orig_postMessage = orig;
var postmessage_rewritten = function(message, targetOrigin, transfer, from_top) {
var from = undefined;
var src_id = undefined;
var obj = proxy_to_obj(this);
if (window.__WB_source && window.__WB_source.WB_wombat_location) {
var source = window.__WB_source;
from = source.WB_wombat_location.origin;
if (!this.__WB_win_id) {
this.__WB_win_id = {};
this.__WB_counter = 0;
}
if (!source.__WB_id) {
source.__WB_id = (this.__WB_counter++) + source.WB_wombat_location.href;
}
this.__WB_win_id[source.__WB_id] = source;
src_id = source.__WB_id;
window.__WB_source = undefined;
} else {
from = window.WB_wombat_location.origin;
}
var to_origin = targetOrigin;
if (starts_with(to_origin, obj.location.origin)) {
to_origin = "*";
}
var new_message = {"from": from,
"to_origin": to_origin,
"src_id": src_id,
"message": message,
"from_top": from_top,
}
if (targetOrigin != "*") {
targetOrigin = obj.location.origin;
}
//console.log("Sending " + from + " -> " + to + " (" + targetOrigin + ") " + message);
return orig.call(obj, new_message, targetOrigin, transfer);
}
$wbwindow.postMessage = postmessage_rewritten;
$wbwindow.Window.prototype.postMessage = postmessage_rewritten;
function SameOriginListener(orig_listener, win) {
function listen(event) {
if (window != win) {
return;
}
return orig_listener(event);
}
return {"listen": listen};
}
function WrappedListener(orig_listener, win) {
function listen(event) {
var ne = event;
if (event.data.from && event.data.message) {
if (event.data.to_origin != "*" && win.WB_wombat_location && !starts_with(event.data.to_origin, win.WB_wombat_location.origin)) {
console.warn("Skipping message event to " + event.data.to_origin + " doesn't start with origin " + win.WB_wombat_location.origin);
return;
}
var source = event.source;
if (event.data.from_top) {
source = win.__WB_top_frame;
} else if (event.data.src_id && win.__WB_win_id && win.__WB_win_id[event.data.src_id]) {
source = win.__WB_win_id[event.data.src_id];
}
source = proxy_to_obj(source);
ne = new MessageEvent("message",
{"bubbles": event.bubbles,
"cancelable": event.cancelable,
"data": event.data.message,
"origin": event.data.from,
"lastEventId": event.lastEventId,
"source": source,
"ports": event.ports});
ne._target = event.target;
ne._srcElement = event.srcElement;
ne._currentTarget = event.currentTarget;
ne._eventPhase = event.eventPhase;
ne._path = event.path;
}
return orig_listener(ne);
}
return {"listen": listen};
}
var event_target = null;
if ($wbwindow.EventTarget && $wbwindow.EventTarget.prototype) {
event_target = $wbwindow.EventTarget.prototype;
} else {
event_target = $wbwindow;
}
// ADD
var _orig_addEventListener = event_target.addEventListener;
var _orig_removeEventListener = event_target.removeEventListener;
var addEventListener_rewritten = function(type, listener, useCapture) {
var obj = proxy_to_obj(this);
if (type == "message") {
listener = message_listeners.add_or_get(listener, function() { return new WrappedListener(listener, obj).listen });
return _orig_addEventListener.call(obj, type, listener, useCapture);
} else if (type == "storage") {
listener = storage_listeners.add_or_get(listener, function() { return new SameOriginListener(listener, obj).listen });
} else {
return _orig_addEventListener.call(obj, type, listener, useCapture);
}
}
event_target.addEventListener = addEventListener_rewritten;
// REMOVE
var removeEventListener_rewritten = function(type, listener, useCapture) {
var obj = proxy_to_obj(this);
if (type == "message") {
listener = message_listeners.remove(listener);
} else if (type == "storage") {
listener = storage_listeners.remove(listener);
}
if (listener) {
return _orig_removeEventListener.call(obj, type, listener, useCapture);
}
}
event_target.removeEventListener = removeEventListener_rewritten;
//ONMESSAGE & ONSTORAGE
function override_on_prop(onevent, listener_cls) {
var orig_getter = get_orig_getter($wbwindow, onevent);
var orig_setter = get_orig_setter($wbwindow, onevent);
function setter(value) {
this['__orig_' + onevent] = value;
var obj = proxy_to_obj(this);
var listener = value ? new listener_cls(value, obj).listen : value;
return orig_setter.call(obj, listener);
}
function getter() {
return this['__orig_' + onevent];
}
def_prop($wbwindow, onevent, setter, getter);
}
override_on_prop("onmessage", WrappedListener);
override_on_prop("onstroage", SameOriginListener);
}
//============================================
function addEventOverride(attr, event_proto)
{
if (!event_proto) {
event_proto = $wbwindow.MessageEvent.prototype;
}
var orig_getter = get_orig_getter(event_proto, attr);
if (!orig_getter) {
return;
}
function getter() {
if (this["_" + attr] != undefined) {
return this["_" + attr];
}
return orig_getter.call(this);
}
def_prop(event_proto, attr, undefined, getter);
}
//============================================
function init_messageevent_override($wbwindow) {
if (!$wbwindow.MessageEvent || $wbwindow.MessageEvent.prototype.__extended) {
return;
}
addEventOverride("target");
addEventOverride("srcElement");
addEventOverride("currentTarget");
addEventOverride("eventPhase");
addEventOverride("path");
override_prop_to_proxy($wbwindow.MessageEvent.prototype, "source");
$wbwindow.MessageEvent.prototype.__extended = true;
}
//============================================
function override_func_this_proxy_to_obj(cls, method, obj) {
if (!cls) {
return;
}
if (!obj && cls.prototype && cls.prototype[method]) {
obj = cls.prototype;
} else if (!obj && cls[method]) {
obj = cls;
}
if (!obj) {
return;
}
var orig = obj[method];
function deproxy() {
return orig.apply(proxy_to_obj(this), arguments);
}
obj[method] = deproxy;
}
//============================================
function override_func_first_arg_proxy_to_obj(cls, method) {
if (!cls || !cls.prototype) {
return;
}
var prototype = cls.prototype;
var orig = prototype[method];
function deproxy() {
arguments[0] = proxy_to_obj(arguments[0]);
return orig.apply(this, arguments);
}
prototype[method] = deproxy;
}
//============================================
function override_apply_func($wbwindow) {
if ($wbwindow.Function.prototype.__WB_orig_apply) {
return;
}
var orig_func_to_string = Function.prototype.toString;
var orig_apply = $wbwindow.Function.prototype.apply;
$wbwindow.Function.prototype.__WB_orig_apply = orig_apply;
function deproxy(obj, args) {
if (orig_func_to_string.call(this).indexOf("[native code]") >= 0) {
if (args) {
for (var i = 0; i < args.length; i++) {
args[i] = proxy_to_obj(args[i]);
}
}
obj = proxy_to_obj(obj);
}
return this.__WB_orig_apply(obj, args);
}
$wbwindow.Function.prototype.apply = deproxy;
orig_func_to_string.apply = orig_apply;
}
//============================================
function init_open_override()
{
var orig = $wbwindow.open;
if ($wbwindow.Window.prototype.open) {
orig = $wbwindow.Window.prototype.open;
}
var open_rewritten = function(strUrl, strWindowName, strWindowFeatures) {
strUrl = rewrite_url(strUrl, false, "");
var res = orig.call(proxy_to_obj(this), strUrl, strWindowName, strWindowFeatures);
init_new_window_wombat(res, strUrl);
return res;
};
$wbwindow.open = open_rewritten;
if ($wbwindow.Window.prototype.open) {
$wbwindow.Window.prototype.open = open_rewritten;
}
for (var i = 0; i < $wbwindow.frames.length; i++) {
try {
$wbwindow.frames[i].open = open_rewritten;
} catch (e) {
console.log(e);
}
}
}
//============================================
function init_cookies_override()
{
var cookie_path_regex = /\bPath=\'?\"?([^;'"\s]+)/i;
var cookie_domain_regex = /\bDomain=([^;'"\s]+)/i;
var cookie_expires_regex = /\bExpires=([^;'"]+)/ig;
var orig_get_cookie = get_orig_getter($wbwindow.document, "cookie");
var orig_set_cookie = get_orig_setter($wbwindow.document, "cookie");
if (!orig_get_cookie) {
orig_get_cookie = get_orig_getter($wbwindow.Document.prototype, "cookie");
}
if (!orig_set_cookie) {
orig_set_cookie = get_orig_setter($wbwindow.Document.prototype, "cookie");
}
function rewrite_cookie(cookie) {
var IP_RX = /^(\d)+\.(\d)+\.(\d)+\.(\d)+$/;
cookie = cookie.replace(wb_abs_prefix, '');
cookie = cookie.replace(wb_rel_prefix, '');
// rewrite domain
cookie = cookie.replace(cookie_domain_regex, function(m, m1) {
var message = {"domain": m1,
"cookie": cookie,
"wb_type": "cookie",
}
// norify of cookie setting to allow server-side tracking
send_top_message(message, true);
// if no subdomain, eg. "localhost", just remove domain altogether
if ($wbwindow.location.hostname.indexOf(".") >= 0 && !IP_RX.test($wbwindow.location.hostname)) {
return "Domain=." + $wbwindow.location.hostname;
} else {
return "";
}
});
// rewrite path
cookie = cookie.replace(cookie_path_regex, function(m, m1) {
var rewritten = rewrite_url(m1);
if (rewritten.indexOf(wb_curr_host) == 0) {
rewritten = rewritten.substring(wb_curr_host.length);
}
return "Path=" + rewritten;
});
// rewrite secure, if needed
if ($wbwindow.location.protocol != "https:") {
cookie = cookie.replace("secure", "");
}
cookie = cookie.replace(",|", ",");
return cookie;
}
var set_cookie = function(value) {
if (!value) {
return;
}
var orig_value = value;
value = value.replace(cookie_expires_regex, function(m, d1) {
var date = new Date(d1);
if (isNaN(date.getTime())) {
return "Expires=Thu,| 01 Jan 1970 00:00:00 GMT";
}
date = new Date(date.getTime() + Date.__WB_timediff);
return "Expires=" + date.toUTCString().replace(",", ",|");
});
var cookies = value.split(/,(?![|])/);
for (var i = 0; i < cookies.length; i++) {
cookies[i] = rewrite_cookie(cookies[i]);
}
value = cookies.join(",")
return orig_set_cookie.call(proxy_to_obj(this), value);
}
function get_cookie() {
return orig_get_cookie.call(proxy_to_obj(this));
}
def_prop($wbwindow.document, "cookie", set_cookie, get_cookie);
}
//============================================
function init_write_override()
{
if (!$wbwindow.DOMParser) {
return;
}
// Write
var orig_doc_write = $wbwindow.document.write;
var new_write = function(string) {
new_buff = rewrite_html(string, true);
if (!new_buff) {
return;
}
var res = orig_doc_write.call(this, new_buff);
init_new_window_wombat(this.defaultView);
return res;
}
$wbwindow.document.write = new_write;
$wbwindow.Document.prototype.write = new_write;
// Writeln
var orig_doc_writeln = $wbwindow.document.writeln;
var new_writeln = function(string) {
new_buff = rewrite_html(string, true);
if (!new_buff) {
return;
}
var res = orig_doc_writeln.call(this, new_buff);
init_new_window_wombat(this.defaultView);
return res;
}
$wbwindow.document.writeln = new_writeln;
$wbwindow.Document.prototype.writeln = new_writeln;
// Open
var orig_doc_open = $wbwindow.document.open;
var new_open = function() {
var res = orig_doc_open.call(this);
init_new_window_wombat(this.defaultView);
return res;
}
$wbwindow.document.open = new_open;
$wbwindow.Document.prototype.open = new_open;
}
//============================================
function init_eval_override() {
var orig_eval = $wbwindow.eval;
$wbwindow.eval = function(string) {
if (string) {
string = string.toString().replace(/\blocation\b/g, "WB_wombat_$&");
}
orig_eval.call(this, string);
}
}
//============================================
function init_iframe_wombat(iframe) {
var win;
if (iframe._get_contentWindow) {
win = iframe._get_contentWindow.call(iframe);
} else {
win = iframe.contentWindow;
}
try {
if (!win || win == $wbwindow || win._skip_wombat || win._wb_wombat) {
return;
}
} catch (e) {
return;
}
//var src = iframe.src;
var src = wb_getAttribute.call(iframe, "src");
init_new_window_wombat(win, src);
}
//============================================
function init_new_window_wombat(win, src) {
if (!win || win._wb_wombat) {
return;
}
if (!src || src == "" || src == "about:blank" || src.indexOf("javascript:") >= 0) {
//win._WBWombat = wombat_internal(win);
//win._wb_wombat = new win._WBWombat(wb_info);
win._wb_wombat = new _WBWombat(win, wb_info);
} else {
// These should get overriden when content is loaded, but just in case...
//win._WB_wombat_location = win.location;
//win.document.WB_wombat_location = win.document.location;
//win._WB_wombat_top = $wbwindow.WB_wombat_top;
init_proto_pm_origin(win);
init_postmessage_override(win);
init_messageevent_override(win);
}
}
//============================================
function init_doc_overrides($document) {
if (!Object.defineProperty) {
return;
}
// referrer
override_prop_extract($document, "referrer");
// origin
def_prop($document, "origin", undefined, function() { return this.WB_wombat_location.origin; });
// domain
var domain_setter = function(val) {
var loc = this.WB_wombat_location;
if (loc && ends_with(loc.hostname, val)) {
this.__wb_domain = val;
}
}
var domain_getter = function() {
return this.__wb_domain || this.WB_wombat_location.hostname;
}
def_prop($document, "domain", domain_setter, domain_getter);
}
//============================================
function init_registerPH_override()
{
if (!$wbwindow.navigator.registerProtocolHandler) {
return;
}
var orig_registerPH = $wbwindow.navigator.registerProtocolHandler;
$wbwindow.navigator.registerProtocolHandler = function(protocol, uri, title) {
return orig_registerPH.call(this, protocol, rewrite_url(uri), title);
}
}
//============================================
function init_beacon_override()
{
if (!$wbwindow.navigator.sendBeacon) {
return;
}
var orig_sendBeacon = $wbwindow.navigator.sendBeacon;
$wbwindow.navigator.sendBeacon = function(url, data) {
return orig_sendBeacon.call(this, rewrite_url(url), data);
}
}
//============================================
function init_disable_notifications() {
if (window.Notification) {
window.Notification.requestPermission = function(callback) {
if (callback) {
callback("denied");
}
return Promise.resolve("denied");
}
}
if (window.geolocation) {
var disabled = function(success, error, options) {
if (error) {
error({"code": 2, "message": "not available"});
}
}
window.geolocation.getCurrentPosition = disabled;
window.geolocation.watchPosition = disabled;
}
}
//============================================
function init_storage_override() {
var CustomStorage = function() {
function fire_event(store, key, old_val, new_val) {
var sevent = new StorageEvent("storage", {
"key": key,
"newValue": new_val,
"oldValue": old_val,
"url": $wbwindow.WB_wombat_location.href,
});
sevent._storageArea = store;
storage_listeners.map(sevent);
}
this.data = {}
this.getItem = function(name) {
return this.data.hasOwnProperty(name) ? this.data[name] : null;
}
this.setItem = function(name, value) {
name = String(name);
//if (name.length > 1000) {
// name = name.substr(0, 1000);
//}
value = String(value);
var old_val = this.getItem(name);
this.data[name] = value;
fire_event(this, name, old_val, value);
}
this.removeItem = function(name) {
var old_val = this.getItem(name);
res = delete this.data[name];
fire_event(this, name, old_val, null);
return res;
}
this.clear = function() {
this.data = {};
fire_event(this, null, null, null);
}
this.key = function(n) {
var keys = Object.keys(this.data);
if (typeof(n) === "number" && n >= 0 && n < keys.length) {
return keys[n];
} else {
return null;
}
}
Object.defineProperty(this, "length", {"get": function() {
return Object.keys(this.data).length;
}});
}
addEventOverride("storageArea", $wbwindow.StorageEvent.prototype);
var local = new CustomStorage();
var session = new CustomStorage();
if ($wbwindow.Proxy) {
function wrap_proxy(obj) {
return new $wbwindow.Proxy(obj, {
get: function(target, prop) {
if (prop in target) {
return target[prop];
}
return target.getItem(prop);
},
set: function(target, prop, value) {
if (target.hasOwnProperty(prop)) {
return false;
}
target.setItem(prop, value);
return true;
},
getOwnPropertyDescriptor: function(target, prop) {
var descriptor = Object.getOwnPropertyDescriptor(target, prop);
return descriptor;
}
});
}
local = wrap_proxy(local);
session = wrap_proxy(session);
}
def_prop($wbwindow, "localStorage", undefined, function() { return local; });
def_prop($wbwindow, "sessionStorage", undefined, function() { return session; });
}
//============================================
function get_final_url(use_rel, mod, url) {
var prefix = use_rel ? wb_rel_prefix : wb_abs_prefix;
if (mod == undefined) {
mod = wb_info.mod;
}
// if live, don't add the timestamp
if (!wb_info.is_live) {
prefix += wb_info.wombat_ts;
}
prefix += mod;
if (prefix[prefix.length - 1] != "/") {
prefix += "/";
}
return prefix + url
}
//============================================
function init_paths(wbinfo) {
wb_info = wbinfo;
wb_opts = wbinfo.wombat_opts;
wb_replay_prefix = wbinfo.prefix;
wb_is_proxy = (wbinfo.proxy_magic || !wb_replay_prefix);
wb_info.top_host = wb_info.top_host || "*";
wb_curr_host = $wbwindow.location.protocol + "//" + $wbwindow.location.host;
wbinfo.wombat_opts = wbinfo.wombat_opts || {};
wb_orig_scheme = wbinfo.wombat_scheme + '://';
wb_orig_origin = wb_orig_scheme + wbinfo.wombat_host;
wb_abs_prefix = wb_replay_prefix;
if (!wbinfo.is_live && wbinfo.wombat_ts) {
wb_capture_date_part = "/" + wbinfo.wombat_ts + "/";
} else {
wb_capture_date_part = "";
}
init_bad_prefixes(wb_replay_prefix);
}
//============================================
// New Proxy Obj Override Functions
// Original Concept by John Berlin (https://github.com/N0taN3rd)
//============================================
function proxy_to_obj(source) {
try {
return (source && source.__WBProxyRealObj__) || source;
} catch (e) {
return source;
}
}
function obj_to_proxy(obj) {
try {
return (obj && obj._WB_wombat_obj_proxy) || obj;
} catch (e) {
return obj;
}
}
function getAllOwnProps(obj) {
var ownProps = [];
var props = Object.getOwnPropertyNames(obj);
for (var i = 0; i < props.length; i++) {
var prop = props[i];
try {
if (obj[prop] && !obj[prop].prototype) {
ownProps.push(prop);
}
} catch (e) {}
}
obj = Object.getPrototypeOf(obj);
while (obj) {
props = Object.getOwnPropertyNames(obj);
for (var i = 0; i < props.length; i++) {
ownProps.push(props[i]);
}
obj = Object.getPrototypeOf(obj);
}
return ownProps;
}
//============================================
function default_proxy_get(obj, prop, ownProps) {
if (prop == '__WBProxyRealObj__') {
return obj;
} else if (prop == 'location') {
return obj.WB_wombat_location;
} else if (prop == "_WB_wombat_obj_proxy") {
return obj._WB_wombat_obj_proxy;
}
var retVal = obj[prop];
var type = (typeof retVal);
if (type === "function" && ownProps.indexOf(prop) != -1) {
return retVal.bind(obj);
} else if (type === "object" && retVal && retVal._WB_wombat_obj_proxy) {
return retVal._WB_wombat_obj_proxy;
}
return retVal;
}
//============================================
function init_window_obj_proxy($wbwindow) {
if (!$wbwindow.Proxy) {
return undefined;
}
var ownProps = getAllOwnProps($wbwindow);
$wbwindow._WB_wombat_obj_proxy = new $wbwindow.Proxy({}, {
get: function(target, prop) {
if (prop == 'top') {
return $wbwindow.WB_wombat_top._WB_wombat_obj_proxy;
}
return default_proxy_get($wbwindow, prop, ownProps);
},
set: function(target, prop, value) {
if (prop === 'location') {
$wbwindow.WB_wombat_location = value;
return true;
} else if (prop === 'postMessage' || prop === 'document') {
return true;
} else {
try {
if (!Reflect.set(target, prop, value)) {
return false;
}
} catch(e) {}
return Reflect.set($wbwindow, prop, value);
}
},
has: function(target, prop) {
return Reflect.has(target, prop) || Reflect.has($wbwindow, prop);
//return prop in $wbwindow;
},
ownKeys: function(target) {
return Object.getOwnPropertyNames($wbwindow).concat(Object.getOwnPropertySymbols($wbwindow));
},
getOwnPropertyDescriptor: function(target, key) {
// first try the underlying object's descriptor
// (to match defineProperty() behavior)
var descriptor = Object.getOwnPropertyDescriptor(target, key);
if (!descriptor) {
descriptor = Object.getOwnPropertyDescriptor($wbwindow, key);
// if using window's descriptor, must ensure it's configurable
if (descriptor) {
descriptor.configurable = true;
}
}
return descriptor;
},
getPrototypeOf: function(target) {
return Object.getPrototypeOf($wbwindow);
},
setPrototypeOf: function(target, newProto) {
return false;
},
isExtensible: function(target) {
return Object.isExtensible($wbwindow);
},
preventExtensions: function(target) {
Object.preventExtensions($wbwindow);
return true;
},
deleteProperty: function(target, prop) {
var propDescriptor = Object.getOwnPropertyDescriptor($wbwindow, prop);
if (propDescriptor === undefined) {
return true;
}
if (propDescriptor.configurable === false) {
return false;
}
delete $wbwindow[prop];
return true;
},
defineProperty: function(target, prop, desc) {
desc = desc || {};
if (!desc.value && !desc.get) {
desc.value = $wbwindow[prop];
}
var res = Reflect.defineProperty($wbwindow, prop, desc);
return Reflect.defineProperty(target, prop, desc);
}
});
return $wbwindow._WB_wombat_obj_proxy;
}
//============================================
function init_document_obj_proxy($document) {
init_doc_overrides($document);
if (!$wbwindow.Proxy) {
return undefined;
}
var ownProps = getAllOwnProps($document);
$document._WB_wombat_obj_proxy = new $wbwindow.Proxy($document, {
get: function(target, prop) {
return default_proxy_get($document, prop, ownProps);
},
set: function(target, prop, value) {
if (prop === 'location') {
$document.WB_wombat_location = value;
return true;
} else {
target[prop] = value;
return true;
}
},
});
return $document._WB_wombat_obj_proxy;
}
// End Proxy Obj Override System
function init_history_replay($wbwindow, wbinfo) {
if (!wbinfo.history_state) {
return;
}
if ($wbwindow.__WB_replay_top != $wbwindow) {
return;
}
// replace initial state
if (!wbinfo.history_state.init_state) {
wbinfo.history_state.init_state = [wbinfo.history_state.base_state || $wbwindow.history.state,
$wbwindow.document.title,
wbinfo.history_state.base_url];
}
wbinfo.history_state.init_state[2] = wbinfo.prefix + wbinfo.history_state.base_timestamp + wbinfo.mod + "/" + wbinfo.history_state.init_state[2];
$wbwindow.history.replaceState.apply($wbwindow.history, wbinfo.history_state.init_state);
var replayed = false;
$wbwindow.addEventListener("load", function() {
setTimeout(replay, 500);
});
function replay() {
if (replayed) {
return;
}
if (document.readyState != "complete") {
return;
}
replayed = true;
var states = wbinfo.history_state.states;
var lastState = states[states.length - 1][0];
if ($wbwindow.history.state == lastState) {
return;
}
if ($wbwindow.WB_wombat_location.href == states[states.length - 1][2]) {
return;
}
for (var i = 0; i < states.length; i++) {
//if (states[i][2] == wbinfo.history_state.base_url) {
// continue;
//}
$wbwindow.history.pushState.apply($wbwindow.history, states[i]);
}
$wbwindow.dispatchEvent(new PopStateEvent('popstate', { state: lastState}));
};
}
//============================================
function wombat_init(wbinfo) {
init_paths(wbinfo);
init_top_frame($wbwindow);
init_wombat_loc($wbwindow);
init_history_replay($wbwindow, wbinfo);
// archival mode: init url-rewriting intercepts
if (!wb_is_proxy) {
init_wombat_top($wbwindow);
var wb_origin = $wbwindow.__WB_replay_top.location.origin;
if (wb_replay_prefix && wb_replay_prefix.indexOf(wb_origin) == 0) {
wb_rel_prefix = wb_replay_prefix.substring(wb_origin.length);
} else {
wb_rel_prefix = wb_replay_prefix;
}
var rx = "(" + wb_origin + ")?" + wb_rel_prefix + "[^/]+/";
wb_unrewrite_rx = new RegExp(rx, "g");
// History
init_history_overrides();
// Doc Title
init_doc_title_override();
// postMessage
// OPT skip
if (!wb_opts.skip_postmessage) {
init_postmessage_override($wbwindow);
init_messageevent_override($wbwindow);
}
init_hash_change();
// write
init_write_override();
// eval
//init_eval_override();
// Ajax
init_ajax_rewrite();
// Fetch
init_fetch_rewrite();
init_request_override();
// Audio
init_audio_override();
// Worker override (experimental)
init_web_worker_override();
init_service_worker_override();
// innerHTML can be overriden on prototype!
override_html_assign($wbwindow.HTMLElement, "innerHTML", true);
override_html_assign($wbwindow.HTMLElement, "outerHTML", true);
override_html_assign($wbwindow.HTMLIFrameElement, "srcdoc", true);
override_html_assign($wbwindow.HTMLStyleElement, "textContent");
// Document.URL override
override_prop_extract($wbwindow.Document.prototype, "URL");
override_prop_extract($wbwindow.Document.prototype, "documentURI");
// Node.baseURI override
override_prop_extract($wbwindow.Node.prototype, "baseURI");
// Attr nodeValue and value
override_attr_props();
// init insertAdjacentHTML() override
init_insertAdjacentHTML_override();
// iframe.contentWindow and iframe.contentDocument overrides to
// ensure wombat is inited on the iframe $wbwindow!
override_iframe_content_access("contentWindow");
override_iframe_content_access("contentDocument");
// override funcs to convert first arg proxy->obj
override_func_first_arg_proxy_to_obj($wbwindow.MutationObserver, "observe");
override_func_first_arg_proxy_to_obj($wbwindow.Node, "compareDocumentPosition");
override_func_first_arg_proxy_to_obj($wbwindow.Node, "contains");
override_func_first_arg_proxy_to_obj($wbwindow.Document, "createTreeWalker");
override_func_this_proxy_to_obj($wbwindow, "setTimeout");
override_func_this_proxy_to_obj($wbwindow, "setInterval");
override_func_this_proxy_to_obj($wbwindow, "getComputedStyle", $wbwindow);
//override_func_this_proxy_to_obj($wbwindow.EventTarget, "addEventListener");
//override_func_this_proxy_to_obj($wbwindow.EventTarget, "removeEventListener");
override_apply_func($wbwindow);
override_frames_access($wbwindow);
// setAttribute
if (!wb_opts.skip_setAttribute) {
init_setAttribute_override();
init_getAttribute_override();
}
init_svg_image_overrides();
// override href and src attrs
init_attr_overrides();
// Cookies
init_cookies_override();
// ensure namespace urls are NOT rewritten
init_createElementNS_fix();
// Image
//init_image_override();
// DOM
// OPT skip
if (!wb_opts.skip_dom) {
init_dom_override();
}
// registerProtocolHandler override
init_registerPH_override();
//sendBeacon override
init_beacon_override();
}
// other overrides
// proxy mode: only using these overrides
// Random
init_seeded_random(wbinfo.wombat_sec);
// Crypto Random
init_crypto_random();
// set fixed pixel ratio
init_fixed_ratio();
// Date
init_date_override(wbinfo.wombat_sec);
// open
init_open_override();
// disable notifications
init_disable_notifications();
// custom storage
init_storage_override();
// add window and document obj proxies, if available
init_window_obj_proxy($wbwindow);
init_document_obj_proxy($wbwindow.document);
// expose functions
var obj = {}
obj.extract_orig = extract_orig;
obj.rewrite_url = rewrite_url;
obj.watch_elem = watch_elem;
obj.init_new_window_wombat = init_new_window_wombat;
obj.init_paths = init_paths;
obj.local_init = function(name) {
var res = $wbwindow._WB_wombat_obj_proxy[name];
if (name === "document" && res && !res._WB_wombat_obj_proxy) {
return init_document_obj_proxy(res) || res;
}
return res;
}
if (wbinfo.is_framed && wbinfo.mod != "bn_") {
init_top_frame_notify(wbinfo);
}
return obj;
}
function init_top_frame_notify(wbinfo) {
function notify_top(event) {
if (!$wbwindow.__WB_top_frame) {
var hash = $wbwindow.location.hash;
//var loc = window.location.href.replace(window.location.hash, "");
//loc = decodeURI(loc);
//if (wbinfo.top_url && (loc != decodeURI(wbinfo.top_url))) {
// Auto-redirect to top frame
$wbwindow.location.replace(wbinfo.top_url + hash);
//}
return;
}
if ($wbwindow != $wbwindow.__WB_replay_top) {
return;
}
if (!$wbwindow.WB_wombat_location) {
return;
}
var url = $wbwindow.WB_wombat_location.href;
if (typeof(url) != "string" || url == "about:blank" || url.indexOf("javascript:") == 0) {
return;
}
var message = {
"base_url": wbinfo.url,
"base_ts": wbinfo.timestamp,
"url": $wbwindow.WB_wombat_location.href,
"ts": Date.__WB_ts_now(),
"request_ts": wbinfo.request_ts,
"is_live": wbinfo.is_live,
"title": $wbwindow.document ? $wbwindow.document.title : "",
"readyState": $wbwindow.document.readyState,
"wb_type": "load"
"coll": wbinfo.coll,
}
send_top_message(message);
}
if ($wbwindow.document.readyState == "complete") {
notify_top();
} else if ($wbwindow.addEventListener) {
$wbwindow.document.addEventListener("readystatechange", notify_top);
} else if ($wbwindow.attachEvent) {
$wbwindow.document.attachEvent("onreadystatechange", notify_top);
}
}
function send_top_message(message, skip_top_check) {
if (!$wbwindow.__WB_top_frame) {
return;
}
if (!skip_top_check && $wbwindow != $wbwindow.__WB_replay_top) {
return;
}
$wbwindow.__WB_top_frame.postMessage(message, wbinfo.top_host);
}
function init_top_frame($wbwindow) {
// proxy mode
if (wb_is_proxy) {
$wbwindow.__WB_replay_top = $wbwindow.top;
$wbwindow.__WB_top_frame = undefined;
return;
}
function next_parent(win) {
try {
if (!win) {
return false;
}
// if no wbinfo, see if _wb_wombat was set (eg. if about:blank page)
if (!win.wbinfo) {
return (win._wb_wombat != undefined);
} else {
// otherwise, ensure that it is not a top container frame
return win.wbinfo.is_framed
}
} catch (e) {
return false;
}
}
var replay_top = $wbwindow;
while ((replay_top.parent != replay_top) && next_parent(replay_top.parent)) {
replay_top = replay_top.parent;
}
$wbwindow.__WB_replay_top = replay_top;
var real_parent = replay_top.__WB_orig_parent || replay_top.parent;
// Check to ensure top frame is different window and directly accessible (later refactor to support postMessage)
//try {
// if ((real_parent == $wbwindow) || !real_parent.wbinfo || !real_parent.wbinfo.is_frame) {
// real_parent = undefined;
// }
//} catch (e) {
// real_parent = undefined;
//}
if (real_parent == $wbwindow || !wb_info.is_framed) {
real_parent = undefined;
}
if (real_parent) {
$wbwindow.__WB_top_frame = real_parent;
init_frameElement_override($wbwindow);
} else {
$wbwindow.__WB_top_frame = undefined;
}
// Fix .parent only if not embeddable, otherwise leave for accessing embedding window
if (!wb_opts.embedded && (replay_top == $wbwindow)) {
$wbwindow.__WB_orig_parent = $wbwindow.parent;
$wbwindow.parent = replay_top;
}
}
function init_frameElement_override($wbwindow) {
if (!Object.defineProperty) {
return;
}
// Also try disabling frameElement directly, though may no longer be supported in all browsers
if (proxy_to_obj($wbwindow.__WB_replay_top) == proxy_to_obj($wbwindow)) {
try {
Object.defineProperty($wbwindow, "frameElement", {value: null, configurable: false});
} catch (e) {}
}
}
function init_wombat_top($wbwindow) {
if (!Object.defineProperty) {
return;
}
// from http://stackoverflow.com/a/6229603
function isWindow(obj) {
if (typeof(window.constructor) === 'undefined') {
return obj instanceof window.constructor;
} else {
return obj.window === obj;
}
}
var getter = function() {
if (this.__WB_replay_top) {
return this.__WB_replay_top;
} else if (isWindow(this)) {
return this;
} else {
return this.top;
}
}
var setter = function(val) {
this.top = val;
}
def_prop($wbwindow.Object.prototype, "WB_wombat_top", setter, getter);
}
// Utility functions used by rewriting rules
function watch_elem(elem, func)
{
if (!$wbwindow.MutationObserver) {
return false;
}
var m = new MutationObserver(function(records, observer) {
for (var i = 0; i < records.length; i++) {
var r = records[i];
if (r.type == "childList") {
for (var j = 0; j < r.addedNodes.length; j++) {
func(r.addedNodes[j]);
}
}
}
});
m.observe(elem, {
childList: true,
subtree: true,
});
};
return wombat_init(wbinfo);
};
window._WBWombat = _WBWombat;