Last active
March 27, 2020 21:03
-
-
Save Rayzeq/e8ccd6d32787cc5f1e6db8dd30ccef91 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
customElements.define('x-frame-bypass', class extends HTMLIFrameElement { | |
constructor () { | |
super() | |
} | |
connectedCallback () { | |
this.load(this.src) | |
this.src = '' | |
this.sandbox = '' + this.sandbox || 'allow-forms allow-modals allow-pointer-lock allow-popups allow-popups-to-escape-sandbox allow-presentation allow-same-origin allow-scripts allow-top-navigation-by-user-activation' // all except allow-top-navigation | |
} | |
load (url, options) { | |
if (!url || !url.startsWith('http')) | |
throw new Error(`X-Frame-Bypass src ${url} does not start with http(s)://`) | |
console.log('X-Frame-Bypass loading:', url) | |
this.srcdoc = `<html> | |
<head> | |
<style> | |
.loader { | |
position: absolute; | |
top: calc(50% - 25px); | |
left: calc(50% - 25px); | |
width: 50px; | |
height: 50px; | |
background-color: #333; | |
border-radius: 50%; | |
animation: loader 1s infinite ease-in-out; | |
} | |
@keyframes loader { | |
0% { | |
transform: scale(0); | |
} | |
100% { | |
transform: scale(1); | |
opacity: 0; | |
} | |
} | |
</style> | |
</head> | |
<body> | |
<div class="loader"></div> | |
</body> | |
</html>` | |
this.fetchProxy(url, options, 0).then(res => res.text()).then(data => { | |
if (data) | |
this.srcdoc = data.replace(/<head([^>]*)>/i, `<head$1> | |
<base href="${url}"> | |
<script> | |
// X-Frame-Bypass navigation event handlers | |
document.addEventListener('click', e => { | |
if (frameElement && document.activeElement && document.activeElement.href) { | |
e.preventDefault() | |
frameElement.load(document.activeElement.href) | |
} | |
}) | |
document.addEventListener('submit', e => { | |
if (frameElement && document.activeElement && document.activeElement.form && document.activeElement.form.action) { | |
e.preventDefault() | |
if (document.activeElement.form.method === 'post') | |
frameElement.load(document.activeElement.form.action, {method: 'post', body: new FormData(document.activeElement.form)}) | |
else | |
frameElement.load(document.activeElement.form.action + '?' + new URLSearchParams(new FormData(document.activeElement.form))) | |
} | |
}) | |
</script>`) | |
}).catch(e => console.error('Cannot load X-Frame-Bypass:', e)) | |
} | |
fetchProxy (url, options, i) { | |
const proxy = [ | |
'https://cors.io/?', | |
'https://jsonp.afeld.me/?url=', | |
'https://cors-anywhere.herokuapp.com/' | |
] | |
return fetch(proxy[i] + url, options).then(res => { | |
if (!res.ok) | |
throw new Error(`${res.status} ${res.statusText}`); | |
return res | |
}).catch(error => { | |
if (i === proxy.length - 1) | |
throw error | |
return this.fetchProxy(url, options, i + 1) | |
}) | |
} | |
}, {extends: 'iframe'}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment