status-go/protocol/messenger_chats.go

579 lines
13 KiB
Go
Raw Normal View History

2021-01-11 10:32:51 +00:00
package protocol
import (
"context"
"errors"
2021-03-05 14:38:32 +00:00
2021-01-11 10:32:51 +00:00
"github.com/status-im/status-go/protocol/common"
2021-09-07 14:05:36 +00:00
"github.com/status-im/status-go/protocol/protobuf"
2021-01-11 10:32:51 +00:00
"github.com/status-im/status-go/protocol/requests"
"github.com/status-im/status-go/protocol/transport"
2021-10-01 09:59:42 +00:00
"strings"
2021-01-11 10:32:51 +00:00
)
func (m *Messenger) Chats() []*Chat {
var chats []*Chat
2021-03-29 15:41:30 +00:00
m.allChats.Range(func(chatID string, chat *Chat) (shouldContinue bool) {
chats = append(chats, chat)
return true
})
2021-01-11 10:32:51 +00:00
return chats
}
2021-09-07 14:05:36 +00:00
func (m *Messenger) ChatsPreview() []*ChatPreview {
var chats []*ChatPreview
m.allChats.Range(func(chatID string, chat *Chat) (shouldContinue bool) {
if chat.Active || chat.Muted {
2021-09-07 14:05:36 +00:00
chatPreview := &ChatPreview{
ID: chat.ID,
Name: chat.Name,
Description: chat.Description,
Color: chat.Color,
Emoji: chat.Emoji,
2021-09-07 14:05:36 +00:00
Active: chat.Active,
ChatType: chat.ChatType,
Timestamp: chat.Timestamp,
LastClockValue: chat.LastClockValue,
DeletedAtClockValue: chat.DeletedAtClockValue,
UnviewedMessagesCount: chat.UnviewedMessagesCount,
UnviewedMentionsCount: chat.UnviewedMentionsCount,
Alias: chat.Alias,
Identicon: chat.Identicon,
Muted: chat.Muted,
Profile: chat.Profile,
CommunityID: chat.CommunityID,
CategoryID: chat.CategoryID,
Joined: chat.Joined,
SyncedTo: chat.SyncedTo,
SyncedFrom: chat.SyncedFrom,
Highlight: chat.Highlight,
Members: chat.Members,
2021-09-07 14:05:36 +00:00
}
if chat.LastMessage != nil {
chatPreview.ContentType = chat.LastMessage.ContentType
if chat.LastMessage.ContentType == protobuf.ChatMessage_TEXT_PLAIN {
2021-10-01 09:59:42 +00:00
simplifiedText, err := chat.LastMessage.GetSimplifiedText("", nil)
if err == nil {
if len(simplifiedText) > 100 {
chatPreview.Text = simplifiedText[:100]
} else {
chatPreview.Text = simplifiedText
}
if strings.Contains(chatPreview.Text, "0x") {
//if there is a mention, we would like to send parsed text as well
chatPreview.ParsedText = chat.LastMessage.ParsedText
}
2021-09-07 14:05:36 +00:00
}
} else if chat.LastMessage.ContentType == protobuf.ChatMessage_EMOJI ||
chat.LastMessage.ContentType == protobuf.ChatMessage_TRANSACTION_COMMAND {
chatPreview.Text = chat.LastMessage.Text
chatPreview.ParsedText = chat.LastMessage.ParsedText
2021-09-07 14:05:36 +00:00
}
if chat.LastMessage.ContentType == protobuf.ChatMessage_COMMUNITY {
chatPreview.ContentCommunityID = chat.LastMessage.CommunityID
}
2021-09-07 14:05:36 +00:00
}
chats = append(chats, chatPreview)
}
return true
})
return chats
}
func (m *Messenger) Chat(chatID string) *Chat {
chat, _ := m.allChats.Load(chatID)
return chat
2021-08-16 11:04:35 +00:00
}
func (m *Messenger) ActiveChats() []*Chat {
m.mutex.Lock()
defer m.mutex.Unlock()
var chats []*Chat
m.allChats.Range(func(chatID string, c *Chat) bool {
if c.Active {
chats = append(chats, c)
}
return true
})
return chats
}
2021-06-01 09:29:37 +00:00
func (m *Messenger) initChatSyncFields(chat *Chat) error {
defaultSyncPeriod, err := m.settings.GetDefaultSyncPeriod()
if err != nil {
return err
}
timestamp := uint32(m.getTimesource().GetCurrentTime()/1000) - defaultSyncPeriod
chat.SyncedTo = timestamp
chat.SyncedFrom = timestamp
return nil
}
func (m *Messenger) createPublicChat(chatID string, response *MessengerResponse) (*MessengerResponse, error) {
2021-03-25 15:15:22 +00:00
chat, ok := m.allChats.Load(chatID)
2021-10-05 17:26:02 +00:00
wasActive := false
2021-03-25 15:15:22 +00:00
if !ok {
chat = CreatePublicChat(chatID, m.getTimesource())
2021-05-14 10:55:42 +00:00
2021-10-05 17:26:02 +00:00
} else {
wasActive = chat.Active
2021-03-25 15:15:22 +00:00
}
chat.Active = true
chat.DeletedAtClockValue = 0
2021-03-25 15:15:22 +00:00
// Save topics
_, err := m.Join(chat)
if err != nil {
return nil, err
}
2021-05-14 10:55:42 +00:00
// Store chat
m.allChats.Store(chat.ID, chat)
willSync, err := m.scheduleSyncChat(chat)
if err != nil {
return nil, err
}
// We set the synced to, synced from to the default time
if !willSync {
2021-06-01 09:29:37 +00:00
if err := m.initChatSyncFields(chat); err != nil {
return nil, err
}
2021-05-14 10:55:42 +00:00
}
2021-03-25 15:15:22 +00:00
err = m.saveChat(chat)
if err != nil {
return nil, err
}
2021-05-14 10:55:42 +00:00
// Sync if it was created
2021-10-05 17:26:02 +00:00
if !ok || !wasActive {
2021-05-14 10:55:42 +00:00
if err := m.syncPublicChat(context.Background(), chat); err != nil {
return nil, err
}
}
err = m.reregisterForPushNotifications()
if err != nil {
return nil, err
}
2021-03-25 15:15:22 +00:00
response.AddChat(chat)
return response, nil
}
func (m *Messenger) CreatePublicChat(request *requests.CreatePublicChat) (*MessengerResponse, error) {
if err := request.Validate(); err != nil {
return nil, err
}
chatID := request.ID
response := &MessengerResponse{}
return m.createPublicChat(chatID, response)
}
2021-03-25 15:15:22 +00:00
func (m *Messenger) CreateProfileChat(request *requests.CreateProfileChat) (*MessengerResponse, error) {
if err := request.Validate(); err != nil {
return nil, err
}
publicKey, err := common.HexToPubkey(request.ID)
if err != nil {
return nil, err
}
chat := m.buildProfileChat(request.ID)
chat.Active = true
// Save topics
_, err = m.Join(chat)
if err != nil {
return nil, err
}
// Check contact code
filter, err := m.transport.JoinPrivate(publicKey)
if err != nil {
return nil, err
}
2021-05-14 10:55:42 +00:00
// Store chat
m.allChats.Store(chat.ID, chat)
response := &MessengerResponse{}
response.AddChat(chat)
willSync, err := m.scheduleSyncChat(chat)
2021-03-25 15:15:22 +00:00
if err != nil {
return nil, err
}
2021-05-14 10:55:42 +00:00
// We set the synced to, synced from to the default time
if !willSync {
2021-06-01 09:29:37 +00:00
if err := m.initChatSyncFields(chat); err != nil {
return nil, err
}
2021-05-14 10:55:42 +00:00
}
_, err = m.scheduleSyncFilters([]*transport.Filter{filter})
if err != nil {
return nil, err
}
2021-03-25 15:15:22 +00:00
2021-05-14 10:55:42 +00:00
err = m.saveChat(chat)
if err != nil {
return nil, err
}
2021-03-25 15:15:22 +00:00
return response, nil
}
2021-01-11 10:32:51 +00:00
func (m *Messenger) CreateOneToOneChat(request *requests.CreateOneToOneChat) (*MessengerResponse, error) {
if err := request.Validate(); err != nil {
return nil, err
}
chatID := request.ID.String()
pk, err := common.HexToPubkey(chatID)
if err != nil {
return nil, err
}
2021-11-05 15:11:10 +00:00
response := &MessengerResponse{}
ensName := request.ENSName
if ensName != "" {
clock := m.getTimesource().GetCurrentTime()
err := m.ensVerifier.ENSVerified(chatID, ensName, clock)
if err != nil {
return nil, err
}
contact, ok := m.allContacts.Load(chatID)
if !ok {
var err error
contact, err = buildContactFromPkString(chatID)
if err != nil {
return nil, err
}
}
2022-02-17 15:13:10 +00:00
contact.EnsName = ensName
2021-11-05 15:11:10 +00:00
contact.ENSVerified = true
err = m.persistence.SaveContact(contact, nil)
if err != nil {
return nil, err
}
response.Contacts = []*Contact{contact}
}
2021-03-29 15:41:30 +00:00
chat, ok := m.allChats.Load(chatID)
2021-01-11 10:32:51 +00:00
if !ok {
chat = CreateOneToOneChat(chatID, pk, m.getTimesource())
}
chat.Active = true
filters, err := m.Join(chat)
if err != nil {
return nil, err
}
2021-03-29 15:41:30 +00:00
// TODO(Samyoul) remove storing of an updated reference pointer?
m.allChats.Store(chatID, chat)
2021-01-11 10:32:51 +00:00
response.AddChat(chat)
2021-05-14 10:55:42 +00:00
willSync, err := m.scheduleSyncFilters(filters)
if err != nil {
return nil, err
}
// We set the synced to, synced from to the default time
if !willSync {
2021-06-01 09:29:37 +00:00
if err := m.initChatSyncFields(chat); err != nil {
return nil, err
}
2021-05-14 10:55:42 +00:00
}
2021-03-25 15:15:22 +00:00
2021-05-14 10:55:42 +00:00
err = m.saveChat(chat)
if err != nil {
return nil, err
}
2021-01-11 10:32:51 +00:00
return response, nil
}
func (m *Messenger) DeleteChat(chatID string) error {
return m.deleteChat(chatID)
}
func (m *Messenger) deleteChat(chatID string) error {
err := m.persistence.DeleteChat(chatID)
if err != nil {
return err
}
2021-03-29 15:41:30 +00:00
chat, ok := m.allChats.Load(chatID)
2021-01-11 10:32:51 +00:00
if ok && chat.Active && chat.Public() {
2021-03-29 15:41:30 +00:00
m.allChats.Delete(chatID)
2021-01-11 10:32:51 +00:00
return m.reregisterForPushNotifications()
}
return nil
}
func (m *Messenger) SaveChat(chat *Chat) error {
return m.saveChat(chat)
}
2021-03-25 15:15:22 +00:00
func (m *Messenger) DeactivateChat(request *requests.DeactivateChat) (*MessengerResponse, error) {
if err := request.Validate(); err != nil {
return nil, err
}
return m.deactivateChat(request.ID, 0, true)
2021-01-11 10:32:51 +00:00
}
func (m *Messenger) deactivateChat(chatID string, deactivationClock uint64, shouldBeSynced bool) (*MessengerResponse, error) {
2021-01-11 10:32:51 +00:00
var response MessengerResponse
2021-03-29 15:41:30 +00:00
chat, ok := m.allChats.Load(chatID)
2021-01-11 10:32:51 +00:00
if !ok {
return nil, ErrChatNotFound
}
// Reset mailserver last request to allow re-fetching messages if joining a chat again
filters, err := m.filtersForChat(chatID)
if err != nil && err != ErrNoFiltersForChat {
return nil, err
}
if m.mailserversDatabase != nil {
for _, filter := range filters {
if !filter.Listen || filter.Ephemeral {
continue
}
err := m.mailserversDatabase.ResetLastRequest(filter.Topic.String())
if err != nil {
return nil, err
}
}
}
if deactivationClock == 0 {
deactivationClock, _ = chat.NextClockAndTimestamp(m.getTimesource())
}
2021-01-11 10:32:51 +00:00
err = m.persistence.DeactivateChat(chat, deactivationClock)
2021-01-11 10:32:51 +00:00
if err != nil {
return nil, err
}
// We re-register as our options have changed and we don't want to
// receive PN from mentions in this chat anymore
if chat.Public() || chat.ProfileUpdates() {
2021-01-11 10:32:51 +00:00
err := m.reregisterForPushNotifications()
if err != nil {
return nil, err
}
2021-03-25 15:15:22 +00:00
err = m.transport.ClearProcessedMessageIDsCache()
if err != nil {
return nil, err
}
2021-01-11 10:32:51 +00:00
}
2021-03-29 15:41:30 +00:00
// TODO(samyoul) remove storing of an updated reference pointer?
m.allChats.Store(chatID, chat)
2021-01-11 10:32:51 +00:00
response.AddChat(chat)
// TODO: Remove filters
2021-10-05 17:26:02 +00:00
if shouldBeSynced {
err := m.syncChatRemoving(context.Background(), chat.ID)
if err != nil {
return nil, err
}
}
2021-01-11 10:32:51 +00:00
return &response, nil
}
func (m *Messenger) saveChats(chats []*Chat) error {
err := m.persistence.SaveChats(chats)
if err != nil {
return err
}
for _, chat := range chats {
2021-03-29 15:41:30 +00:00
m.allChats.Store(chat.ID, chat)
2021-01-11 10:32:51 +00:00
}
return nil
}
func (m *Messenger) saveChat(chat *Chat) error {
_, ok := m.allChats.Load(chat.ID)
2021-01-11 10:32:51 +00:00
if chat.OneToOne() {
name, identicon, err := generateAliasAndIdenticon(chat.ID)
if err != nil {
return err
}
chat.Alias = name
chat.Identicon = identicon
}
// Sync chat if it's a new active public chat, but not a timeline chat
2021-03-04 13:02:08 +00:00
if !ok && chat.Active && chat.Public() && !chat.ProfileUpdates() && !chat.Timeline() {
2021-01-11 10:32:51 +00:00
if err := m.syncPublicChat(context.Background(), chat); err != nil {
return err
}
}
err := m.persistence.SaveChat(*chat)
if err != nil {
return err
}
2021-11-03 11:31:11 +00:00
// We store the chat has it might not have been in the store in the first place
2021-03-29 15:41:30 +00:00
m.allChats.Store(chat.ID, chat)
2021-01-11 10:32:51 +00:00
return nil
}
func (m *Messenger) Join(chat *Chat) ([]*transport.Filter, error) {
switch chat.ChatType {
case ChatTypeOneToOne:
pk, err := chat.PublicKey()
if err != nil {
return nil, err
}
f, err := m.transport.JoinPrivate(pk)
if err != nil {
return nil, err
}
return []*transport.Filter{f}, nil
case ChatTypePrivateGroupChat:
members, err := chat.MembersAsPublicKeys()
if err != nil {
return nil, err
}
return m.transport.JoinGroup(members)
case ChatTypePublic, ChatTypeProfile, ChatTypeTimeline:
f, err := m.transport.JoinPublic(chat.ID)
if err != nil {
return nil, err
}
return []*transport.Filter{f}, nil
default:
return nil, errors.New("chat is neither public nor private")
}
}
2021-03-25 15:15:22 +00:00
func (m *Messenger) buildProfileChat(id string) *Chat {
// Create the corresponding profile chat
profileChatID := buildProfileChatID(id)
profileChat, ok := m.allChats.Load(profileChatID)
if !ok {
profileChat = CreateProfileChat(id, m.getTimesource())
}
return profileChat
}
func (m *Messenger) ensureTimelineChat() error {
chat, err := m.persistence.Chat(timelineChatID)
if err != nil {
return err
}
if chat != nil {
return nil
}
chat = CreateTimelineChat(m.getTimesource())
m.allChats.Store(timelineChatID, chat)
return m.saveChat(chat)
}
func (m *Messenger) ensureMyOwnProfileChat() error {
chatID := common.PubkeyToHex(&m.identity.PublicKey)
2021-05-14 10:55:42 +00:00
_, ok := m.allChats.Load(chatID)
2021-03-25 15:15:22 +00:00
if ok {
return nil
}
2021-05-14 10:55:42 +00:00
chat := m.buildProfileChat(chatID)
2021-03-25 15:15:22 +00:00
chat.Active = true
// Save topics
_, err := m.Join(chat)
if err != nil {
return err
}
return m.saveChat(chat)
}
func (m *Messenger) ClearHistory(request *requests.ClearHistory) (*MessengerResponse, error) {
if err := request.Validate(); err != nil {
return nil, err
}
return m.clearHistory(request.ID)
}
func (m *Messenger) clearHistory(id string) (*MessengerResponse, error) {
chat, ok := m.allChats.Load(id)
if !ok {
return nil, ErrChatNotFound
}
clock, _ := chat.NextClockAndTimestamp(m.transport)
err := m.persistence.ClearHistory(chat, clock)
if err != nil {
return nil, err
}
if chat.Public() {
err = m.transport.ClearProcessedMessageIDsCache()
if err != nil {
return nil, err
}
}
2022-02-10 10:00:59 +00:00
err = m.syncClearHistory(context.Background(), chat)
if err != nil {
return nil, err
}
2021-03-25 15:15:22 +00:00
m.allChats.Store(id, chat)
response := &MessengerResponse{}
response.AddChat(chat)
return response, nil
}