classic-ui/plugins/detectIPFS.js

19 lines
579 B
JavaScript
Raw Normal View History

2022-04-22 06:05:56 +03:00
/* eslint-disable no-console */
export default ({ store, isHMR, app }, inject) => {
inject('isLoadedFromIPFS', main)
}
function main() {
2022-06-07 13:55:37 +03:00
const whiteListedDomains = ['localhost:3000', 'tornadocash.eth.link', 'tornadocash.eth.limo']
2022-04-22 06:05:56 +03:00
2022-06-06 17:26:00 +03:00
const NETLIFY_REGEXP = /https:\/\/deploy-preview-(\d+)--tornadocash\.netlify\.app/
if (NETLIFY_REGEXP.test(window.location.host)) {
2022-04-22 06:05:56 +03:00
return false
2022-06-06 17:26:00 +03:00
} else if (!whiteListedDomains.includes(window.location.host)) {
2022-04-22 06:05:56 +03:00
console.warn('The page has been loaded from ipfs.io. LocalStorage is disabled')
return true
}
return false
}