summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/Rhymen/go-whatsapp/store.go
diff options
context:
space:
mode:
authorWim <wim@42.be>2019-03-02 13:04:28 +0100
committerGitHub <noreply@github.com>2019-03-02 13:04:28 +0100
commitdf3fdc26a01a20c3568b824f4f15f9b56a2f3db3 (patch)
tree053e3caf197063f94af386e60c67e4bef69a7863 /vendor/github.com/Rhymen/go-whatsapp/store.go
parentaf00c34aaccb3521b8dbf0bd8876a5b38d5d42f4 (diff)
downloadmatterbridge-msglm-df3fdc26a01a20c3568b824f4f15f9b56a2f3db3.tar.gz
matterbridge-msglm-df3fdc26a01a20c3568b824f4f15f9b56a2f3db3.tar.bz2
matterbridge-msglm-df3fdc26a01a20c3568b824f4f15f9b56a2f3db3.zip
Use whatsapp forks (#750)
Diffstat (limited to 'vendor/github.com/Rhymen/go-whatsapp/store.go')
-rw-r--r--vendor/github.com/Rhymen/go-whatsapp/store.go45
1 files changed, 0 insertions, 45 deletions
diff --git a/vendor/github.com/Rhymen/go-whatsapp/store.go b/vendor/github.com/Rhymen/go-whatsapp/store.go
deleted file mode 100644
index b1c46e4a..00000000
--- a/vendor/github.com/Rhymen/go-whatsapp/store.go
+++ /dev/null
@@ -1,45 +0,0 @@
-package whatsapp
-
-import (
- "github.com/Rhymen/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"],
- }
- }
-}