aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/controllers/address-book.js
blob: 6fb4ee1141f4d7f77573401be899072b14b3fde0 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
const ObservableStore = require('obs-store')
const extend = require('xtend')

class AddressBookController {


  // Controller in charge of managing the address book functionality from the
  // recipients field on the send screen. Manages a history of all saved
  // addresses and all currently owned addresses.
  constructor (opts = {}, keyringController) {
    const initState = extend({
      addressBook: [],
    }, opts.initState)
    this.store = new ObservableStore(initState)
    this.keyringController = keyringController
  }

  //
  // PUBLIC METHODS
  //

  // Sets a new address book in store by accepting a new address and nickname.
  setAddressBook (address, name) {
    return this._addToAddressBook(address, name)
    .then((addressBook) => {
      this.store.updateState({
        addressBook,
      })
      return Promise.resolve()
    })
  }

  //
  // PRIVATE METHODS
  //


  // Performs the logic to add the address and name into the address book. The
  // pushed object is an object of two fields. Current behavior does not set an
  // upper limit to the number of addresses.
  _addToAddressBook (address, name) {
    const addressBook = this._getAddressBook()
    const identities = this._getIdentities()

    const addressBookIndex = addressBook.findIndex((element) => { return element.address.toLowerCase() === address.toLowerCase() || element.name === name })
    const identitiesIndex = Object.keys(identities).findIndex((element) => { return element.toLowerCase() === address.toLowerCase() })
    // trigger this condition if we own this address--no need to overwrite.
    if (identitiesIndex !== -1) {
      return Promise.resolve(addressBook)
    // trigger this condition if we've seen this address before--may need to update nickname.
    } else if (addressBookIndex !== -1) {
      addressBook.splice(addressBookIndex, 1)
    } else if (addressBook.length > 15) {
      addressBook.shift()
    }


    addressBook.push({
      address: address,
      name,
    })
    return Promise.resolve(addressBook)
  }

  // Internal method to get the address book. Current persistence behavior
  // should not require that this method be called from the UI directly.
  _getAddressBook () {
    return this.store.getState().addressBook
  }

  // Retrieves identities from the keyring controller in order to avoid
  // duplication
  _getIdentities () {
    return this.keyringController.memStore.getState().identities
  }

}

module.exports = AddressBookController