Skip to content

Commit

Permalink
feat: Domains list to allow iframe on all subdomains
Browse files Browse the repository at this point in the history
  • Loading branch information
ChaituVR committed Sep 30, 2024
1 parent 43875b2 commit d5dc222
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
3 changes: 3 additions & 0 deletions src/helpers/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ export const KNOWN_HOSTS = [
'safe.mainnet.frax.com'
];

// All subdomains of these domains are allowed
export const KNOWN_DOMAINS = ['blockscout.com'];

export const SPACE_CATEGORIES = [
'protocol',
'social',
Expand Down
8 changes: 6 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import VueTippy from 'vue-tippy';
import VueViewer from 'v-viewer';
import { apolloClient } from '@/helpers/apollo';
// import { initSentry } from '@/sentry';
import { KNOWN_HOSTS } from '@/helpers/constants';
import { KNOWN_DOMAINS, KNOWN_HOSTS } from '@/helpers/constants';
import i18n from '@/helpers/i18n';
import router from '@/router';
import '@/assets/css/main.scss';
Expand All @@ -24,7 +24,11 @@ const parentUrl =
]
: document.location.href;
const parentHost = new URL(parentUrl).host;
if (window !== window.parent && !KNOWN_HOSTS.includes(parentHost)) {
if (
window !== window.parent &&
!KNOWN_HOSTS.includes(parentHost) &&
!KNOWN_DOMAINS.includes(parentHost.split('.').slice(-2).join('.'))
) {
document.documentElement.style.display = 'none';
throw new Error(`Unknown host: ${parentHost}`);
}
Expand Down

0 comments on commit d5dc222

Please sign in to comment.