aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/controllers/infura.js
blob: 98375b446c0b56c04a98a4417e44639ab86ae7d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
const ObservableStore = require('obs-store')
const extend = require('xtend')

// every ten minutes
const POLLING_INTERVAL = 300000

class InfuraController {

  constructor (opts = {}) {
    const initState = extend({
      infuraNetworkStatus: {},
    }, opts.initState)
    this.store = new ObservableStore(initState)
  }

  //
  // PUBLIC METHODS
  //

  // Responsible for retrieving the status of Infura's nodes. Can return either
  // ok, degraded, or down.
  checkInfuraNetworkStatus () {
    return fetch('https://api.infura.io/v1/status/metamask')
      .then(response => response.json())
      .then((parsedResponse) => {
        this.store.updateState({
          infuraNetworkStatus: parsedResponse,
        })
      })
  }

  scheduleInfuraNetworkCheck () {
    if (this.conversionInterval) {
      clearInterval(this.conversionInterval)
    }
    this.conversionInterval = setInterval(() => {
      this.checkInfuraNetworkStatus()
    }, POLLING_INTERVAL)
  }
}

module.exports = InfuraController