2019-02-21 19:28:13 +00:00
|
|
|
package bwhatsapp
|
|
|
|
|
|
|
|
import (
|
2019-05-31 22:53:49 +00:00
|
|
|
"fmt"
|
2020-11-26 23:34:44 +00:00
|
|
|
"strings"
|
2019-02-21 19:28:13 +00:00
|
|
|
|
2022-01-30 23:13:37 +00:00
|
|
|
"go.mau.fi/whatsmeow/store"
|
|
|
|
"go.mau.fi/whatsmeow/store/sqlstore"
|
|
|
|
"go.mau.fi/whatsmeow/types"
|
2019-02-21 19:28:13 +00:00
|
|
|
)
|
|
|
|
|
2019-05-31 22:53:49 +00:00
|
|
|
type ProfilePicInfo struct {
|
2020-11-26 23:34:44 +00:00
|
|
|
URL string `json:"eurl"`
|
|
|
|
Tag string `json:"tag"`
|
|
|
|
Status int16 `json:"status"`
|
2019-05-31 22:53:49 +00:00
|
|
|
}
|
|
|
|
|
2022-01-30 23:13:37 +00:00
|
|
|
func (b *Bwhatsapp) getSenderName(senderJid types.JID) string {
|
|
|
|
if sender, exists := b.contacts[senderJid]; exists {
|
|
|
|
if sender.FullName != "" {
|
|
|
|
return sender.FullName
|
|
|
|
}
|
|
|
|
// if user is not in phone contacts
|
|
|
|
// it is the most obvious scenario unless you sync your phone contacts with some remote updated source
|
|
|
|
// users can change it in their WhatsApp settings -> profile -> click on Avatar
|
|
|
|
if sender.PushName != "" {
|
|
|
|
return sender.PushName
|
2019-02-21 19:28:13 +00:00
|
|
|
}
|
|
|
|
|
2022-01-30 23:13:37 +00:00
|
|
|
if sender.FirstName != "" {
|
|
|
|
return sender.FirstName
|
|
|
|
}
|
2019-02-21 19:28:13 +00:00
|
|
|
}
|
|
|
|
|
2022-01-30 23:13:37 +00:00
|
|
|
// try to reload this contact
|
|
|
|
if _, err := b.wc.Store.Contacts.GetAllContacts(); err != nil {
|
|
|
|
b.Log.Errorf("error on update of contacts: %v", err)
|
2019-02-21 19:28:13 +00:00
|
|
|
}
|
2020-11-26 23:34:44 +00:00
|
|
|
|
2022-01-30 23:13:37 +00:00
|
|
|
allcontacts, err := b.wc.Store.Contacts.GetAllContacts()
|
2020-11-26 23:34:44 +00:00
|
|
|
if err != nil {
|
2022-01-30 23:13:37 +00:00
|
|
|
b.Log.Errorf("error on update of contacts: %v", err)
|
2020-11-26 23:34:44 +00:00
|
|
|
}
|
|
|
|
|
2022-01-30 23:13:37 +00:00
|
|
|
if len(allcontacts) > 0 {
|
|
|
|
b.contacts = allcontacts
|
2020-11-26 23:34:44 +00:00
|
|
|
}
|
|
|
|
|
2022-01-30 23:13:37 +00:00
|
|
|
if sender, exists := b.contacts[senderJid]; exists {
|
|
|
|
if sender.FullName != "" {
|
|
|
|
return sender.FullName
|
2019-02-21 19:28:13 +00:00
|
|
|
}
|
|
|
|
// if user is not in phone contacts
|
|
|
|
// it is the most obvious scenario unless you sync your phone contacts with some remote updated source
|
|
|
|
// users can change it in their WhatsApp settings -> profile -> click on Avatar
|
2022-01-30 23:13:37 +00:00
|
|
|
if sender.PushName != "" {
|
|
|
|
return sender.PushName
|
2020-06-24 22:35:49 +00:00
|
|
|
}
|
|
|
|
|
2022-01-30 23:13:37 +00:00
|
|
|
if sender.FirstName != "" {
|
|
|
|
return sender.FirstName
|
2020-06-24 22:35:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-30 23:13:37 +00:00
|
|
|
return "Someone"
|
2019-02-21 19:28:13 +00:00
|
|
|
}
|
|
|
|
|
2022-01-30 23:13:37 +00:00
|
|
|
func (b *Bwhatsapp) getSenderNotify(senderJid types.JID) string {
|
|
|
|
if sender, exists := b.contacts[senderJid]; exists {
|
|
|
|
return sender.PushName
|
2019-02-21 19:28:13 +00:00
|
|
|
}
|
2020-11-26 23:34:44 +00:00
|
|
|
|
2019-02-21 19:28:13 +00:00
|
|
|
return ""
|
|
|
|
}
|
2019-05-31 22:53:49 +00:00
|
|
|
|
2022-01-30 23:13:37 +00:00
|
|
|
func (b *Bwhatsapp) GetProfilePicThumb(jid string) (*types.ProfilePictureInfo, error) {
|
|
|
|
pjid, _ := types.ParseJID(jid)
|
|
|
|
info, err := b.wc.GetProfilePictureInfo(pjid, true)
|
2019-05-31 22:53:49 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to get avatar: %v", err)
|
|
|
|
}
|
2020-11-26 23:34:44 +00:00
|
|
|
|
2019-05-31 22:53:49 +00:00
|
|
|
return info, nil
|
|
|
|
}
|
2020-11-26 23:34:44 +00:00
|
|
|
|
|
|
|
func isGroupJid(identifier string) bool {
|
|
|
|
return strings.HasSuffix(identifier, "@g.us") ||
|
|
|
|
strings.HasSuffix(identifier, "@temp") ||
|
|
|
|
strings.HasSuffix(identifier, "@broadcast")
|
|
|
|
}
|
2022-01-30 23:13:37 +00:00
|
|
|
|
|
|
|
func (b *Bwhatsapp) getDevice() (*store.Device, error) {
|
|
|
|
device := &store.Device{}
|
|
|
|
|
|
|
|
storeContainer, err := sqlstore.New("sqlite", "file:"+b.Config.GetString("sessionfile")+".db?_foreign_keys=on", nil)
|
|
|
|
if err != nil {
|
|
|
|
return device, fmt.Errorf("failed to connect to database: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
device, err = storeContainer.GetFirstDevice()
|
|
|
|
if err != nil {
|
|
|
|
return device, fmt.Errorf("failed to get device: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return device, nil
|
|
|
|
}
|