nifty-wallet/app/scripts/contentscript.js

92 lines
2.7 KiB
JavaScript
Raw Normal View History

const LocalMessageDuplexStream = require('post-message-stream')
const PongStream = require('ping-pong-stream/pong')
2015-12-18 22:05:16 -08:00
const PortStream = require('./lib/port-stream.js')
2016-05-05 16:04:43 -07:00
const ObjectMultiplex = require('./lib/obj-multiplex')
const extension = require('extensionizer')
2016-05-05 16:04:43 -07:00
const fs = require('fs')
const path = require('path')
2016-11-11 10:26:12 -08:00
const inpageText = fs.readFileSync(path.join(__dirname, 'inpage.js')).toString()
// Eventually this streaming injection could be replaced with:
// https://developer.mozilla.org/en-US/docs/Mozilla/Tech/XPCOM/Language_Bindings/Components.utils.exportFunction
//
// But for now that is only Firefox
// If we create a FireFox-only code path using that API,
// MetaMask will be much faster loading and performant on Firefox.
if (shouldInjectWeb3()) {
setupInjection()
setupStreams()
}
2016-11-11 10:26:12 -08:00
function setupInjection () {
try {
// inject in-page script
var scriptTag = document.createElement('script')
scriptTag.src = extension.extension.getURL('scripts/inpage.js')
scriptTag.textContent = inpageText
scriptTag.onload = function () { this.parentNode.removeChild(this) }
var container = document.head || document.documentElement
// append as first child
container.insertBefore(scriptTag, container.children[0])
} catch (e) {
console.error('Metamask injection failed.', e)
}
}
2016-11-11 10:26:12 -08:00
function setupStreams () {
// setup communication to page and plugin
var pageStream = new LocalMessageDuplexStream({
name: 'contentscript',
target: 'inpage',
})
2016-08-29 16:49:58 -07:00
pageStream.on('error', console.error)
var pluginPort = extension.runtime.connect({name: 'contentscript'})
var pluginStream = new PortStream(pluginPort)
2016-08-29 16:49:58 -07:00
pluginStream.on('error', console.error)
// forward communication plugin->inpage
pageStream.pipe(pluginStream).pipe(pageStream)
// setup local multistream channels
var mx = ObjectMultiplex()
2016-08-29 16:49:58 -07:00
mx.on('error', console.error)
mx.pipe(pageStream).pipe(mx)
// connect ping stream
var pongStream = new PongStream({ objectMode: true })
pongStream.pipe(mx.createStream('pingpong')).pipe(pongStream)
// ignore unused channels (handled by background)
mx.ignoreStream('provider')
mx.ignoreStream('publicConfig')
mx.ignoreStream('reload')
}
2016-11-11 10:26:12 -08:00
function shouldInjectWeb3 () {
2017-03-28 11:30:39 -07:00
return doctypeCheck() || suffixCheck()
2016-10-15 15:33:49 -07:00
}
2017-03-28 11:30:39 -07:00
function doctypeCheck () {
2017-03-22 11:25:56 -07:00
const doctype = window.document.doctype
if (doctype) {
return doctype.name === 'html'
} else {
2017-03-28 11:30:39 -07:00
return false
2016-10-15 15:33:49 -07:00
}
}
2017-03-28 11:30:39 -07:00
function suffixCheck() {
var prohibitedTypes = ['xml', 'pdf']
var currentUrl = window.location.href
var currentRegex
for (let i = 0; i < prohibitedTypes.length; i++) {
currentRegex = new RegExp(`\.${prohibitedTypes[i]}$`)
if (currentRegex.test(currentUrl)) {
return false
}
}
return true
}