nifty-wallet/app/scripts/background.js

198 lines
6.2 KiB
JavaScript
Raw Normal View History

const urlUtil = require('url')
const endOfStream = require('end-of-stream')
const pump = require('pump')
2017-09-13 10:28:29 -07:00
const log = require('loglevel')
const extension = require('extensionizer')
2017-01-24 19:47:00 -08:00
const LocalStorageStore = require('obs-store/lib/localStorage')
const storeTransform = require('obs-store/lib/transform')
const asStream = require('obs-store/lib/asStream')
const ExtensionPlatform = require('./platforms/extension')
const Migrator = require('./lib/migrator/')
2017-01-24 19:47:00 -08:00
const migrations = require('./migrations/')
2016-05-22 18:02:27 -07:00
const PortStream = require('./lib/port-stream.js')
const NotificationManager = require('./lib/notification-manager.js')
const MetamaskController = require('./metamask-controller')
const firstTimeState = require('./first-time-state')
const setupRaven = require('./lib/setupRaven')
const reportFailedTxToSentry = require('./lib/reportFailedTxToSentry')
const setupMetamaskMeshMetrics = require('./lib/setupMetamaskMeshMetrics')
2018-02-22 05:39:32 -08:00
const EdgeEncryptor = require('./edge-encryptor')
const STORAGE_KEY = 'metamask-config'
2016-11-01 11:21:46 -07:00
const METAMASK_DEBUG = 'GULP_METAMASK_DEBUG'
window.log = log
log.setDefaultLevel(METAMASK_DEBUG ? 'debug' : 'warn')
const platform = new ExtensionPlatform()
const notificationManager = new NotificationManager()
global.METAMASK_NOTIFIER = notificationManager
// setup sentry error reporting
const release = platform.getVersion()
2018-01-22 15:54:26 -08:00
const raven = setupRaven({ release })
2018-02-22 05:39:32 -08:00
// browser check if it is Edge - https://stackoverflow.com/questions/9847580/how-to-detect-safari-chrome-ie-firefox-and-opera-browser
// Internet Explorer 6-11
const isIE = !!document.documentMode
// Edge 20+
const isEdge = !isIE && !!window.StyleMedia
let popupIsOpen = false
let notifcationIsOpen = false;
let openMetamaskTabsIDs = {}
2016-08-11 19:44:59 -07:00
// state persistence
const diskStore = new LocalStorageStore({ storageKey: STORAGE_KEY })
// initialization flow
2017-09-13 10:28:29 -07:00
initialize().catch(log.error)
// setup metamask mesh testing container
setupMetamaskMeshMetrics()
2017-05-28 11:18:07 -07:00
async function initialize () {
const initState = await loadStateFromPersistence()
await setupController(initState)
2017-09-13 10:28:29 -07:00
log.debug('MetaMask initialization complete.')
}
2017-01-11 19:04:19 -08:00
//
// State and Persistence
//
async function loadStateFromPersistence () {
// migrations
2017-04-26 21:05:45 -07:00
const migrator = new Migrator({ migrations })
// read from disk
let versionedData = diskStore.getState() || migrator.generateInitialState(firstTimeState)
// migrate data
versionedData = await migrator.migrateData(versionedData)
// write to disk
diskStore.putState(versionedData)
// return just the data
return versionedData.data
}
function setupController (initState) {
//
// MetaMask Controller
//
const controller = new MetamaskController({
// User confirmation callbacks:
showUnconfirmedMessage: triggerUi,
unlockAccountMessage: triggerUi,
showUnapprovedTx: triggerUi,
// initial state
initState,
// platform specific api
platform,
2018-02-22 05:39:32 -08:00
encryptor: isEdge ? new EdgeEncryptor() : undefined,
})
global.metamaskController = controller
2018-01-22 15:54:26 -08:00
// report failed transactions to Sentry
controller.txController.on(`tx:status-update`, (txId, status) => {
if (status !== 'failed') return
const txMeta = controller.txController.txStateManager.getTx(txId)
reportFailedTxToSentry({ raven, txMeta })
2018-01-22 15:54:26 -08:00
})
// setup state persistence
pump(
asStream(controller.store),
2017-01-24 19:47:00 -08:00
storeTransform(versionifyData),
asStream(diskStore)
2017-01-24 19:47:00 -08:00
)
2017-04-26 21:05:45 -07:00
function versionifyData (state) {
const versionedData = diskStore.getState()
versionedData.data = state
return versionedData
2017-01-24 19:47:00 -08:00
}
//
// connect to other contexts
//
extension.runtime.onConnect.addListener(connectRemote)
function connectRemote (remotePort) {
const isMetaMaskInternalProcess = remotePort.name === 'popup' || remotePort.name === 'notification'
const portStream = new PortStream(remotePort)
if (isMetaMaskInternalProcess) {
// communication with popup
popupIsOpen = popupIsOpen || (remotePort.name === 'popup')
controller.setupTrustedCommunication(portStream, 'MetaMask')
// record popup as closed
if (remotePort.sender.url.match(/home.html$/)) {
openMetamaskTabsIDs[remotePort.sender.tab.id] = true
}
if (remotePort.name === 'popup') {
endOfStream(portStream, () => {
popupIsOpen = false
if (remotePort.sender.url.match(/home.html$/)) {
openMetamaskTabsIDs[remotePort.sender.tab.id] = false
}
})
}
if (remotePort.name === 'notification') {
endOfStream(portStream, () => {
notifcationIsOpen = false
});
}
} else {
// communication with page
const originDomain = urlUtil.parse(remotePort.sender.url).hostname
controller.setupUntrustedCommunication(portStream, originDomain)
}
}
//
// User Interface setup
//
2017-01-21 10:06:50 -08:00
updateBadge()
controller.txController.on('update:badge', updateBadge)
controller.messageManager.on('updateBadge', updateBadge)
controller.personalMessageManager.on('updateBadge', updateBadge)
// plugin badge text
function updateBadge () {
var label = ''
var unapprovedTxCount = controller.txController.getUnapprovedTxCount()
var unapprovedMsgCount = controller.messageManager.unapprovedMsgCount
var unapprovedPersonalMsgs = controller.personalMessageManager.unapprovedPersonalMsgCount
2017-09-29 09:24:08 -07:00
var unapprovedTypedMsgs = controller.typedMessageManager.unapprovedTypedMessagesCount
var count = unapprovedTxCount + unapprovedMsgCount + unapprovedPersonalMsgs + unapprovedTypedMsgs
if (count) {
label = String(count)
}
extension.browserAction.setBadgeText({ text: label })
extension.browserAction.setBadgeBackgroundColor({ color: '#506F8B' })
}
return Promise.resolve()
2016-02-10 17:44:46 -08:00
}
//
// Etc...
2016-02-10 17:44:46 -08:00
//
// popup trigger
function triggerUi () {
extension.tabs.query({ active: true }, (tabs) => {
const currentlyActiveMetamaskTab = tabs.find(tab => openMetamaskTabsIDs[tab.id])
if (!popupIsOpen && !currentlyActiveMetamaskTab) notificationManager.showPopup();
notifcationIsOpen = true;
})
}
2015-12-18 22:05:16 -08:00
// On first install, open a window to MetaMask website to how-it-works.
extension.runtime.onInstalled.addListener(function (details) {
if ((details.reason === 'install') && (!METAMASK_DEBUG)) {
extension.tabs.create({url: 'https://metamask.io/#how-it-works'})
}
})