Skip to content

Instantly share code, notes, and snippets.

@ten4dinosaur
Created October 31, 2024 14:12
Show Gist options
  • Save ten4dinosaur/debc5226cdc28950a91042ef22a070ef to your computer and use it in GitHub Desktop.
Save ten4dinosaur/debc5226cdc28950a91042ef22a070ef to your computer and use it in GitHub Desktop.
(function () {
const root = typeof unsafeWindow !== "undefined" ? unsafeWindow : window;
let tokenId = undefined;
let updateFunction = undefined;
Object.defineProperty(root, "forcePoTokenId", {
get: () => tokenId,
set: (value) => {
tokenId = value;
if (typeof updateFunction === "function") updateFunction();
},
});
const initPoTokenMocker = (flags) => {
const interval = flags.html5_session_po_token_interval_time_ms - 0 || 0;
flags.html5_session_po_token_interval_time_ms = "529453054";
const setInterval = root.setInterval;
root.setInterval = function (func, delay, ...args) {
if (delay !== 529453054)
return setInterval.call(this, func, delay, ...args);
if (typeof func === "function") {
updateFunction = function () {
flags.html5_mock_content_binding_for_session_token =
tokenId;
func();
};
updateFunction();
}
return interval !== 0
? setInterval.call(this, func, interval, ...args)
: undefined;
};
};
Object.defineProperty(Object.prototype, "html5_web_po_request_key", {
get: function () {
delete Object.prototype.html5_web_po_request_key;
initPoTokenMocker(this);
return undefined;
},
set: function (value) {
delete Object.prototype.html5_web_po_request_key;
initPoTokenMocker(this);
return (this.html5_web_po_request_key = value);
},
enumerable: false,
configurable: true,
});
return window;
})();
@ten4dinosaur
Copy link
Author

examples
window.forcePoTokenId = undefined // use default id
window.forcePoTokenId = '111111111111111111111||' // use specific id

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment