這個就是瀏覽器後臺所進行操做的地方了,它就是頁面也區塊鏈進行交互的中間部分。git
metamask-background描述了爲web擴展單例的文件app/scripts/background.js。該上下文實例化了
github一個
MetaMask控制器的實例,該實例表示用戶的賬戶、到區塊鏈的鏈接以及與新Dapps的交互。
Since background.js
is essentially the Extension setup file, we can see it doing all the things specific to the extension platform:web
由於background.js
本質上是擴展設置文件,咱們能夠看到它作全部特定於擴展平臺的事情chrome
platform
object. This is becoming our catch-all adapter for platforms to define a few other platform-variant features we require, like opening a web link. (Soon we will be moving encryption out here too, since our browser-encryption isn't portable enough!)提供平臺對象。這將成爲平臺的通用適配器,用於定義咱們須要的其餘一些平臺變體特性,好比打開web連接。(不久咱們也將把加密技術移到這裏,由於咱們的瀏覽器加密還不夠便攜!)/** * @file The entry point for the web extension singleton process. */ const urlUtil = require('url') const endOfStream = require('end-of-stream') const pump = require('pump') const debounce = require('debounce-stream') const log = require('loglevel') const extension = require('extensionizer') const LocalStorageStore = require('obs-store/lib/localStorage') const LocalStore = require('./lib/local-store') const storeTransform = require('obs-store/lib/transform') const asStream = require('obs-store/lib/asStream') const ExtensionPlatform = require('./platforms/extension') const Migrator = require('./lib/migrator/') // const migrations = require('./migrations/') //Data (user data, config files etc.) is migrated from one version to another.從版本2一直到28,0爲初始版本 const PortStream = require('./lib/port-stream.js') const createStreamSink = require('./lib/createStreamSink') 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') const EdgeEncryptor = require('./edge-encryptor') const getFirstPreferredLangCode = require('./lib/get-first-preferred-lang-code') const getObjStructure = require('./lib/getObjStructure') const ipfsContent = require('./lib/ipfsContent.js') const { ENVIRONMENT_TYPE_POPUP, ENVIRONMENT_TYPE_NOTIFICATION, ENVIRONMENT_TYPE_FULLSCREEN, } = require('./lib/enums') const STORAGE_KEY = 'metamask-config' const METAMASK_DEBUG = process.env.METAMASK_DEBUG log.setDefaultLevel(process.env.METAMASK_DEBUG ? 'debug' : 'warn') const platform = new ExtensionPlatform() const notificationManager = new NotificationManager() global.METAMASK_NOTIFIER = notificationManager // setup sentry error reporting const release = platform.getVersion() const raven = setupRaven({ release }) // 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,即How to detect Safari, Chrome, IE, Firefox and Opera browser? const isIE = !!document.documentMode //查看所使用的瀏覽器類型 // Edge 20+ const isEdge = !isIE && !!window.StyleMedia let ipfsHandle let popupIsOpen = false //彈出窗口是否打開 let notificationIsOpen = false //通知是否打開 const openMetamaskTabsIDs = {} // state persistence const diskStore = new LocalStorageStore({ storageKey: STORAGE_KEY }) //硬盤的存儲 const localStore = new LocalStore() //本地的存儲 let versionedData // initialization flow initialize().catch(log.error) // setup metamask mesh testing container setupMetamaskMeshMetrics() /** * An object representing a transaction, in whatever state it is in. * @typedef TransactionMeta 交易中信息的意義 * * @property {number} id - An internally unique tx identifier. * @property {number} time - Time the tx was first suggested, in unix epoch time (ms). * @property {string} status - The current transaction status (unapproved, signed, submitted, dropped, failed, rejected), as defined in `tx-state-manager.js`. * @property {string} metamaskNetworkId - The transaction's network ID, used for EIP-155 compliance. * @property {boolean} loadingDefaults - TODO: Document * @property {Object} txParams - The tx params as passed to the network provider. * @property {Object[]} history - A history of mutations to this TransactionMeta object. * @property {boolean} gasPriceSpecified - True if the suggesting dapp specified a gas price, prevents auto-estimation. * @property {boolean} gasLimitSpecified - True if the suggesting dapp specified a gas limit, prevents auto-estimation. * @property {string} estimatedGas - A hex string represented the estimated gas limit required to complete the transaction. * @property {string} origin - A string representing the interface that suggested the transaction. * @property {Object} nonceDetails - A metadata object containing information used to derive the suggested nonce, useful for debugging nonce issues. * @property {string} rawTx - A hex string of the final signed transaction, ready to submit to the network. * @property {string} hash - A hex string of the transaction hash, used to identify the transaction on the network. * @property {number} submittedTime - The time the transaction was submitted to the network, in Unix epoch time (ms). */ /** * The data emitted from the MetaMaskController.store EventEmitter, also used to initialize the MetaMaskController. Available in UI on React state as state.metamask. * @typedef MetaMaskState 存儲信息 * @property {boolean} isInitialized - Whether the first vault has been created. metamask是否初始化 * @property {boolean} isUnlocked - Whether the vault is currently decrypted and accounts are available for selection. metamask是否沒上鎖 * @property {boolean} isAccountMenuOpen - Represents whether the main account selection UI is currently displayed. * @property {boolean} isMascara - True if the current context is the extensionless MetaMascara project. * @property {boolean} isPopup - Returns true if the current view is an externally-triggered notification. * @property {string} rpcTarget - DEPRECATED - The URL of the current RPC provider. * @property {Object} identities - An object matching lower-case hex addresses to Identity objects with "address" and "name" (nickname) keys. * @property {Object} unapprovedTxs - An object mapping transaction hashes to unapproved transactions. * @property {boolean} noActiveNotices - False if there are notices the user should confirm before using the application. * @property {Array} frequentRpcList - A list of frequently used RPCs, including custom user-provided ones. * @property {Array} addressBook - A list of previously sent to addresses. * @property {address} selectedTokenAddress - Used to indicate if a token is globally selected. Should be deprecated in favor of UI-centric token selection. * @property {Object} tokenExchangeRates - Info about current token prices. * @property {Array} tokens - Tokens held by the current user, including their balances. * @property {Object} send - TODO: Document * @property {Object} coinOptions - TODO: Document * @property {boolean} useBlockie - Indicates preferred user identicon format. True for blockie, false for Jazzicon. * @property {Object} featureFlags - An object for optional feature flags. * @property {string} networkEndpointType - TODO: Document * @property {boolean} isRevealingSeedWords - True if seed words are currently being recovered, and should be shown to user. * @property {boolean} welcomeScreen - True if welcome screen should be shown. * @property {string} currentLocale - A locale string matching the user's preferred display language.這個語言的選擇 * @property {Object} provider - The current selected network provider. * @property {string} provider.rpcTarget - The address for the RPC API, if using an RPC API. * @property {string} provider.type - An identifier for the type of network selected, allows MetaMask to use custom provider strategies for known networks. * @property {string} network - A stringified number of the current network ID. * @property {Object} accounts - An object mapping lower-case hex addresses to objects with "balance" and "address" keys, both storing hex string values. * @property {hex} currentBlockGasLimit - The most recently seen block gas limit, in a lower case hex prefixed string. * @property {TransactionMeta[]} selectedAddressTxList - An array of transactions associated with the currently selected account. * @property {Object} unapprovedMsgs - An object of messages associated with the currently selected account, mapping a unique ID to the options. * @property {number} unapprovedMsgCount - The number of messages in unapprovedMsgs. * @property {Object} unapprovedPersonalMsgs - An object of messages associated with the currently selected account, mapping a unique ID to the options. * @property {number} unapprovedPersonalMsgCount - The number of messages in unapprovedPersonalMsgs. * @property {Object} unapprovedTypedMsgs - An object of messages associated with the currently selected account, mapping a unique ID to the options. * @property {number} unapprovedTypedMsgCount - The number of messages in unapprovedTypedMsgs. * @property {string[]} keyringTypes - An array of unique keyring identifying strings, representing available strategies for creating accounts. * @property {Keyring[]} keyrings - An array of keyring descriptions, summarizing the accounts that are available for use, and what keyrings they belong to. * @property {Object} computedBalances - Maps accounts to their balances, accounting for balance changes from pending transactions. * @property {string} currentAccountTab - A view identifying string for displaying the current displayed view, allows user to have a preferred tab in the old UI (between tokens and history). * @property {string} selectedAddress - A lower case hex string of the currently selected address. * @property {string} currentCurrency - A string identifying the user's preferred display currency, for use in showing conversion rates. * @property {number} conversionRate - A number representing the current exchange rate from the user's preferred currency to Ether. * @property {number} conversionDate - A unix epoch date (ms) for the time the current conversion rate was last retrieved. * @property {Object} infuraNetworkStatus - An object of infura network status checks. * @property {Block[]} recentBlocks - An array of recent blocks, used to calculate an effective but cheap gas price. * @property {Array} shapeShiftTxList - An array of objects describing shapeshift exchange attempts. * @property {Array} lostAccounts - TODO: Remove this feature. A leftover from the version-3 migration where our seed-phrase library changed to fix a bug where some accounts were mis-generated, but we recovered the old accounts as "lost" instead of losing them. * @property {boolean} forgottenPassword - Returns true if the user has initiated the password recovery screen, is recovering from seed phrase. */ /** * @typedef VersionedData * @property {MetaMaskState} data - The data emitted from MetaMask controller, or used to initialize it. * @property {Number} version - The latest migration version that has been run. */ /** * Initializes the MetaMask controller, and sets up all platform configuration. * @returns {Promise} Setup complete. */ async function initialize () { const initState = await loadStateFromPersistence() //獲得state信息 const initLangCode = await getFirstPreferredLangCode() //設置使用的語言 await setupController(initState, initLangCode)//metamask控制器的建立 log.debug('MetaMask initialization complete.') ipfsHandle = ipfsContent(initState.NetworkController.provider) } // // State and Persistence // /** * Loads any stored data, prioritizing the latest storage strategy.加載全部存儲數據,優先考慮最新的存儲策略 * Migrates that data schema in case it was last loaded on an older version.遷移該數據模式,以防最後一次加載到舊版本 * @returns {Promise<MetaMaskState>} Last data emitted from previous instance of MetaMask.返回上次MetaMask實例發出的數據 */ async function loadStateFromPersistence () { // migrations const migrator = new Migrator({ migrations }) // read from disk // first from preferred, async API: 先從本地讀取,沒有則從硬盤讀取,最後則是初始化生成 versionedData = (await localStore.get()) || diskStore.getState() || migrator.generateInitialState(firstTimeState) // check if somehow state is empty 就是若是不知道爲什麼state爲空 // this should never happen but new error reporting suggests that it has // for a small number of users // https://github.com/metamask/metamask-extension/issues/3919 if (versionedData && !versionedData.data) { // try to recover from diskStore incase only localStore is bad const diskStoreState = diskStore.getState() //首先是試着從硬盤中的數據進行恢復,以避免只是本地數據出現了問題 if (diskStoreState && diskStoreState.data) { // we were able to recover (though it might be old) versionedData = diskStoreState const vaultStructure = getObjStructure(versionedData) raven.captureMessage('MetaMask - Empty vault found - recovered from diskStore', { // "extra" key is required by Sentry extra: { vaultStructure }, }) } else {//發現連硬盤中的數據也損壞了,那就沒有辦法恢復了 // unable to recover, clear state versionedData = migrator.generateInitialState(firstTimeState) raven.captureMessage('MetaMask - Empty vault found - unable to recover') } } // report migration errors to sentry migrator.on('error', (err) => { // get vault structure without secrets const vaultStructure = getObjStructure(versionedData) raven.captureException(err, { // "extra" key is required by Sentry extra: { vaultStructure }, }) }) // migrate data versionedData = await migrator.migrateData(versionedData) if (!versionedData) { throw new Error('MetaMask - migrator returned undefined') } // write to disk if (localStore.isSupported) { localStore.set(versionedData) } else { // throw in setTimeout so as to not block boot setTimeout(() => { throw new Error('MetaMask - Localstore not supported') }) } // return just the data return versionedData.data } /** * Initializes the MetaMask Controller with any initial state and default language. 使用初始狀態和默認語言來初始化metamask控制器 * Configures platform-specific error reporting strategy. 配置特定於平臺的錯誤報告策略 * Streams emitted state updates to platform-specific storage strategy.流 向 特定於平臺的存儲策略發出狀態更新 * Creates platform listeners for new Dapps/Contexts, and sets up their data connections to the controller.爲新的Dapps/上下文建立平臺偵聽器,並設置它們與控制器的數據鏈接 * * @param {Object} initState - The initial state to start the controller with, matches the state that is emitted from the controller. * @param {String} initLangCode - The region code for the language preferred by the current user. * @returns {Promise} After setup is complete. 當設置完成後返回 */ function setupController (initState, initLangCode) { // // MetaMask Controller // const controller = new MetamaskController({//metamask控制器的建立 // User confirmation callbacks: showUnconfirmedMessage: triggerUi, unlockAccountMessage: triggerUi, showUnapprovedTx: triggerUi, // initial state initState, // initial locale code initLangCode, // platform specific api platform, encryptor: isEdge ? new EdgeEncryptor() : undefined,//EdgeEncryptor是一個特定於邊緣的Microsoft加密類,它公開了eth-keykeyring-controller所指望的接口 }) global.metamaskController = controller controller.networkController.on('networkDidChange', () => { //若是網絡變化則跟着變化 ipfsHandle && ipfsHandle.remove() ipfsHandle = ipfsContent(controller.networkController.providerStore.getState()) }) // report failed transactions to Sentry 報告錯誤的交易 controller.txController.on(`tx:status-update`, (txId, status) => { if (status !== 'failed') return const txMeta = controller.txController.txStateManager.getTx(txId) try { reportFailedTxToSentry({ raven, txMeta }) } catch (e) { console.error(e) } }) // setup state persistence pump( asStream(controller.store), debounce(1000), storeTransform(versionifyData), createStreamSink(persistData), (error) => { log.error('MetaMask - Persistence pipeline failed', error) } ) /** * Assigns the given state to the versioned object (with metadata), and returns that.將給定狀態分配給版本對象 * @param {Object} state - The state object as emitted by the MetaMaskController. * @returns {VersionedData} The state object wrapped in an object that includes a metadata key. */ function versionifyData (state) { versionedData.data = state return versionedData } async function persistData (state) { if (!state) { throw new Error('MetaMask - updated state is missing', state) } if (!state.data) { throw new Error('MetaMask - updated state does not have data', state) } if (localStore.isSupported) { try { await localStore.set(state) } catch (err) { // log error so we dont break the pipeline log.error('error setting state in local store:', err) } } } // // connect to other contexts // extension.runtime.onConnect.addListener(connectRemote) extension.runtime.onConnectExternal.addListener(connectExternal) const metamaskInternalProcessHash = { [ENVIRONMENT_TYPE_POPUP]: true, [ENVIRONMENT_TYPE_NOTIFICATION]: true, [ENVIRONMENT_TYPE_FULLSCREEN]: true, } const isClientOpenStatus = () => { return popupIsOpen || Boolean(Object.keys(openMetamaskTabsIDs).length) || notificationIsOpen } /** * A runtime.Port object, as provided by the browser: * @see https://developer.mozilla.org/en-US/Add-ons/WebExtensions/API/runtime/Port * @typedef Port * @type Object */ /** * Connects a Port to the MetaMask controller via a multiplexed duplex stream.經過多路複用雙流將端口鏈接到MetaMask控制器 * This method identifies trusted (MetaMask) interfaces, and connects them differently from untrusted (web pages).此方法識別受信任(MetaMask)接口,並以不一樣於不受信任(web頁面)的方式鏈接它們 * @param {Port} remotePort - The port provided by a new context. */ function connectRemote (remotePort) { const processName = remotePort.name const isMetaMaskInternalProcess = metamaskInternalProcessHash[processName] if (isMetaMaskInternalProcess) {//若是是內部進程,受信賴的,就至關於本地的瀏覽器跟metamask鏈接了,而後這時候瀏覽器的頁面與metamask進行交互了 const portStream = new PortStream(remotePort) // communication with popup controller.isClientOpen = true controller.setupTrustedCommunication(portStream, 'MetaMask')//用於經過遠程端口鏈接用戶界面 if (processName === ENVIRONMENT_TYPE_POPUP) {//若是鏈接用戶界面是一個彈出窗口,後面查查看這些常量是什麼意思????? popupIsOpen = true endOfStream(portStream, () => { popupIsOpen = false controller.isClientOpen = isClientOpenStatus() }) } if (processName === ENVIRONMENT_TYPE_NOTIFICATION) { //若是是一個通知窗口 notificationIsOpen = true endOfStream(portStream, () => { notificationIsOpen = false controller.isClientOpen = isClientOpenStatus() }) } if (processName === ENVIRONMENT_TYPE_FULLSCREEN) {//若是是一個全屏 const tabId = remotePort.sender.tab.id openMetamaskTabsIDs[tabId] = true endOfStream(portStream, () => { delete openMetamaskTabsIDs[tabId] controller.isClientOpen = isClientOpenStatus() }) } } else { connectExternal(remotePort)//不然就使用不受信賴的聯繫方式 } } // communication with page or other extension function connectExternal (remotePort) { const originDomain = urlUtil.parse(remotePort.sender.url).hostname const portStream = new PortStream(remotePort) controller.setupUntrustedCommunication(portStream, originDomain)//此方法用於將新web站點的web3 API鏈接到MetaMask的區塊鏈鏈接。另外,originDomain能夠用來阻止檢測到的釣魚網站 } // // User Interface setup // updateBadge() controller.txController.on('update:badge', updateBadge) controller.messageManager.on('updateBadge', updateBadge) controller.personalMessageManager.on('updateBadge', updateBadge) /** * Updates the Web Extension's "badge" number, on the little fox in the toolbar. * The number reflects the current number of pending transactions or message signatures needing user approval. */ function updateBadge () { var label = '' var unapprovedTxCount = controller.txController.getUnapprovedTxCount() var unapprovedMsgCount = controller.messageManager.unapprovedMsgCount var unapprovedPersonalMsgs = controller.personalMessageManager.unapprovedPersonalMsgCount 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() } // // Etc... // /** * Opens the browser popup for user confirmation 就是打開瀏覽器的一個彈出窗口來用於metamask上進行的操做的確認 */ function triggerUi () { extension.tabs.query({ active: true }, tabs => { const currentlyActiveMetamaskTab = Boolean(tabs.find(tab => openMetamaskTabsIDs[tab.id])) if (!popupIsOpen && !currentlyActiveMetamaskTab && !notificationIsOpen) { notificationManager.showPopup() } }) } // 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'}) } })
⚠️這上面的不少詳細信息要結合metamask-controller.js一塊兒理解才行api
MetaMask has two kinds of duplex stream APIs that it exposes: MetaMask有兩種公開的雙向流api瀏覽器
都在metamask-extension/app/scripts/metamask-controller.js中網絡
/** * Used to create a multiplexed stream for connecting to a trusted context, * like our own user interfaces, which have the provider APIs, but also * receive the exported API from this controller, which includes trusted * functions, like the ability to approve transactions or sign messages. * * @param {*} connectionStream - The duplex stream to connect to. * @param {string} originDomain - The domain requesting the connection, * used in logging and error reporting. */ setupTrustedCommunication (connectionStream, originDomain) { // setup multiplexing const mux = setupMultiplex(connectionStream) // connect features this.setupControllerConnection(mux.createStream('controller')) this.setupProviderConnection(mux.createStream('provider'), originDomain) }
originDomain
is used to block detected phishing sites.此方法用於將新web站點的web3 API鏈接到MetaMask的區塊鏈鏈接。另外,originDomain能夠用來阻止檢測到的釣魚網站//============================================================================= // SETUP //============================================================================= /** * Used to create a multiplexed stream for connecting to an untrusted context * like a Dapp or other extension. * @param {*} connectionStream - The Duplex stream to connect to. * @param {string} originDomain - The domain requesting the stream, which * may trigger a blacklist reload. */ setupUntrustedCommunication (connectionStream, originDomain) { // Check if new connection is blacklisted查黑名單看其是否爲釣魚網站,不是才鏈接 if (this.blacklistController.checkForPhishing(originDomain)) { log.debug('MetaMask - sending phishing warning for', originDomain) this.sendPhishingWarning(connectionStream, originDomain) return } // setup multiplexing const mux = setupMultiplex(connectionStream) // connect features this.setupProviderConnection(mux.createStream('provider'), originDomain) this.setupPublicConfig(mux.createStream('publicConfig')) }