diff options
author | Dan Finlay <dan@danfinlay.com> | 2018-06-05 05:21:46 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2018-06-05 05:21:46 +0800 |
commit | fd1ce4d741cc5992cc5d3d6109dc46cddf871ec2 (patch) | |
tree | 36eebb0cadf2434bbb18e64eb0b6a6abb9bfa35e /app | |
parent | 8fcaa2cf56936388ef8dfc528ecbd2354adb201e (diff) | |
download | tangerine-wallet-browser-fd1ce4d741cc5992cc5d3d6109dc46cddf871ec2.tar tangerine-wallet-browser-fd1ce4d741cc5992cc5d3d6109dc46cddf871ec2.tar.gz tangerine-wallet-browser-fd1ce4d741cc5992cc5d3d6109dc46cddf871ec2.tar.bz2 tangerine-wallet-browser-fd1ce4d741cc5992cc5d3d6109dc46cddf871ec2.tar.lz tangerine-wallet-browser-fd1ce4d741cc5992cc5d3d6109dc46cddf871ec2.tar.xz tangerine-wallet-browser-fd1ce4d741cc5992cc5d3d6109dc46cddf871ec2.tar.zst tangerine-wallet-browser-fd1ce4d741cc5992cc5d3d6109dc46cddf871ec2.zip |
Begin adding unconfigured notifier
Diffstat (limited to 'app')
-rw-r--r-- | app/scripts/controllers/preferences.js | 21 | ||||
-rw-r--r-- | app/scripts/lib/bug-notifier.js (renamed from app/scripts/lib/4486-notifier.js) | 13 |
2 files changed, 21 insertions, 13 deletions
diff --git a/app/scripts/controllers/preferences.js b/app/scripts/controllers/preferences.js index 38e93dea8..f822f61c5 100644 --- a/app/scripts/controllers/preferences.js +++ b/app/scripts/controllers/preferences.js @@ -1,6 +1,8 @@ const ObservableStore = require('obs-store') const normalizeAddress = require('eth-sig-util').normalize const extend = require('xtend') +const BugNotifier = require('../lib/bug-notifier') +const notifier = new BugNotifier() class PreferencesController { @@ -30,6 +32,7 @@ class PreferencesController { identities: {}, lostIdentities: {}, }, opts.initState) + this.store = new ObservableStore(initState) } // PUBLIC METHODS @@ -108,17 +111,27 @@ class PreferencesController { */ syncAddresses (addresses) { let { identities, lostIdentities } = this.store.getState() - Object.keys(identities).forEach((identity) => { if (!addresses.includes(identity)) { delete identities[identity] lostIdentities[identity] = identities[identity] - - // TODO: Report the bug to Sentry including the now-lost identity. - alert('Error 4486: MetaMask has encountered a very strange error. Please open a support issue immediately at support@metamask.io.') } }) + // Identities are no longer present. + if (Object.keys(lostIdentities).length > 0) { + + // timeout to prevent blocking the thread: + setTimeout(() => { + alert('Error 4486: MetaMask has encountered a very strange error. Please open a support issue immediately at support@metamask.io.') + }, 10) + + // Notify our servers: + const uri = + notifier.notify(uri, { accounts: Object.keys(lostIdentities) }) + .catch(log.error) + } + this.store.updateState({ identities, lostIdentities }) this.addAddresses(addresses) diff --git a/app/scripts/lib/4486-notifier.js b/app/scripts/lib/bug-notifier.js index b1b153419..d6a2ed2c9 100644 --- a/app/scripts/lib/4486-notifier.js +++ b/app/scripts/lib/bug-notifier.js @@ -1,26 +1,21 @@ class BugNotifier { - notify (message) { - - postData('http://example.com/answer', {answer: 42}) + notify (uri, message) { + return postData(uri, message) .then(data => console.log(data)) // JSON from `response.json()` call .catch(error => console.error(error)) } } -function postData(url, data) { - // Default options are marked with * +function postData(uri, data) { + return fetch(url, { body: JSON.stringify(data), // must match 'Content-Type' header - cache: 'no-cache', // *default, no-cache, reload, force-cache, only-if-cached credentials: 'same-origin', // include, same-origin, *omit headers: { - 'user-agent': 'Mozilla/4.0 MDN Example', 'content-type': 'application/json' }, method: 'POST', // *GET, POST, PUT, DELETE, etc. mode: 'cors', // no-cors, cors, *same-origin - redirect: 'follow', // manual, *follow, error - referrer: 'no-referrer', // *client, no-referrer }) .then(response => response.json()) // parses response to JSON } |