nifty-wallet/ui/app/actions.js

990 lines
25 KiB
JavaScript
Raw Normal View History

const getBuyEthUrl = require('../../app/scripts/lib/buy-eth-url')
var actions = {
2016-10-20 12:07:53 -07:00
_setBackgroundConnection: _setBackgroundConnection,
GO_HOME: 'GO_HOME',
goHome: goHome,
2016-05-18 12:30:03 -07:00
// menu state
getNetworkStatus: 'getNetworkStatus',
// transition state
TRANSITION_FORWARD: 'TRANSITION_FORWARD',
TRANSITION_BACKWARD: 'TRANSITION_BACKWARD',
transitionForward,
transitionBackward,
// remote state
UPDATE_METAMASK_STATE: 'UPDATE_METAMASK_STATE',
updateMetamaskState: updateMetamaskState,
// notices
MARK_NOTICE_READ: 'MARK_NOTICE_READ',
markNoticeRead: markNoticeRead,
SHOW_NOTICE: 'SHOW_NOTICE',
showNotice: showNotice,
CLEAR_NOTICES: 'CLEAR_NOTICES',
clearNotices: clearNotices,
markAccountsFound,
// intialize screen
CREATE_NEW_VAULT_IN_PROGRESS: 'CREATE_NEW_VAULT_IN_PROGRESS',
SHOW_CREATE_VAULT: 'SHOW_CREATE_VAULT',
SHOW_RESTORE_VAULT: 'SHOW_RESTORE_VAULT',
FORGOT_PASSWORD: 'FORGOT_PASSWORD',
forgotPassword: forgotPassword,
SHOW_INIT_MENU: 'SHOW_INIT_MENU',
SHOW_NEW_VAULT_SEED: 'SHOW_NEW_VAULT_SEED',
SHOW_INFO_PAGE: 'SHOW_INFO_PAGE',
SHOW_IMPORT_PAGE: 'SHOW_IMPORT_PAGE',
unlockMetamask: unlockMetamask,
unlockFailed: unlockFailed,
showCreateVault: showCreateVault,
showRestoreVault: showRestoreVault,
showInitializeMenu: showInitializeMenu,
showImportPage,
createNewVaultAndKeychain: createNewVaultAndKeychain,
createNewVaultAndRestore: createNewVaultAndRestore,
createNewVaultInProgress: createNewVaultInProgress,
addNewKeyring,
importNewAccount,
addNewAccount,
2016-11-04 12:00:56 -07:00
NEW_ACCOUNT_SCREEN: 'NEW_ACCOUNT_SCREEN',
navigateToNewAccountScreen,
showNewVaultSeed: showNewVaultSeed,
showInfoPage: showInfoPage,
2016-11-01 22:19:04 -07:00
// seed recovery actions
REVEAL_SEED_CONFIRMATION: 'REVEAL_SEED_CONFIRMATION',
revealSeedConfirmation: revealSeedConfirmation,
requestRevealSeed: requestRevealSeed,
// unlock screen
UNLOCK_IN_PROGRESS: 'UNLOCK_IN_PROGRESS',
UNLOCK_FAILED: 'UNLOCK_FAILED',
UNLOCK_METAMASK: 'UNLOCK_METAMASK',
LOCK_METAMASK: 'LOCK_METAMASK',
tryUnlockMetamask: tryUnlockMetamask,
lockMetamask: lockMetamask,
unlockInProgress: unlockInProgress,
// error handling
displayWarning: displayWarning,
DISPLAY_WARNING: 'DISPLAY_WARNING',
HIDE_WARNING: 'HIDE_WARNING',
hideWarning: hideWarning,
// accounts screen
SET_SELECTED_ACCOUNT: 'SET_SELECTED_ACCOUNT',
SHOW_ACCOUNT_DETAIL: 'SHOW_ACCOUNT_DETAIL',
SHOW_ACCOUNTS_PAGE: 'SHOW_ACCOUNTS_PAGE',
SHOW_CONF_TX_PAGE: 'SHOW_CONF_TX_PAGE',
SHOW_CONF_MSG_PAGE: 'SHOW_CONF_MSG_PAGE',
2016-07-22 10:15:39 -07:00
SET_CURRENT_FIAT: 'SET_CURRENT_FIAT',
setCurrentCurrency: setCurrentCurrency,
// account detail screen
SHOW_SEND_PAGE: 'SHOW_SEND_PAGE',
showSendPage: showSendPage,
ADD_TO_ADDRESS_BOOK: 'ADD_TO_ADDRESS_BOOK',
addToAddressBook: addToAddressBook,
REQUEST_ACCOUNT_EXPORT: 'REQUEST_ACCOUNT_EXPORT',
requestExportAccount: requestExportAccount,
EXPORT_ACCOUNT: 'EXPORT_ACCOUNT',
exportAccount: exportAccount,
SHOW_PRIVATE_KEY: 'SHOW_PRIVATE_KEY',
showPrivateKey: showPrivateKey,
SAVE_ACCOUNT_LABEL: 'SAVE_ACCOUNT_LABEL',
saveAccountLabel: saveAccountLabel,
// tx conf screen
COMPLETED_TX: 'COMPLETED_TX',
TRANSACTION_ERROR: 'TRANSACTION_ERROR',
NEXT_TX: 'NEXT_TX',
PREVIOUS_TX: 'PREV_TX',
signMsg: signMsg,
cancelMsg: cancelMsg,
2017-02-22 16:23:13 -08:00
signPersonalMsg,
cancelPersonalMsg,
sendTx: sendTx,
2016-05-06 14:46:04 -07:00
signTx: signTx,
updateAndApproveTx,
cancelTx: cancelTx,
completedTx: completedTx,
txError: txError,
nextTx: nextTx,
previousTx: previousTx,
viewPendingTx: viewPendingTx,
VIEW_PENDING_TX: 'VIEW_PENDING_TX',
// app messages
confirmSeedWords: confirmSeedWords,
showAccountDetail: showAccountDetail,
BACK_TO_ACCOUNT_DETAIL: 'BACK_TO_ACCOUNT_DETAIL',
backToAccountDetail: backToAccountDetail,
showAccountsPage: showAccountsPage,
showConfTxPage: showConfTxPage,
// config screen
SHOW_CONFIG_PAGE: 'SHOW_CONFIG_PAGE',
SET_RPC_TARGET: 'SET_RPC_TARGET',
SET_DEFAULT_RPC_TARGET: 'SET_DEFAULT_RPC_TARGET',
SET_PROVIDER_TYPE: 'SET_PROVIDER_TYPE',
USE_ETHERSCAN_PROVIDER: 'USE_ETHERSCAN_PROVIDER',
useEtherscanProvider: useEtherscanProvider,
showConfigPage: showConfigPage,
setRpcTarget: setRpcTarget,
setDefaultRpcTarget: setDefaultRpcTarget,
setProviderType: setProviderType,
// loading overlay
SHOW_LOADING: 'SHOW_LOADING_INDICATION',
HIDE_LOADING: 'HIDE_LOADING_INDICATION',
showLoadingIndication: showLoadingIndication,
hideLoadingIndication: hideLoadingIndication,
2016-08-10 13:43:01 -07:00
// buy Eth with coinbase
BUY_ETH: 'BUY_ETH',
buyEth: buyEth,
buyEthView: buyEthView,
BUY_ETH_VIEW: 'BUY_ETH_VIEW',
2016-08-10 13:43:01 -07:00
COINBASE_SUBVIEW: 'COINBASE_SUBVIEW',
coinBaseSubview: coinBaseSubview,
SHAPESHIFT_SUBVIEW: 'SHAPESHIFT_SUBVIEW',
shapeShiftSubview: shapeShiftSubview,
PAIR_UPDATE: 'PAIR_UPDATE',
pairUpdate: pairUpdate,
coinShiftRquest: coinShiftRquest,
SHOW_SUB_LOADING_INDICATION: 'SHOW_SUB_LOADING_INDICATION',
showSubLoadingIndication: showSubLoadingIndication,
HIDE_SUB_LOADING_INDICATION: 'HIDE_SUB_LOADING_INDICATION',
hideSubLoadingIndication: hideSubLoadingIndication,
// QR STUFF:
SHOW_QR: 'SHOW_QR',
showQrView: showQrView,
2016-08-18 10:40:35 -07:00
reshowQrCode: reshowQrCode,
SHOW_QR_VIEW: 'SHOW_QR_VIEW',
// FORGOT PASSWORD:
BACK_TO_INIT_MENU: 'BACK_TO_INIT_MENU',
goBackToInitView: goBackToInitView,
RECOVERY_IN_PROGRESS: 'RECOVERY_IN_PROGRESS',
BACK_TO_UNLOCK_VIEW: 'BACK_TO_UNLOCK_VIEW',
backToUnlockView: backToUnlockView,
2016-10-15 10:48:12 -07:00
// SHOWING KEYCHAIN
SHOW_NEW_KEYCHAIN: 'SHOW_NEW_KEYCHAIN',
showNewKeychain: showNewKeychain,
callBackgroundThenUpdate,
forceUpdateMetamaskState,
}
module.exports = actions
var background = null
2016-11-11 10:26:12 -08:00
function _setBackgroundConnection (backgroundConnection) {
background = backgroundConnection
}
2016-06-21 13:18:32 -07:00
function goHome () {
return {
2016-05-25 12:39:12 -07:00
type: actions.GO_HOME,
}
}
// async actions
2016-06-21 13:18:32 -07:00
function tryUnlockMetamask (password) {
return (dispatch) => {
dispatch(actions.showLoadingIndication())
2016-05-25 12:39:12 -07:00
dispatch(actions.unlockInProgress())
log.debug(`background.submitPassword`)
background.submitPassword(password, (err) => {
dispatch(actions.hideLoadingIndication())
if (err) {
dispatch(actions.unlockFailed(err.message))
} else {
dispatch(actions.transitionForward())
forceUpdateMetamaskState(dispatch)
}
})
}
}
2016-12-19 14:55:52 -08:00
function transitionForward () {
return {
type: this.TRANSITION_FORWARD,
}
}
2016-12-19 14:55:52 -08:00
function transitionBackward () {
return {
type: this.TRANSITION_BACKWARD,
}
}
function confirmSeedWords () {
return (dispatch) => {
dispatch(actions.showLoadingIndication())
log.debug(`background.clearSeedWordCache`)
background.clearSeedWordCache((err, account) => {
dispatch(actions.hideLoadingIndication())
if (err) {
2016-11-07 16:02:02 -08:00
return dispatch(actions.displayWarning(err.message))
}
console.log('Seed word cache cleared. ' + account)
dispatch(actions.showAccountDetail(account))
})
}
}
function createNewVaultAndRestore (password, seed) {
return (dispatch) => {
dispatch(actions.showLoadingIndication())
log.debug(`background.createNewVaultAndRestore`)
background.createNewVaultAndRestore(password, seed, (err) => {
dispatch(actions.hideLoadingIndication())
if (err) return dispatch(actions.displayWarning(err.message))
dispatch(actions.showAccountsPage())
})
}
}
function createNewVaultAndKeychain (password) {
return (dispatch) => {
dispatch(actions.showLoadingIndication())
log.debug(`background.createNewVaultAndKeychain`)
background.createNewVaultAndKeychain(password, (err) => {
if (err) {
return dispatch(actions.displayWarning(err.message))
}
log.debug(`background.placeSeedWords`)
background.placeSeedWords((err) => {
if (err) {
return dispatch(actions.displayWarning(err.message))
}
dispatch(actions.hideLoadingIndication())
forceUpdateMetamaskState(dispatch)
})
})
}
}
2016-11-01 22:19:04 -07:00
function revealSeedConfirmation () {
return {
type: this.REVEAL_SEED_CONFIRMATION,
}
}
function requestRevealSeed (password) {
return (dispatch) => {
dispatch(actions.showLoadingIndication())
log.debug(`background.submitPassword`)
background.submitPassword(password, (err) => {
if (err) {
return dispatch(actions.displayWarning(err.message))
}
log.debug(`background.placeSeedWords`)
background.placeSeedWords((err, result) => {
if (err) return dispatch(actions.displayWarning(err.message))
dispatch(actions.hideLoadingIndication())
dispatch(actions.showNewVaultSeed(result))
})
2016-11-01 22:19:04 -07:00
})
}
}
2016-10-20 16:44:31 -07:00
function addNewKeyring (type, opts) {
return (dispatch) => {
dispatch(actions.showLoadingIndication())
log.debug(`background.addNewKeyring`)
background.addNewKeyring(type, opts, (err) => {
dispatch(actions.hideLoadingIndication())
if (err) return dispatch(actions.displayWarning(err.message))
dispatch(actions.showAccountsPage())
})
}
2016-10-20 16:44:31 -07:00
}
function importNewAccount (strategy, args) {
return (dispatch) => {
dispatch(actions.showLoadingIndication('This may take a while, be patient.'))
log.debug(`background.importAccountWithStrategy`)
background.importAccountWithStrategy(strategy, args, (err) => {
if (err) return dispatch(actions.displayWarning(err.message))
log.debug(`background.getState`)
background.getState((err, newState) => {
2017-03-22 09:18:13 -07:00
dispatch(actions.hideLoadingIndication())
if (err) {
return dispatch(actions.displayWarning(err.message))
}
dispatch(actions.updateMetamaskState(newState))
dispatch({
type: actions.SHOW_ACCOUNT_DETAIL,
value: newState.selectedAddress,
})
})
})
}
}
2017-04-26 21:05:45 -07:00
function navigateToNewAccountScreen () {
2016-11-04 12:00:56 -07:00
return {
2016-11-04 12:31:03 -07:00
type: this.NEW_ACCOUNT_SCREEN,
2016-11-04 12:00:56 -07:00
}
}
function addNewAccount () {
log.debug(`background.addNewAccount`)
return callBackgroundThenUpdate(background.addNewAccount)
}
2016-06-21 13:18:32 -07:00
function showInfoPage () {
return {
2016-05-25 12:39:12 -07:00
type: actions.SHOW_INFO_PAGE,
}
}
function setCurrentCurrency (currencyCode) {
return (dispatch) => {
dispatch(this.showLoadingIndication())
log.debug(`background.setCurrentCurrency`)
background.setCurrentCurrency(currencyCode, (err, data) => {
dispatch(this.hideLoadingIndication())
if (err) {
console.error(err.stack)
return dispatch(actions.displayWarning(err.message))
}
dispatch({
type: this.SET_CURRENT_FIAT,
value: {
currentCurrency: data.currentCurrency,
conversionRate: data.conversionRate,
conversionDate: data.conversionDate,
2016-07-22 10:15:39 -07:00
},
})
})
}
}
2016-06-21 13:18:32 -07:00
function signMsg (msgData) {
log.debug('action - signMsg')
return (dispatch) => {
2016-05-25 12:39:12 -07:00
dispatch(actions.showLoadingIndication())
log.debug(`actions calling background.signMessage`)
background.signMessage(msgData, (err, newState) => {
log.debug('signMessage called back')
dispatch(actions.updateMetamaskState(newState))
2016-05-25 12:39:12 -07:00
dispatch(actions.hideLoadingIndication())
if (err) log.error(err)
2016-05-25 12:39:12 -07:00
if (err) return dispatch(actions.displayWarning(err.message))
2016-05-25 12:39:12 -07:00
dispatch(actions.completedTx(msgData.metamaskId))
})
}
}
2017-02-22 16:23:13 -08:00
function signPersonalMsg (msgData) {
log.debug('action - signPersonalMsg')
2017-02-22 16:23:13 -08:00
return (dispatch) => {
dispatch(actions.showLoadingIndication())
log.debug(`actions calling background.signPersonalMessage`)
background.signPersonalMessage(msgData, (err, newState) => {
log.debug('signPersonalMessage called back')
dispatch(actions.updateMetamaskState(newState))
2017-02-22 16:23:13 -08:00
dispatch(actions.hideLoadingIndication())
if (err) log.error(err)
2017-02-22 16:23:13 -08:00
if (err) return dispatch(actions.displayWarning(err.message))
2016-05-25 12:39:12 -07:00
dispatch(actions.completedTx(msgData.metamaskId))
})
}
}
2016-06-21 13:18:32 -07:00
function signTx (txData) {
2016-05-06 14:46:04 -07:00
return (dispatch) => {
web3.eth.sendTransaction(txData, (err, data) => {
dispatch(actions.hideLoadingIndication())
2016-05-25 12:39:12 -07:00
if (err) return dispatch(actions.displayWarning(err.message))
dispatch(actions.hideWarning())
2016-05-06 14:46:04 -07:00
})
dispatch(this.showConfTxPage())
2016-05-06 14:46:04 -07:00
}
}
2016-06-21 13:18:32 -07:00
function sendTx (txData) {
log.info(`actions - sendTx: ${JSON.stringify(txData.txParams)}`)
return (dispatch) => {
log.debug(`actions calling background.approveTransaction`)
background.approveTransaction(txData.id, (err) => {
if (err) {
2016-05-25 12:39:12 -07:00
dispatch(actions.txError(err))
return console.error(err.message)
}
2016-05-25 12:39:12 -07:00
dispatch(actions.completedTx(txData.id))
})
}
}
function updateAndApproveTx (txData) {
log.info('actions: updateAndApproveTx: ' + JSON.stringify(txData))
return (dispatch) => {
log.debug(`actions calling background.updateAndApproveTx`)
background.updateAndApproveTransaction(txData, (err) => {
dispatch(actions.hideLoadingIndication())
if (err) {
dispatch(actions.txError(err))
return console.error(err.message)
}
2016-05-25 12:39:12 -07:00
dispatch(actions.completedTx(txData.id))
})
}
}
2016-06-21 13:18:32 -07:00
function completedTx (id) {
return {
2016-05-25 12:39:12 -07:00
type: actions.COMPLETED_TX,
2017-02-23 16:00:43 -08:00
value: id,
}
}
2016-06-21 13:18:32 -07:00
function txError (err) {
return {
2016-05-25 12:39:12 -07:00
type: actions.TRANSACTION_ERROR,
message: err.message,
}
}
2016-06-21 13:18:32 -07:00
function cancelMsg (msgData) {
log.debug(`background.cancelMessage`)
background.cancelMessage(msgData.id)
2016-05-25 12:39:12 -07:00
return actions.completedTx(msgData.id)
}
2017-02-22 16:23:13 -08:00
function cancelPersonalMsg (msgData) {
2017-02-23 16:00:43 -08:00
const id = msgData.id
background.cancelPersonalMessage(id)
return actions.completedTx(id)
2017-02-22 16:23:13 -08:00
}
2016-06-21 13:18:32 -07:00
function cancelTx (txData) {
log.debug(`background.cancelTransaction`)
background.cancelTransaction(txData.id)
2016-05-25 12:39:12 -07:00
return actions.completedTx(txData.id)
}
//
// initialize screen
//
2016-06-21 13:18:32 -07:00
function showCreateVault () {
return {
2016-05-25 12:39:12 -07:00
type: actions.SHOW_CREATE_VAULT,
}
}
2016-06-21 13:18:32 -07:00
function showRestoreVault () {
return {
2016-05-25 12:39:12 -07:00
type: actions.SHOW_RESTORE_VAULT,
}
}
function forgotPassword () {
return {
type: actions.FORGOT_PASSWORD,
}
}
2016-06-21 13:18:32 -07:00
function showInitializeMenu () {
return {
2016-05-25 12:39:12 -07:00
type: actions.SHOW_INIT_MENU,
}
}
function showImportPage () {
return {
type: actions.SHOW_IMPORT_PAGE,
}
}
2016-06-21 13:18:32 -07:00
function createNewVaultInProgress () {
return {
2016-05-25 12:39:12 -07:00
type: actions.CREATE_NEW_VAULT_IN_PROGRESS,
}
}
2016-06-21 13:18:32 -07:00
function showNewVaultSeed (seed) {
return {
2016-05-25 12:39:12 -07:00
type: actions.SHOW_NEW_VAULT_SEED,
value: seed,
}
}
function backToUnlockView () {
return {
type: actions.BACK_TO_UNLOCK_VIEW,
}
}
2016-10-15 10:48:12 -07:00
function showNewKeychain () {
return {
2016-10-20 11:33:18 -07:00
type: actions.SHOW_NEW_KEYCHAIN,
2016-10-15 10:48:12 -07:00
}
}
//
// unlock screen
//
2016-06-21 13:18:32 -07:00
function unlockInProgress () {
return {
2016-05-25 12:39:12 -07:00
type: actions.UNLOCK_IN_PROGRESS,
}
}
function unlockFailed (message) {
return {
2016-05-25 12:39:12 -07:00
type: actions.UNLOCK_FAILED,
value: message,
}
}
2016-06-21 13:18:32 -07:00
function unlockMetamask (account) {
return {
2016-05-25 12:39:12 -07:00
type: actions.UNLOCK_METAMASK,
value: account,
}
}
2016-06-21 13:18:32 -07:00
function updateMetamaskState (newState) {
return {
2016-05-25 12:39:12 -07:00
type: actions.UPDATE_METAMASK_STATE,
value: newState,
}
}
2016-06-21 13:18:32 -07:00
function lockMetamask () {
log.debug(`background.setLocked`)
return callBackgroundThenUpdate(background.setLocked)
}
2016-06-21 13:18:32 -07:00
function showAccountDetail (address) {
return (dispatch) => {
2016-05-25 12:39:12 -07:00
dispatch(actions.showLoadingIndication())
log.debug(`background.setSelectedAddress`)
background.setSelectedAddress(address, (err) => {
2016-05-25 12:39:12 -07:00
dispatch(actions.hideLoadingIndication())
2016-06-21 13:56:04 -07:00
if (err) {
2016-11-07 16:02:02 -08:00
return dispatch(actions.displayWarning(err.message))
2016-06-21 13:56:04 -07:00
}
dispatch({
2016-05-25 12:39:12 -07:00
type: actions.SHOW_ACCOUNT_DETAIL,
value: address,
})
})
}
}
2016-06-21 13:18:32 -07:00
function backToAccountDetail (address) {
return {
2016-05-25 12:39:12 -07:00
type: actions.BACK_TO_ACCOUNT_DETAIL,
value: address,
}
}
2016-06-21 13:18:32 -07:00
function showAccountsPage () {
return {
2016-05-25 12:39:12 -07:00
type: actions.SHOW_ACCOUNTS_PAGE,
}
}
function showConfTxPage (transForward = true) {
return {
2016-05-25 12:39:12 -07:00
type: actions.SHOW_CONF_TX_PAGE,
transForward: transForward,
}
}
2016-06-21 13:18:32 -07:00
function nextTx () {
return {
2016-05-25 12:39:12 -07:00
type: actions.NEXT_TX,
}
}
2016-06-21 13:18:32 -07:00
function viewPendingTx (txId) {
return {
type: actions.VIEW_PENDING_TX,
value: txId,
}
}
2016-06-21 13:18:32 -07:00
function previousTx () {
return {
2016-05-25 12:39:12 -07:00
type: actions.PREVIOUS_TX,
}
}
2016-06-21 13:18:32 -07:00
function showConfigPage (transitionForward = true) {
return {
2016-05-25 12:39:12 -07:00
type: actions.SHOW_CONFIG_PAGE,
value: transitionForward,
}
}
function goBackToInitView () {
return {
type: actions.BACK_TO_INIT_MENU,
}
}
//
// notice
//
function markNoticeRead (notice) {
return (dispatch) => {
dispatch(this.showLoadingIndication())
log.debug(`background.markNoticeRead`)
2016-12-19 13:35:43 -08:00
background.markNoticeRead(notice, (err, notice) => {
dispatch(this.hideLoadingIndication())
if (err) {
return dispatch(actions.displayWarning(err))
}
if (notice) {
return dispatch(actions.showNotice(notice))
} else {
dispatch(this.clearNotices())
return {
type: actions.SHOW_ACCOUNTS_PAGE,
}
}
})
}
}
function showNotice (notice) {
return {
type: actions.SHOW_NOTICE,
value: notice,
}
}
function clearNotices () {
return {
type: actions.CLEAR_NOTICES,
}
}
2017-04-26 21:05:45 -07:00
function markAccountsFound () {
log.debug(`background.markAccountsFound`)
return callBackgroundThenUpdate(background.markAccountsFound)
}
//
// config
//
// default rpc target refers to localhost:8545 in this instance.
function setDefaultRpcTarget (rpcList) {
log.debug(`background.setDefaultRpcTarget`)
return (dispatch) => {
background.setDefaultRpc((err, result) => {
if (err) {
2017-03-08 09:35:31 -08:00
log.error(err)
return dispatch(self.displayWarning('Had a problem changing networks.'))
}
})
}
}
2016-06-21 13:18:32 -07:00
function setRpcTarget (newRpc) {
2017-03-08 09:08:28 -08:00
log.debug(`background.setRpcTarget`)
return (dispatch) => {
background.setCustomRpc(newRpc, (err, result) => {
if (err) {
2017-03-08 09:35:31 -08:00
log.error(err)
2017-03-08 09:08:28 -08:00
return dispatch(self.displayWarning('Had a problem changing networks!'))
}
})
}
}
// Calls the addressBookController to add a new address.
function addToAddressBook (recipient, nickname) {
log.debug(`background.addToAddressBook`)
return (dispatch) => {
background.setAddressBook(recipient, nickname, (err, result) => {
if (err) {
log.error(err)
return dispatch(self.displayWarning('Address book failed to update'))
}
})
}
}
2016-06-21 13:18:32 -07:00
function setProviderType (type) {
log.debug(`background.setProviderType`)
background.setProviderType(type)
return {
2016-05-25 12:39:12 -07:00
type: actions.SET_PROVIDER_TYPE,
value: type,
}
}
2016-06-21 13:18:32 -07:00
function useEtherscanProvider () {
log.debug(`background.useEtherscanProvider`)
background.useEtherscanProvider()
return {
2016-05-25 12:39:12 -07:00
type: actions.USE_ETHERSCAN_PROVIDER,
}
}
function showLoadingIndication (message) {
return {
2016-05-25 12:39:12 -07:00
type: actions.SHOW_LOADING,
value: message,
}
}
2016-06-21 13:18:32 -07:00
function hideLoadingIndication () {
return {
2016-05-25 12:39:12 -07:00
type: actions.HIDE_LOADING,
}
}
2016-08-10 13:43:01 -07:00
function showSubLoadingIndication () {
return {
type: actions.SHOW_SUB_LOADING_INDICATION,
}
}
function hideSubLoadingIndication () {
return {
type: actions.HIDE_SUB_LOADING_INDICATION,
}
}
2016-06-21 13:18:32 -07:00
function displayWarning (text) {
return {
2016-05-25 12:39:12 -07:00
type: actions.DISPLAY_WARNING,
value: text,
}
}
2016-06-21 13:18:32 -07:00
function hideWarning () {
return {
2016-05-25 12:39:12 -07:00
type: actions.HIDE_WARNING,
}
}
2016-06-21 13:18:32 -07:00
function requestExportAccount () {
return {
2016-05-25 12:39:12 -07:00
type: actions.REQUEST_ACCOUNT_EXPORT,
}
}
function exportAccount (password, address) {
var self = this
2016-06-21 13:18:32 -07:00
return function (dispatch) {
dispatch(self.showLoadingIndication())
log.debug(`background.submitPassword`)
background.submitPassword(password, function (err) {
if (err) {
log.error('Error in submiting password.')
dispatch(self.hideLoadingIndication())
return dispatch(self.displayWarning('Incorrect Password.'))
}
log.debug(`background.exportAccount`)
background.exportAccount(address, function (err, result) {
dispatch(self.hideLoadingIndication())
if (err) {
log.error(err)
return dispatch(self.displayWarning('Had a problem exporting the account.'))
}
dispatch(self.showPrivateKey(result))
})
})
}
}
2016-06-21 13:18:32 -07:00
function showPrivateKey (key) {
return {
2016-05-25 12:39:12 -07:00
type: actions.SHOW_PRIVATE_KEY,
value: key,
}
}
2016-06-21 13:18:32 -07:00
function saveAccountLabel (account, label) {
return (dispatch) => {
2016-05-25 12:39:12 -07:00
dispatch(actions.showLoadingIndication())
log.debug(`background.saveAccountLabel`)
background.saveAccountLabel(account, label, (err) => {
2016-05-25 12:39:12 -07:00
dispatch(actions.hideLoadingIndication())
if (err) {
2016-11-07 16:02:02 -08:00
return dispatch(actions.displayWarning(err.message))
}
dispatch({
2016-05-25 12:39:12 -07:00
type: actions.SAVE_ACCOUNT_LABEL,
value: { account, label },
})
})
}
}
2016-06-21 13:18:32 -07:00
function showSendPage () {
return {
2016-05-25 12:39:12 -07:00
type: actions.SHOW_SEND_PAGE,
}
}
2016-08-10 13:43:01 -07:00
function buyEth (opts) {
2016-08-10 13:43:01 -07:00
return (dispatch) => {
const url = getBuyEthUrl(opts)
global.platform.openWindow({ url })
2016-08-10 13:43:01 -07:00
dispatch({
type: actions.BUY_ETH,
})
}
}
function buyEthView (address) {
2016-08-10 13:43:01 -07:00
return {
type: actions.BUY_ETH_VIEW,
value: address,
2016-08-10 13:43:01 -07:00
}
}
function coinBaseSubview () {
return {
type: actions.COINBASE_SUBVIEW,
}
}
function pairUpdate (coin) {
return (dispatch) => {
dispatch(actions.showSubLoadingIndication())
dispatch(actions.hideWarning())
shapeShiftRequest('marketinfo', {pair: `${coin.toLowerCase()}_eth`}, (mktResponse) => {
dispatch(actions.hideSubLoadingIndication())
dispatch({
type: actions.PAIR_UPDATE,
value: {
marketinfo: mktResponse,
},
})
})
}
}
function shapeShiftSubview (network) {
var pair = 'btc_eth'
2016-08-10 13:43:01 -07:00
return (dispatch) => {
dispatch(actions.showSubLoadingIndication())
shapeShiftRequest('marketinfo', {pair}, (mktResponse) => {
shapeShiftRequest('getcoins', {}, (response) => {
dispatch(actions.hideSubLoadingIndication())
2016-11-07 16:02:02 -08:00
if (mktResponse.error) return dispatch(actions.displayWarning(mktResponse.error))
2016-08-10 13:43:01 -07:00
dispatch({
type: actions.SHAPESHIFT_SUBVIEW,
value: {
marketinfo: mktResponse,
coinOptions: response,
},
})
})
})
}
}
function coinShiftRquest (data, marketData) {
2016-08-10 13:43:01 -07:00
return (dispatch) => {
dispatch(actions.showLoadingIndication())
2016-08-10 13:43:01 -07:00
shapeShiftRequest('shift', { method: 'POST', data}, (response) => {
dispatch(actions.hideLoadingIndication())
2016-11-07 16:02:02 -08:00
if (response.error) return dispatch(actions.displayWarning(response.error))
var message = `
Deposit your ${response.depositType} to the address bellow:`
log.debug(`background.createShapeShiftTx`)
background.createShapeShiftTx(response.deposit, response.depositType)
dispatch(actions.showQrView(response.deposit, [message].concat(marketData)))
})
}
}
function showQrView (data, message) {
return {
type: actions.SHOW_QR_VIEW,
value: {
message: message,
data: data,
},
2016-08-10 13:43:01 -07:00
}
}
2016-08-18 10:40:35 -07:00
function reshowQrCode (data, coin) {
return (dispatch) => {
dispatch(actions.showLoadingIndication())
shapeShiftRequest('marketinfo', {pair: `${coin.toLowerCase()}_eth`}, (mktResponse) => {
2016-11-07 16:02:02 -08:00
if (mktResponse.error) return dispatch(actions.displayWarning(mktResponse.error))
2016-08-18 10:40:35 -07:00
2016-08-18 15:20:26 -07:00
var message = [
2016-08-18 10:40:35 -07:00
`Deposit your ${coin} to the address bellow:`,
`Deposit Limit: ${mktResponse.limit}`,
`Deposit Minimum:${mktResponse.minimum}`,
]
dispatch(actions.hideLoadingIndication())
return dispatch(actions.showQrView(data, message))
2016-08-18 10:40:35 -07:00
})
}
}
2016-08-10 13:43:01 -07:00
function shapeShiftRequest (query, options, cb) {
var queryResponse, method
!options ? options = {} : null
options.method ? method = options.method : method = 'GET'
var requestListner = function (request) {
queryResponse = JSON.parse(this.responseText)
cb ? cb(queryResponse) : null
return queryResponse
}
var shapShiftReq = new XMLHttpRequest()
shapShiftReq.addEventListener('load', requestListner)
shapShiftReq.open(method, `https://shapeshift.io/${query}/${options.pair ? options.pair : ''}`, true)
if (options.method === 'POST') {
var jsonObj = JSON.stringify(options.data)
shapShiftReq.setRequestHeader('Content-Type', 'application/json')
return shapShiftReq.send(jsonObj)
} else {
return shapShiftReq.send()
}
}
// Call Background Then Update
//
// A function generator for a common pattern wherein:
// We show loading indication.
// We call a background method.
// We hide loading indication.
// If it errored, we show a warning.
// If it didn't, we update the state.
function callBackgroundThenUpdate (method, ...args) {
return (dispatch) => {
dispatch(actions.showLoadingIndication())
method.call(background, ...args, (err) => {
dispatch(actions.hideLoadingIndication())
if (err) {
return dispatch(actions.displayWarning(err.message))
}
forceUpdateMetamaskState(dispatch)
})
}
}
2017-04-26 21:05:45 -07:00
function forceUpdateMetamaskState (dispatch) {
log.debug(`background.getState`)
background.getState((err, newState) => {
if (err) {
return dispatch(actions.displayWarning(err.message))
}
dispatch(actions.updateMetamaskState(newState))
})
}