2016-05-26 02:27:49 +02:00
|
|
|
const urlUtil = require('url')
|
2017-01-27 05:52:46 +01:00
|
|
|
const endOfStream = require('end-of-stream')
|
2017-01-12 10:17:05 +01:00
|
|
|
const asyncQ = require('async-q')
|
2017-01-25 04:47:00 +01:00
|
|
|
const pipe = require('pump')
|
|
|
|
const LocalStorageStore = require('obs-store/lib/localStorage')
|
|
|
|
const storeTransform = require('obs-store/lib/transform')
|
2017-01-12 10:17:05 +01:00
|
|
|
const Migrator = require('./lib/migrator/')
|
2017-01-25 04:47:00 +01:00
|
|
|
const migrations = require('./migrations/')
|
2016-05-23 03:02:27 +02:00
|
|
|
const PortStream = require('./lib/port-stream.js')
|
2016-08-23 20:15:56 +02:00
|
|
|
const notification = require('./lib/notifications.js')
|
2016-06-25 00:55:11 +02:00
|
|
|
const MetamaskController = require('./metamask-controller')
|
2016-07-21 19:45:32 +02:00
|
|
|
const extension = require('./lib/extension')
|
2017-01-12 07:47:56 +01:00
|
|
|
const firstTimeState = require('./first-time-state')
|
2016-06-24 22:05:21 +02:00
|
|
|
|
2016-06-25 00:52:56 +02:00
|
|
|
const STORAGE_KEY = 'metamask-config'
|
2016-11-01 19:21:46 +01:00
|
|
|
const METAMASK_DEBUG = 'GULP_METAMASK_DEBUG'
|
2017-01-15 06:29:46 +01:00
|
|
|
|
2017-01-12 07:47:56 +01:00
|
|
|
let popupIsOpen = false
|
2016-08-12 04:44:59 +02:00
|
|
|
|
2017-01-12 10:17:05 +01:00
|
|
|
// state persistence
|
|
|
|
const diskStore = new LocalStorageStore({ storageKey: STORAGE_KEY })
|
|
|
|
|
|
|
|
// initialization flow
|
|
|
|
asyncQ.waterfall([
|
|
|
|
() => loadStateFromPersistence(),
|
|
|
|
(initState) => setupController(initState),
|
|
|
|
])
|
|
|
|
.then(() => console.log('MetaMask initialization complete.'))
|
|
|
|
.catch((err) => { console.error(err) })
|
2017-01-12 04:04:19 +01:00
|
|
|
|
2017-01-12 07:47:56 +01:00
|
|
|
//
|
|
|
|
// State and Persistence
|
|
|
|
//
|
|
|
|
|
2017-01-12 10:17:05 +01:00
|
|
|
function loadStateFromPersistence() {
|
|
|
|
// migrations
|
|
|
|
let migrator = new Migrator({ migrations })
|
2017-01-12 11:24:33 +01:00
|
|
|
let initialState = migrator.generateInitialState(firstTimeState)
|
2017-01-12 10:17:05 +01:00
|
|
|
return asyncQ.waterfall([
|
|
|
|
// read from disk
|
2017-01-25 04:47:00 +01:00
|
|
|
() => Promise.resolve(diskStore.getState() || initialState),
|
2017-01-12 10:17:05 +01:00
|
|
|
// migrate data
|
|
|
|
(versionedData) => migrator.migrateData(versionedData),
|
|
|
|
// write to disk
|
|
|
|
(versionedData) => {
|
2017-01-25 04:47:00 +01:00
|
|
|
diskStore.putState(versionedData)
|
2017-01-12 10:17:05 +01:00
|
|
|
return Promise.resolve(versionedData)
|
|
|
|
},
|
|
|
|
// resolve to just data
|
|
|
|
(versionedData) => Promise.resolve(versionedData.data),
|
|
|
|
])
|
2017-01-12 07:47:56 +01:00
|
|
|
}
|
|
|
|
|
2017-01-12 10:17:05 +01:00
|
|
|
function setupController (initState) {
|
2017-01-12 07:47:56 +01:00
|
|
|
|
2017-01-12 10:17:05 +01:00
|
|
|
//
|
|
|
|
// MetaMask Controller
|
|
|
|
//
|
2017-01-12 07:47:56 +01:00
|
|
|
|
2017-01-12 10:17:05 +01:00
|
|
|
const controller = new MetamaskController({
|
|
|
|
// User confirmation callbacks:
|
|
|
|
showUnconfirmedMessage: triggerUi,
|
|
|
|
unlockAccountMessage: triggerUi,
|
|
|
|
showUnapprovedTx: triggerUi,
|
|
|
|
// initial state
|
|
|
|
initState,
|
|
|
|
})
|
2017-01-12 11:24:33 +01:00
|
|
|
global.metamaskController = controller
|
2017-01-12 07:47:56 +01:00
|
|
|
|
2017-01-12 10:17:05 +01:00
|
|
|
// setup state persistence
|
2017-01-25 04:47:00 +01:00
|
|
|
pipe(
|
|
|
|
controller.store,
|
|
|
|
storeTransform(versionifyData),
|
|
|
|
diskStore
|
|
|
|
)
|
|
|
|
|
|
|
|
function versionifyData(state) {
|
|
|
|
let versionedData = diskStore.getState()
|
2017-01-12 23:40:04 +01:00
|
|
|
versionedData.data = state
|
|
|
|
return versionedData
|
2017-01-25 04:47:00 +01:00
|
|
|
}
|
2017-01-12 10:17:05 +01:00
|
|
|
|
|
|
|
//
|
|
|
|
// connect to other contexts
|
|
|
|
//
|
|
|
|
|
|
|
|
extension.runtime.onConnect.addListener(connectRemote)
|
|
|
|
function connectRemote (remotePort) {
|
|
|
|
var isMetaMaskInternalProcess = remotePort.name === 'popup' || remotePort.name === 'notification'
|
|
|
|
var portStream = new PortStream(remotePort)
|
|
|
|
if (isMetaMaskInternalProcess) {
|
|
|
|
// communication with popup
|
2017-01-27 05:52:46 +01:00
|
|
|
popupIsOpen = popupIsOpen || (remotePort.name === 'popup')
|
|
|
|
controller.setupTrustedCommunication(portStream, 'MetaMask', remotePort.name)
|
|
|
|
// record popup as closed
|
|
|
|
if (remotePort.name === 'popup') {
|
|
|
|
endOfStream(portStream, () => {
|
|
|
|
popupIsOpen = false
|
|
|
|
})
|
|
|
|
}
|
2017-01-12 10:17:05 +01:00
|
|
|
} else {
|
|
|
|
// communication with page
|
|
|
|
var originDomain = urlUtil.parse(remotePort.sender.url).hostname
|
2017-01-27 05:52:46 +01:00
|
|
|
controller.setupUntrustedCommunication(portStream, originDomain)
|
2017-01-12 10:17:05 +01:00
|
|
|
}
|
|
|
|
}
|
2016-09-06 19:24:31 +02:00
|
|
|
|
2017-01-12 10:17:05 +01:00
|
|
|
//
|
|
|
|
// User Interface setup
|
|
|
|
//
|
|
|
|
|
2017-01-21 19:06:50 +01:00
|
|
|
updateBadge()
|
2017-01-12 10:17:05 +01:00
|
|
|
controller.txManager.on('updateBadge', updateBadge)
|
2017-01-28 01:11:59 +01:00
|
|
|
controller.messageManager.on('updateBadge', updateBadge)
|
2017-01-12 10:17:05 +01:00
|
|
|
|
|
|
|
// plugin badge text
|
|
|
|
function updateBadge () {
|
|
|
|
var label = ''
|
|
|
|
var unapprovedTxCount = controller.txManager.unapprovedTxCount
|
2017-01-28 01:11:59 +01:00
|
|
|
var unapprovedMsgCount = controller.messageManager.unapprovedMsgCount
|
|
|
|
var count = unapprovedTxCount + unapprovedMsgCount
|
2017-01-12 10:17:05 +01:00
|
|
|
if (count) {
|
|
|
|
label = String(count)
|
|
|
|
}
|
|
|
|
extension.browserAction.setBadgeText({ text: label })
|
|
|
|
extension.browserAction.setBadgeBackgroundColor({ color: '#506F8B' })
|
|
|
|
}
|
2016-04-15 22:04:17 +02:00
|
|
|
|
2017-01-12 10:17:05 +01:00
|
|
|
return Promise.resolve()
|
2016-02-11 02:44:46 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2017-01-12 10:17:05 +01:00
|
|
|
// Etc...
|
2016-02-11 02:44:46 +01:00
|
|
|
//
|
|
|
|
|
2017-01-12 07:47:56 +01:00
|
|
|
// popup trigger
|
|
|
|
function triggerUi () {
|
|
|
|
if (!popupIsOpen) notification.show()
|
|
|
|
}
|
2015-12-19 07:05:16 +01:00
|
|
|
|
2017-01-12 07:47:56 +01: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'})
|
|
|
|
}
|
2017-01-28 01:11:59 +01:00
|
|
|
})
|