2021-07-22 17:41:49 +00:00
|
|
|
package protocol
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/golang/protobuf/proto"
|
|
|
|
"go.uber.org/zap"
|
|
|
|
|
2022-03-23 18:47:00 +00:00
|
|
|
"github.com/status-im/status-go/multiaccounts/settings"
|
2021-07-22 17:41:49 +00:00
|
|
|
"github.com/status-im/status-go/protocol/common"
|
|
|
|
"github.com/status-im/status-go/protocol/communities"
|
|
|
|
"github.com/status-im/status-go/protocol/protobuf"
|
|
|
|
"github.com/status-im/status-go/protocol/transport"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (m *Messenger) GetCurrentUserStatus() (*UserStatus, error) {
|
|
|
|
|
|
|
|
status := &UserStatus{
|
2021-10-28 15:21:28 +00:00
|
|
|
StatusType: int(protobuf.StatusUpdate_AUTOMATIC),
|
2021-07-22 17:41:49 +00:00
|
|
|
Clock: 0,
|
|
|
|
CustomText: "",
|
|
|
|
}
|
|
|
|
|
|
|
|
err := m.settings.GetCurrentStatus(status)
|
|
|
|
if err != nil {
|
|
|
|
m.logger.Debug("Error obtaining latest status", zap.Error(err))
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return status, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Messenger) sendUserStatus(ctx context.Context, status UserStatus) error {
|
|
|
|
shouldBroadcastUserStatus, err := m.settings.ShouldBroadcastUserStatus()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if !shouldBroadcastUserStatus {
|
|
|
|
m.logger.Debug("user status should not be broadcasted")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
status.Clock = uint64(time.Now().Unix())
|
|
|
|
|
2022-03-23 18:47:00 +00:00
|
|
|
err = m.settings.SaveSettingField(settings.CurrentUserStatus, status)
|
2021-07-22 17:41:49 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
statusUpdate := &protobuf.StatusUpdate{
|
|
|
|
Clock: status.Clock,
|
|
|
|
StatusType: protobuf.StatusUpdate_StatusType(status.StatusType),
|
|
|
|
CustomText: status.CustomText,
|
|
|
|
}
|
|
|
|
|
|
|
|
encodedMessage, err := proto.Marshal(statusUpdate)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
contactCodeTopic := transport.ContactCodeTopic(&m.identity.PublicKey)
|
|
|
|
|
|
|
|
rawMessage := common.RawMessage{
|
|
|
|
LocalChatID: contactCodeTopic,
|
|
|
|
Payload: encodedMessage,
|
|
|
|
MessageType: protobuf.ApplicationMetadataMessage_STATUS_UPDATE,
|
|
|
|
ResendAutomatically: true,
|
2022-11-07 20:01:06 +00:00
|
|
|
Ephemeral: statusUpdate.StatusType == protobuf.StatusUpdate_AUTOMATIC,
|
2021-07-22 17:41:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_, err = m.sender.SendPublic(ctx, contactCodeTopic, rawMessage)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
joinedCommunities, err := m.communitiesManager.Joined()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for _, community := range joinedCommunities {
|
|
|
|
rawMessage.LocalChatID = community.StatusUpdatesChannelID()
|
|
|
|
_, err = m.sender.SendPublic(ctx, rawMessage.LocalChatID, rawMessage)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Messenger) sendCurrentUserStatus(ctx context.Context) {
|
|
|
|
err := m.persistence.CleanOlderStatusUpdates()
|
|
|
|
if err != nil {
|
|
|
|
m.logger.Debug("Error cleaning status updates", zap.Error(err))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
shouldBroadcastUserStatus, err := m.settings.ShouldBroadcastUserStatus()
|
|
|
|
if err != nil {
|
|
|
|
m.logger.Debug("Error while getting status broadcast setting", zap.Error(err))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if !shouldBroadcastUserStatus {
|
|
|
|
m.logger.Debug("user status should not be broadcasted")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
currStatus, err := m.GetCurrentUserStatus()
|
|
|
|
if err != nil {
|
|
|
|
m.logger.Debug("Error obtaining latest status", zap.Error(err))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := m.sendUserStatus(ctx, *currStatus); err != nil {
|
|
|
|
m.logger.Debug("Error when sending the latest user status", zap.Error(err))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Messenger) sendCurrentUserStatusToCommunity(ctx context.Context, community *communities.Community) error {
|
2021-08-06 15:40:23 +00:00
|
|
|
logger := m.logger.Named("sendCurrentUserStatusToCommunity")
|
|
|
|
|
2021-07-22 17:41:49 +00:00
|
|
|
shouldBroadcastUserStatus, err := m.settings.ShouldBroadcastUserStatus()
|
|
|
|
if err != nil {
|
2021-08-06 15:40:23 +00:00
|
|
|
logger.Debug("m.settings.ShouldBroadcastUserStatus error", zap.Error(err))
|
2021-07-22 17:41:49 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if !shouldBroadcastUserStatus {
|
2021-08-06 15:40:23 +00:00
|
|
|
logger.Debug("user status should not be broadcasted")
|
2021-07-22 17:41:49 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
status, err := m.GetCurrentUserStatus()
|
|
|
|
if err != nil {
|
2021-08-06 15:40:23 +00:00
|
|
|
logger.Debug("Error obtaining latest status", zap.Error(err))
|
2021-07-22 17:41:49 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
status.Clock = uint64(time.Now().Unix())
|
|
|
|
|
2022-03-23 18:47:00 +00:00
|
|
|
err = m.settings.SaveSettingField(settings.CurrentUserStatus, status)
|
2021-07-22 17:41:49 +00:00
|
|
|
if err != nil {
|
2021-08-06 15:40:23 +00:00
|
|
|
logger.Debug("m.settings.SaveSetting error",
|
|
|
|
zap.Any("current-user-status", status),
|
|
|
|
zap.Error(err))
|
2021-07-22 17:41:49 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
statusUpdate := &protobuf.StatusUpdate{
|
|
|
|
Clock: status.Clock,
|
|
|
|
StatusType: protobuf.StatusUpdate_StatusType(status.StatusType),
|
|
|
|
CustomText: status.CustomText,
|
|
|
|
}
|
|
|
|
|
|
|
|
encodedMessage, err := proto.Marshal(statusUpdate)
|
|
|
|
if err != nil {
|
2021-08-06 15:40:23 +00:00
|
|
|
logger.Debug("proto.Marshal error",
|
|
|
|
zap.Any("protobuf.StatusUpdate", statusUpdate),
|
|
|
|
zap.Error(err))
|
2021-07-22 17:41:49 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
rawMessage := common.RawMessage{
|
|
|
|
LocalChatID: community.StatusUpdatesChannelID(),
|
|
|
|
Payload: encodedMessage,
|
|
|
|
MessageType: protobuf.ApplicationMetadataMessage_STATUS_UPDATE,
|
|
|
|
ResendAutomatically: true,
|
2022-11-07 20:01:06 +00:00
|
|
|
Ephemeral: statusUpdate.StatusType == protobuf.StatusUpdate_AUTOMATIC,
|
2021-07-22 17:41:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_, err = m.sender.SendPublic(ctx, rawMessage.LocalChatID, rawMessage)
|
|
|
|
if err != nil {
|
2021-08-06 15:40:23 +00:00
|
|
|
logger.Debug("m.sender.SendPublic error", zap.Error(err))
|
2021-07-22 17:41:49 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Messenger) broadcastLatestUserStatus() {
|
|
|
|
m.logger.Debug("broadcasting user status")
|
|
|
|
ctx := context.Background()
|
2021-12-09 08:50:58 +00:00
|
|
|
go func() {
|
|
|
|
// Ensure that we are connected before sending a message
|
|
|
|
time.Sleep(5 * time.Second)
|
|
|
|
m.sendCurrentUserStatus(ctx)
|
|
|
|
}()
|
|
|
|
|
2021-07-22 17:41:49 +00:00
|
|
|
go func() {
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-time.After(5 * time.Minute):
|
|
|
|
m.sendCurrentUserStatus(ctx)
|
|
|
|
case <-m.quit:
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Messenger) SetUserStatus(ctx context.Context, newStatus int, newCustomText string) error {
|
|
|
|
if len([]rune(newCustomText)) > maxStatusMessageText {
|
|
|
|
return fmt.Errorf("custom text shouldn't be longer than %d", maxStatusMessageText)
|
|
|
|
}
|
|
|
|
|
2021-10-28 15:21:28 +00:00
|
|
|
if newStatus != int(protobuf.StatusUpdate_AUTOMATIC) &&
|
|
|
|
newStatus != int(protobuf.StatusUpdate_DO_NOT_DISTURB) &&
|
|
|
|
newStatus != int(protobuf.StatusUpdate_ALWAYS_ONLINE) &&
|
|
|
|
newStatus != int(protobuf.StatusUpdate_INACTIVE) {
|
2021-07-22 17:41:49 +00:00
|
|
|
return fmt.Errorf("unknown status type")
|
|
|
|
}
|
|
|
|
|
|
|
|
currStatus, err := m.GetCurrentUserStatus()
|
|
|
|
if err != nil {
|
|
|
|
m.logger.Debug("Error obtaining latest status", zap.Error(err))
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if newStatus == currStatus.StatusType && newCustomText == currStatus.CustomText {
|
|
|
|
m.logger.Debug("Status type did not change")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
currStatus.StatusType = newStatus
|
|
|
|
currStatus.CustomText = newCustomText
|
|
|
|
|
|
|
|
return m.sendUserStatus(ctx, *currStatus)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Messenger) HandleStatusUpdate(state *ReceivedMessageState, statusMessage protobuf.StatusUpdate) error {
|
|
|
|
if err := ValidateStatusUpdate(statusMessage); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if common.IsPubKeyEqual(state.CurrentMessageState.PublicKey, &m.identity.PublicKey) { // Status message is ours
|
|
|
|
currentStatus, err := m.GetCurrentUserStatus()
|
|
|
|
if err != nil {
|
|
|
|
m.logger.Debug("Error obtaining latest status", zap.Error(err))
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if currentStatus.Clock >= statusMessage.Clock {
|
|
|
|
return nil // older status message, or status does not change ignoring it
|
|
|
|
}
|
|
|
|
newStatus := ToUserStatus(statusMessage)
|
2022-03-23 18:47:00 +00:00
|
|
|
err = m.settings.SaveSettingField(settings.CurrentUserStatus, newStatus)
|
2021-07-22 17:41:49 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
state.Response.SetCurrentStatus(newStatus)
|
|
|
|
} else {
|
|
|
|
statusUpdate := ToUserStatus(statusMessage)
|
|
|
|
statusUpdate.PublicKey = state.CurrentMessageState.Contact.ID
|
|
|
|
|
|
|
|
err := m.persistence.InsertStatusUpdate(statusUpdate)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
state.Response.AddStatusUpdate(statusUpdate)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Messenger) StatusUpdates() ([]UserStatus, error) {
|
|
|
|
return m.persistence.StatusUpdates()
|
|
|
|
}
|
2022-08-02 23:08:01 +00:00
|
|
|
|
|
|
|
func (m *Messenger) timeoutStatusUpdates(fromClock uint64, tillClock uint64) {
|
|
|
|
// Most of the time we only need to time out just one status update,
|
|
|
|
// but the range covers special cases like, other status updates had the same clock value
|
|
|
|
// or the received another status update with higher clock value than the reference clock but
|
|
|
|
// lower clock value than the nextClock
|
|
|
|
deactivatedStatusUpdates, err := m.persistence.DeactivatedAutomaticStatusUpdates(fromClock, tillClock)
|
|
|
|
|
|
|
|
// Send deactivatedStatusUpdates to Client
|
|
|
|
if err == nil {
|
2022-08-24 16:40:56 +00:00
|
|
|
if m.config.messengerSignalsHandler != nil {
|
|
|
|
m.config.messengerSignalsHandler.StatusUpdatesTimedOut(&deactivatedStatusUpdates)
|
|
|
|
}
|
2022-08-02 23:08:01 +00:00
|
|
|
} else {
|
|
|
|
m.logger.Debug("Unable to get deactivated automatic status updates from db", zap.Error(err))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Messenger) timeoutAutomaticStatusUpdates() {
|
|
|
|
|
|
|
|
nextClock := uint64(0)
|
|
|
|
waitDuration := uint64(10) // Initial 10 sec wait, to make sure new status updates are fetched before starting timing out loop
|
|
|
|
fiveMinutes := uint64(5 * 60)
|
|
|
|
referenceClock := uint64(time.Now().Unix()) - fiveMinutes
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-time.After(time.Duration(waitDuration) * time.Second):
|
|
|
|
tempNextClock, err := m.persistence.NextHigherClockValueOfAutomaticStatusUpdates(referenceClock)
|
|
|
|
|
|
|
|
if err == nil {
|
|
|
|
if nextClock == 0 || tempNextClock > nextClock {
|
|
|
|
nextClock = tempNextClock
|
|
|
|
// Extra 5 sec wait (broadcast receiving delay)
|
|
|
|
waitDuration = tempNextClock + fiveMinutes + 5 - uint64(time.Now().Unix())
|
|
|
|
} else {
|
|
|
|
m.timeoutStatusUpdates(referenceClock, tempNextClock)
|
|
|
|
waitDuration = 0
|
|
|
|
referenceClock = tempNextClock
|
|
|
|
}
|
|
|
|
} else if err == common.ErrRecordNotFound {
|
|
|
|
// No More status updates to timeout, keep loop running at five minutes interval
|
|
|
|
waitDuration = fiveMinutes
|
|
|
|
} else {
|
|
|
|
m.logger.Debug("Unable to timeout automatic status updates", zap.Error(err))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
case <-m.quit:
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|