diff options
author | Wim <wim@42.be> | 2019-05-30 12:20:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-30 12:20:56 +0200 |
commit | 3418e8c9afbdf3e94ab26a20d8f12c042ae29fc4 (patch) | |
tree | c5358b971a95749bece9469e959041d4f2e54cc3 /vendor/github.com/matterbridge/go-whatsapp/store.go | |
parent | 9619dff33417548a50e51a4f75f41b9de4a73327 (diff) | |
download | matterbridge-msglm-3418e8c9afbdf3e94ab26a20d8f12c042ae29fc4.tar.gz matterbridge-msglm-3418e8c9afbdf3e94ab26a20d8f12c042ae29fc4.tar.bz2 matterbridge-msglm-3418e8c9afbdf3e94ab26a20d8f12c042ae29fc4.zip |
Use upstream whatsapp again (#809)
Diffstat (limited to 'vendor/github.com/matterbridge/go-whatsapp/store.go')
-rw-r--r-- | vendor/github.com/matterbridge/go-whatsapp/store.go | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/vendor/github.com/matterbridge/go-whatsapp/store.go b/vendor/github.com/matterbridge/go-whatsapp/store.go deleted file mode 100644 index 70b89efd..00000000 --- a/vendor/github.com/matterbridge/go-whatsapp/store.go +++ /dev/null @@ -1,45 +0,0 @@ -package whatsapp - -import ( - "github.com/matterbridge/go-whatsapp/binary" - "strings" -) - -type Store struct { - Contacts map[string]Contact -} - -type Contact struct { - Jid string - Notify string - Name string - Short string -} - -func newStore() *Store { - return &Store{ - make(map[string]Contact), - } -} - -func (wac *Conn) updateContacts(contacts interface{}) { - c, ok := contacts.([]interface{}) - if !ok { - return - } - - for _, contact := range c { - contactNode, ok := contact.(binary.Node) - if !ok { - continue - } - - jid := strings.Replace(contactNode.Attributes["jid"], "@c.us", "@s.whatsapp.net", 1) - wac.Store.Contacts[jid] = Contact{ - jid, - contactNode.Attributes["notify"], - contactNode.Attributes["name"], - contactNode.Attributes["short"], - } - } -} |