1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/app/scripts/background.js

337 lines
9.4 KiB
JavaScript
Raw Normal View History

const urlUtil = require('url')
2016-01-15 11:03:42 +01:00
const Dnode = require('dnode')
2016-02-11 02:44:46 +01:00
const eos = require('end-of-stream')
const extend = require('xtend')
const EthStore = require('eth-store')
2016-04-26 20:36:05 +02:00
const MetaMaskProvider = require('web3-provider-engine/zero.js')
2016-05-23 03:02:27 +02:00
const PortStream = require('./lib/port-stream.js')
2016-02-11 02:44:46 +01:00
const IdentityStore = require('./lib/idStore')
const createUnlockRequestNotification = require('./lib/notifications.js').createUnlockRequestNotification
const createTxNotification = require('./lib/notifications.js').createTxNotification
const createMsgNotification = require('./lib/notifications.js').createMsgNotification
const configManager = require('./lib/config-manager-singleton')
const messageManager = require('./lib/message-manager')
const setupMultiplex = require('./lib/stream-utils.js').setupMultiplex
const HostStore = require('./lib/remote-store.js').HostStore
const Web3 = require('web3')
2015-12-19 07:05:16 +01:00
2016-02-11 02:44:46 +01:00
//
// connect to other contexts
//
2016-01-17 01:22:54 +01:00
chrome.runtime.onConnect.addListener(connectRemote)
2016-06-21 22:18:32 +02:00
function connectRemote (remotePort) {
2016-01-15 11:03:42 +01:00
var isMetaMaskInternalProcess = (remotePort.name === 'popup')
2016-03-10 03:33:30 +01:00
var portStream = new PortStream(remotePort)
2016-01-15 11:03:42 +01:00
if (isMetaMaskInternalProcess) {
// communication with popup
setupTrustedCommunication(portStream, 'MetaMask')
2016-01-15 11:03:42 +01:00
} else {
// communication with page
var originDomain = urlUtil.parse(remotePort.sender.url).hostname
setupUntrustedCommunication(portStream, originDomain)
2016-01-15 11:03:42 +01:00
}
}
2016-06-21 22:18:32 +02:00
function setupUntrustedCommunication (connectionStream, originDomain) {
// setup multiplexing
var mx = setupMultiplex(connectionStream)
// connect features
setupProviderConnection(mx.createStream('provider'), originDomain)
setupPublicConfig(mx.createStream('publicConfig'))
}
2016-06-21 22:18:32 +02:00
function setupTrustedCommunication (connectionStream, originDomain) {
// setup multiplexing
var mx = setupMultiplex(connectionStream)
// connect features
setupControllerConnection(mx.createStream('controller'))
setupProviderConnection(mx.createStream('provider'), originDomain)
2016-02-11 02:44:46 +01:00
}
2016-01-17 10:27:25 +01:00
2016-02-11 02:44:46 +01:00
//
// state and network
//
2016-01-17 10:27:25 +01:00
2016-02-11 02:44:46 +01:00
var idStore = new IdentityStore()
2016-04-01 01:32:35 +02:00
var providerOpts = {
rpcUrl: configManager.getCurrentRpcAddress(),
// account mgmt
2016-06-21 22:18:32 +02:00
getAccounts: function (cb) {
2016-02-11 02:44:46 +01:00
var selectedAddress = idStore.getSelectedAddress()
var result = selectedAddress ? [selectedAddress] : []
cb(null, result)
},
// tx signing
approveTransaction: newUnsignedTransaction,
2016-02-20 21:13:18 +01:00
signTransaction: idStore.signTransaction.bind(idStore),
// msg signing
approveMessage: newUnsignedMessage,
signMessage: idStore.signMessage.bind(idStore),
2016-04-01 01:32:35 +02:00
}
var provider = MetaMaskProvider(providerOpts)
var web3 = new Web3(provider)
idStore.web3 = web3
idStore.getNetwork()
// log new blocks
2016-06-21 22:18:32 +02:00
provider.on('block', function (block) {
console.log('BLOCK CHANGED:', '#' + block.number.toString('hex'), '0x' + block.hash.toString('hex'))
// Check network when restoring connectivity:
if (idStore._currentState.network === 'loading') {
idStore.getNetwork()
}
})
provider.on('error', idStore.getNetwork.bind(idStore))
2016-04-01 01:32:35 +02:00
var ethStore = new EthStore(provider)
2016-02-11 02:44:46 +01:00
idStore.setStore(ethStore)
2016-01-15 11:03:42 +01:00
2016-06-21 22:18:32 +02:00
function getState () {
var state = extend(
ethStore.getState(),
idStore.getState(),
configManager.getConfig()
)
2016-02-11 02:44:46 +01:00
return state
}
//
// public store
//
// get init state
var initPublicState = extend(
idStoreToPublic(idStore.getState()),
configToPublic(configManager.getConfig())
)
var publicConfigStore = new HostStore(initPublicState)
// subscribe to changes
2016-06-21 22:18:32 +02:00
configManager.subscribe(function (state) {
storeSetFromObj(publicConfigStore, configToPublic(state))
})
2016-06-21 22:18:32 +02:00
idStore.on('update', function (state) {
storeSetFromObj(publicConfigStore, idStoreToPublic(state))
})
// idStore substate
2016-06-21 22:18:32 +02:00
function idStoreToPublic (state) {
return {
selectedAddress: state.selectedAddress,
}
}
// config substate
2016-06-21 22:18:32 +02:00
function configToPublic (state) {
return {
provider: state.provider,
}
}
// dump obj into store
2016-06-21 22:18:32 +02:00
function storeSetFromObj (store, obj) {
Object.keys(obj).forEach(function (key) {
store.set(key, obj[key])
})
}
2016-02-11 02:44:46 +01:00
//
// remote features
2016-02-11 02:44:46 +01:00
//
2016-06-21 22:18:32 +02:00
function setupPublicConfig (stream) {
var storeStream = publicConfigStore.createStream()
stream.pipe(storeStream).pipe(stream)
}
2016-06-21 22:18:32 +02:00
function setupProviderConnection (stream, originDomain) {
// decorate all payloads with origin domain
stream.on('data', function onRpcRequest (request) {
var payloads = Array.isArray(request) ? request : [request]
payloads.forEach(function (payload) {
// Append origin to rpc payload
payload.origin = originDomain
// Append origin to signature request
if (payload.method === 'eth_sendTransaction') {
payload.params[0].origin = originDomain
} else if (payload.method === 'eth_sign') {
payload.params.push({ origin: originDomain })
}
})
// handle rpc request
provider.sendAsync(request, function onPayloadHandled (err, response) {
2016-06-21 22:18:32 +02:00
if (err) {
return logger(err)
}
logger(null, request, response)
try {
stream.write(response)
} catch (err) {
logger(err)
}
})
})
2016-05-23 03:02:27 +02:00
2016-06-21 22:18:32 +02:00
function logger (err, request, response) {
2016-05-23 03:02:27 +02:00
if (err) return console.error(err.stack)
if (!request.isMetamaskInternal) {
console.log(`RPC (${originDomain}):`, request, '->', response)
2016-06-21 22:18:32 +02:00
if (response.error) console.error('Error in RPC response:\n' + response.error.message)
2016-05-23 03:02:27 +02:00
}
}
2016-03-10 03:33:30 +01:00
}
2016-06-21 22:18:32 +02:00
function setupControllerConnection (stream) {
var dnode = Dnode({
2016-06-21 22:18:32 +02:00
getState: function (cb) { cb(null, getState()) },
setRpcTarget: setRpcTarget,
setProviderType: setProviderType,
2016-04-01 01:32:35 +02:00
useEtherscanProvider: useEtherscanProvider,
2016-06-21 22:18:32 +02:00
agreeToDisclaimer: agreeToDisclaimer,
2016-02-11 02:44:46 +01:00
// forward directly to idStore
2016-06-21 22:18:32 +02:00
createNewVault: idStore.createNewVault.bind(idStore),
recoverFromSeed: idStore.recoverFromSeed.bind(idStore),
submitPassword: idStore.submitPassword.bind(idStore),
2016-02-11 02:44:46 +01:00
setSelectedAddress: idStore.setSelectedAddress.bind(idStore),
2016-03-03 07:58:23 +01:00
approveTransaction: idStore.approveTransaction.bind(idStore),
2016-06-21 22:18:32 +02:00
cancelTransaction: idStore.cancelTransaction.bind(idStore),
signMessage: idStore.signMessage.bind(idStore),
cancelMessage: idStore.cancelMessage.bind(idStore),
setLocked: idStore.setLocked.bind(idStore),
clearSeedWordCache: idStore.clearSeedWordCache.bind(idStore),
2016-06-21 22:18:32 +02:00
exportAccount: idStore.exportAccount.bind(idStore),
revealAccount: idStore.revealAccount.bind(idStore),
saveAccountLabel: idStore.saveAccountLabel.bind(idStore),
tryPassword: idStore.tryPassword.bind(idStore),
recoverSeed: idStore.recoverSeed.bind(idStore),
2016-02-11 02:44:46 +01:00
})
stream.pipe(dnode).pipe(stream)
2016-06-21 22:18:32 +02:00
dnode.on('remote', function (remote) {
2016-02-11 02:44:46 +01:00
// push updates to popup
ethStore.on('update', sendUpdate)
idStore.on('update', sendUpdate)
// teardown on disconnect
2016-06-21 22:18:32 +02:00
eos(stream, function unsubscribe () {
2016-02-11 02:44:46 +01:00
ethStore.removeListener('update', sendUpdate)
})
2016-06-21 22:18:32 +02:00
function sendUpdate () {
2016-02-11 02:44:46 +01:00
var state = getState()
remote.sendUpdate(state)
}
})
}
//
// plugin badge text
//
idStore.on('update', updateBadge)
2015-12-19 07:05:16 +01:00
2016-06-21 22:18:32 +02:00
function updateBadge (state) {
2016-01-19 02:05:46 +01:00
var label = ''
var unconfTxs = configManager.unconfirmedTxs()
var unconfTxLen = Object.keys(unconfTxs).length
var unconfMsgs = messageManager.unconfirmedMsgs()
var unconfMsgLen = Object.keys(unconfMsgs).length
var count = unconfTxLen + unconfMsgLen
2016-01-19 02:05:46 +01:00
if (count) {
label = String(count)
}
chrome.browserAction.setBadgeText({ text: label })
chrome.browserAction.setBadgeBackgroundColor({ color: '#506F8B' })
2016-01-19 02:05:46 +01:00
}
2015-12-19 07:05:16 +01:00
2016-03-11 00:39:31 +01:00
//
// Add unconfirmed Tx + Msg
2016-03-11 00:39:31 +01:00
//
2016-06-21 22:18:32 +02:00
function newUnsignedTransaction (txParams, onTxDoneCb) {
var state = idStore.getState()
if (!state.isUnlocked) {
createUnlockRequestNotification({
title: 'Account Unlock Request',
})
2016-06-17 04:51:34 +02:00
idStore.addUnconfirmedTransaction(txParams, onTxDoneCb, noop)
} else {
2016-06-17 04:51:34 +02:00
addUnconfirmedTx(txParams, onTxDoneCb)
}
}
2016-06-21 22:18:32 +02:00
function newUnsignedMessage (msgParams, cb) {
var state = idStore.getState()
if (!state.isUnlocked) {
createUnlockRequestNotification({
title: 'Account Unlock Request',
})
} else {
addUnconfirmedMsg(msgParams, cb)
}
}
2016-06-23 04:28:11 +02:00
createTxNotification({
title: 'New Unsigned Transaction',
txParams: {to: '0xabc', from: '0xdef'},
// confirm: idStore.approveTransaction.bind(idStore, txData.id, noop),
// cancel: idStore.cancelTransaction.bind(idStore, txData.id),
})
2016-06-21 22:18:32 +02:00
function addUnconfirmedTx (txParams, onTxDoneCb) {
idStore.addUnconfirmedTransaction(txParams, onTxDoneCb, function (err, txData) {
2016-06-17 04:51:34 +02:00
if (err) return onTxDoneCb(err)
createTxNotification({
title: 'New Unsigned Transaction',
txParams: txParams,
confirm: idStore.approveTransaction.bind(idStore, txData.id, noop),
cancel: idStore.cancelTransaction.bind(idStore, txData.id),
})
2016-03-11 00:39:31 +01:00
})
}
2016-06-21 22:18:32 +02:00
function addUnconfirmedMsg (msgParams, cb) {
var msgId = idStore.addUnconfirmedMessage(msgParams, cb)
createMsgNotification({
title: 'New Unsigned Message',
msgParams: msgParams,
confirm: idStore.approveMessage.bind(idStore, msgId, noop),
cancel: idStore.cancelMessage.bind(idStore, msgId),
})
}
//
// config
//
2016-06-21 22:18:32 +02:00
function agreeToDisclaimer (cb) {
2016-06-17 00:58:11 +02:00
try {
configManager.setConfirmed(true)
cb()
} catch (e) {
cb(e)
}
}
// called from popup
2016-06-21 22:18:32 +02:00
function setRpcTarget (rpcTarget) {
configManager.setRpcTarget(rpcTarget)
chrome.runtime.reload()
idStore.getNetwork()
}
2016-06-21 22:18:32 +02:00
function setProviderType (type) {
configManager.setProviderType(type)
chrome.runtime.reload()
idStore.getNetwork()
}
2016-06-21 22:18:32 +02:00
function useEtherscanProvider () {
2016-04-01 01:32:35 +02:00
configManager.useEtherscanProvider()
chrome.runtime.reload()
}
2016-03-10 03:33:30 +01:00
// util
2016-06-21 22:18:32 +02:00
function noop () {}