Fix avatars losing && take care of avatar changes
This commit is contained in:
parent
bc53a66b2f
commit
e38f3897e6
|
@ -183,8 +183,10 @@ func (c *Client) updateChatLastMessage(update *client.UpdateChatLastMessage) {
|
||||||
// message received
|
// message received
|
||||||
func (c *Client) updateNewMessage(update *client.UpdateNewMessage) {
|
func (c *Client) updateNewMessage(update *client.UpdateNewMessage) {
|
||||||
go func() {
|
go func() {
|
||||||
|
chatId := update.Message.ChatId
|
||||||
|
|
||||||
// guarantee sequential message delivering per chat
|
// guarantee sequential message delivering per chat
|
||||||
lock := c.getChatMessageLock(update.Message.ChatId)
|
lock := c.getChatMessageLock(chatId)
|
||||||
lock.Lock()
|
lock.Lock()
|
||||||
defer lock.Unlock()
|
defer lock.Unlock()
|
||||||
|
|
||||||
|
@ -196,11 +198,23 @@ func (c *Client) updateNewMessage(update *client.UpdateNewMessage) {
|
||||||
}
|
}
|
||||||
|
|
||||||
log.WithFields(log.Fields{
|
log.WithFields(log.Fields{
|
||||||
"chat_id": update.Message.ChatId,
|
"chat_id": chatId,
|
||||||
}).Warn("New message from chat")
|
}).Warn("New message from chat")
|
||||||
|
|
||||||
text := c.messageToText(update.Message, false)
|
var text string
|
||||||
file, filename := c.contentToFilename(update.Message.Content)
|
content := update.Message.Content
|
||||||
|
if content != nil && content.MessageContentType() == client.TypeMessageChatChangePhoto {
|
||||||
|
chat, err := c.client.GetChat(&client.GetChatRequest{
|
||||||
|
ChatId: chatId,
|
||||||
|
})
|
||||||
|
if err == nil {
|
||||||
|
c.cache.SetChat(chatId, chat)
|
||||||
|
go c.ProcessStatusUpdate(chatId, "", "", gateway.SPImmed(true))
|
||||||
|
text = "<Chat photo has changed>"
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
text = c.messageToText(update.Message, false)
|
||||||
|
file, filename := c.contentToFilename(content)
|
||||||
|
|
||||||
// download file(s)
|
// download file(s)
|
||||||
if file != nil && !file.Local.IsDownloadingCompleted {
|
if file != nil && !file.Local.IsDownloadingCompleted {
|
||||||
|
@ -215,9 +229,9 @@ func (c *Client) updateNewMessage(update *client.UpdateNewMessage) {
|
||||||
prefix.WriteString(c.messageToPrefix(update.Message, c.formatContent(file, filename)))
|
prefix.WriteString(c.messageToPrefix(update.Message, c.formatContent(file, filename)))
|
||||||
if text != "" {
|
if text != "" {
|
||||||
// \n if it is groupchat and message is not empty
|
// \n if it is groupchat and message is not empty
|
||||||
if update.Message.ChatId < 0 {
|
if chatId < 0 {
|
||||||
prefix.WriteString("\n")
|
prefix.WriteString("\n")
|
||||||
} else if update.Message.ChatId > 0 {
|
} else if chatId > 0 {
|
||||||
prefix.WriteString(" | ")
|
prefix.WriteString(" | ")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -226,15 +240,16 @@ func (c *Client) updateNewMessage(update *client.UpdateNewMessage) {
|
||||||
|
|
||||||
text = prefix.String()
|
text = prefix.String()
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// mark message as read
|
// mark message as read
|
||||||
c.client.ViewMessages(&client.ViewMessagesRequest{
|
c.client.ViewMessages(&client.ViewMessagesRequest{
|
||||||
ChatId: update.Message.ChatId,
|
ChatId: chatId,
|
||||||
MessageIds: []int64{update.Message.Id},
|
MessageIds: []int64{update.Message.Id},
|
||||||
ForceRead: true,
|
ForceRead: true,
|
||||||
})
|
})
|
||||||
// forward message to XMPP
|
// forward message to XMPP
|
||||||
gateway.SendMessage(c.jid, strconv.FormatInt(update.Message.ChatId, 10), text, c.xmpp)
|
gateway.SendMessage(c.jid, strconv.FormatInt(chatId, 10), text, c.xmpp)
|
||||||
}()
|
}()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -178,6 +178,12 @@ func (c *Client) ProcessStatusUpdate(chatID int64, status string, show string, o
|
||||||
var photo string
|
var photo string
|
||||||
if chat != nil && chat.Photo != nil {
|
if chat != nil && chat.Photo != nil {
|
||||||
path := chat.Photo.Small.Local.Path
|
path := chat.Photo.Small.Local.Path
|
||||||
|
if path == "" {
|
||||||
|
tgFile, err := c.DownloadFile(chat.Photo.Small.Id, 1, true)
|
||||||
|
if err == nil {
|
||||||
|
path = tgFile.Local.Path
|
||||||
|
}
|
||||||
|
}
|
||||||
file, err := os.Open(path)
|
file, err := os.Open(path)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
defer file.Close()
|
defer file.Close()
|
||||||
|
|
Loading…
Reference in a new issue