2019-02-21 19:28:13 +00:00
|
|
|
package whatsapp
|
|
|
|
|
|
|
|
import (
|
2019-05-30 10:20:56 +00:00
|
|
|
"github.com/Rhymen/go-whatsapp/binary"
|
2019-02-21 19:28:13 +00:00
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Store struct {
|
|
|
|
Contacts map[string]Contact
|
2019-06-13 20:37:31 +00:00
|
|
|
Chats map[string]Chat
|
2019-02-21 19:28:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Contact struct {
|
|
|
|
Jid string
|
|
|
|
Notify string
|
|
|
|
Name string
|
|
|
|
Short string
|
|
|
|
}
|
|
|
|
|
2019-06-13 20:37:31 +00:00
|
|
|
type Chat struct {
|
|
|
|
Jid string
|
|
|
|
Name string
|
|
|
|
Unread string
|
|
|
|
LastMessageTime string
|
|
|
|
IsMuted string
|
|
|
|
IsMarkedSpam string
|
|
|
|
}
|
|
|
|
|
2019-02-21 19:28:13 +00:00
|
|
|
func newStore() *Store {
|
|
|
|
return &Store{
|
|
|
|
make(map[string]Contact),
|
2019-06-13 20:37:31 +00:00
|
|
|
make(map[string]Chat),
|
2019-02-21 19:28:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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"],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-06-13 20:37:31 +00:00
|
|
|
|
|
|
|
func (wac *Conn) updateChats(chats interface{}) {
|
|
|
|
c, ok := chats.([]interface{})
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, chat := range c {
|
|
|
|
chatNode, ok := chat.(binary.Node)
|
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
jid := strings.Replace(chatNode.Attributes["jid"], "@c.us", "@s.whatsapp.net", 1)
|
|
|
|
wac.Store.Chats[jid] = Chat{
|
|
|
|
jid,
|
|
|
|
chatNode.Attributes["name"],
|
|
|
|
chatNode.Attributes["count"],
|
|
|
|
chatNode.Attributes["t"],
|
|
|
|
chatNode.Attributes["mute"],
|
|
|
|
chatNode.Attributes["spam"],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|