2019-11-29 00:51:41 +00:00
|
|
|
package telegram
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/sha1"
|
2019-12-01 13:13:45 +00:00
|
|
|
"crypto/sha256"
|
|
|
|
"fmt"
|
2019-11-29 00:51:41 +00:00
|
|
|
"github.com/pkg/errors"
|
|
|
|
"io"
|
2019-12-04 18:37:46 +00:00
|
|
|
"math"
|
2019-11-29 00:51:41 +00:00
|
|
|
"os"
|
2019-12-01 13:13:45 +00:00
|
|
|
"path/filepath"
|
|
|
|
"regexp"
|
2019-11-29 00:51:41 +00:00
|
|
|
"strconv"
|
2019-12-01 13:13:45 +00:00
|
|
|
"strings"
|
2019-11-29 00:51:41 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"dev.narayana.im/narayana/telegabber/xmpp/gateway"
|
|
|
|
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
"github.com/soheilhy/args"
|
|
|
|
"github.com/zelenin/go-tdlib/client"
|
|
|
|
)
|
|
|
|
|
|
|
|
var errOffline = errors.New("TDlib instance is offline")
|
|
|
|
|
2019-12-01 13:13:45 +00:00
|
|
|
var spaceRegex = regexp.MustCompile(`\s+`)
|
2019-12-03 16:48:41 +00:00
|
|
|
var replyRegex = regexp.MustCompile("> ?([0-9]{10,})")
|
2019-12-01 13:13:45 +00:00
|
|
|
|
|
|
|
const newlineChar string = "\n"
|
|
|
|
|
2019-11-29 00:51:41 +00:00
|
|
|
// GetContactByUsername resolves username to user id retrieves user and chat information
|
|
|
|
func (c *Client) GetContactByUsername(username string) (*client.Chat, *client.User, error) {
|
2019-12-15 02:26:07 +00:00
|
|
|
if !c.Online() {
|
2019-11-29 00:51:41 +00:00
|
|
|
return nil, nil, errOffline
|
|
|
|
}
|
|
|
|
|
|
|
|
chat, err := c.client.SearchPublicChat(&client.SearchPublicChatRequest{
|
|
|
|
Username: username,
|
|
|
|
})
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
2019-12-04 18:37:46 +00:00
|
|
|
return c.GetContactByID(chat.Id, chat)
|
2019-11-29 00:51:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetContactByID gets user and chat information from cache (or tries to retrieve it, if missing)
|
2019-12-04 18:37:46 +00:00
|
|
|
func (c *Client) GetContactByID(id int64, chat *client.Chat) (*client.Chat, *client.User, error) {
|
2019-12-15 02:26:07 +00:00
|
|
|
if !c.Online() {
|
2019-11-29 00:51:41 +00:00
|
|
|
return nil, nil, errOffline
|
|
|
|
}
|
|
|
|
|
|
|
|
var user *client.User
|
|
|
|
var cacheChat *client.Chat
|
|
|
|
var ok bool
|
|
|
|
var err error
|
|
|
|
|
2019-12-04 18:37:46 +00:00
|
|
|
if id <= math.MaxInt32 && id >= math.MinInt32 {
|
|
|
|
userID := int32(id)
|
2019-12-04 21:47:44 +00:00
|
|
|
user, ok = c.cache.users[userID]
|
2019-12-04 18:37:46 +00:00
|
|
|
if !ok && userID > 0 {
|
|
|
|
user, err = c.client.GetUser(&client.GetUserRequest{
|
|
|
|
UserId: userID,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
2019-11-29 00:51:41 +00:00
|
|
|
|
2019-12-04 21:47:44 +00:00
|
|
|
c.cache.users[userID] = user
|
2019-12-04 18:37:46 +00:00
|
|
|
}
|
2019-11-29 00:51:41 +00:00
|
|
|
}
|
|
|
|
|
2019-12-04 21:47:44 +00:00
|
|
|
cacheChat, ok = c.cache.chats[id]
|
2019-11-29 00:51:41 +00:00
|
|
|
if !ok {
|
|
|
|
if chat == nil {
|
|
|
|
cacheChat, err = c.client.GetChat(&client.GetChatRequest{
|
2019-12-04 18:37:46 +00:00
|
|
|
ChatId: id,
|
2019-11-29 00:51:41 +00:00
|
|
|
})
|
|
|
|
if err != nil {
|
2019-12-07 19:25:37 +00:00
|
|
|
// error is irrelevant if the user was found successfully
|
2019-12-10 18:49:42 +00:00
|
|
|
if user != nil {
|
2019-12-07 19:25:37 +00:00
|
|
|
return nil, user, nil
|
|
|
|
}
|
2019-12-10 18:49:42 +00:00
|
|
|
|
|
|
|
return nil, nil, err
|
2019-11-29 00:51:41 +00:00
|
|
|
}
|
|
|
|
|
2019-12-04 21:47:44 +00:00
|
|
|
c.cache.chats[id] = cacheChat
|
2019-11-29 00:51:41 +00:00
|
|
|
} else {
|
2019-12-04 21:47:44 +00:00
|
|
|
c.cache.chats[id] = chat
|
2019-11-29 00:51:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if chat == nil {
|
|
|
|
chat = cacheChat
|
|
|
|
}
|
|
|
|
|
|
|
|
return chat, user, nil
|
|
|
|
}
|
|
|
|
|
2019-12-11 22:48:35 +00:00
|
|
|
func (c *Client) userStatusToText(status client.UserStatus) (string, string) {
|
2019-11-30 00:41:22 +00:00
|
|
|
var show, textStatus string
|
|
|
|
|
|
|
|
switch status.UserStatusType() {
|
|
|
|
case client.TypeUserStatusOnline:
|
|
|
|
textStatus = "Online"
|
|
|
|
case client.TypeUserStatusRecently:
|
|
|
|
show, textStatus = "dnd", "Last seen recently"
|
|
|
|
case client.TypeUserStatusLastWeek:
|
|
|
|
show, textStatus = "unavailable", "Last seen last week"
|
|
|
|
case client.TypeUserStatusLastMonth:
|
|
|
|
show, textStatus = "unavailable", "Last seen last month"
|
|
|
|
case client.TypeUserStatusEmpty:
|
|
|
|
show, textStatus = "unavailable", "Last seen a long time ago"
|
|
|
|
case client.TypeUserStatusOffline:
|
2019-12-01 13:13:45 +00:00
|
|
|
offlineStatus, _ := status.(*client.UserStatusOffline)
|
2019-11-30 00:41:22 +00:00
|
|
|
// this will stop working in 2038 O\
|
|
|
|
elapsed := time.Now().Unix() - int64(offlineStatus.WasOnline)
|
|
|
|
if elapsed < 3600 {
|
|
|
|
show = "away"
|
|
|
|
} else {
|
|
|
|
show = "xa"
|
|
|
|
}
|
2019-12-11 22:48:35 +00:00
|
|
|
textStatus = time.Unix(int64(offlineStatus.WasOnline), 0).
|
|
|
|
In(c.Session.TimezoneToLocation()).
|
|
|
|
Format("Last seen at 15:04 02/01/2006")
|
2019-11-30 00:41:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return show, textStatus
|
|
|
|
}
|
|
|
|
|
2019-12-22 01:04:45 +00:00
|
|
|
// set contact status
|
2019-12-04 18:37:46 +00:00
|
|
|
func (c *Client) processStatusUpdate(chatID int64, status string, show string, args ...args.V) error {
|
2019-12-15 02:26:07 +00:00
|
|
|
if !c.Online() {
|
2019-11-29 00:51:41 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
log.WithFields(log.Fields{
|
|
|
|
"chat_id": chatID,
|
|
|
|
}).Info("Status update for")
|
|
|
|
|
|
|
|
chat, user, err := c.GetContactByID(chatID, nil)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
var photo string
|
|
|
|
if chat != nil && chat.Photo != nil {
|
|
|
|
path := chat.Photo.Small.Local.Path
|
|
|
|
file, err := os.Open(path)
|
|
|
|
if err == nil {
|
|
|
|
defer file.Close()
|
|
|
|
|
|
|
|
hash := sha1.New()
|
|
|
|
_, err = io.Copy(hash, file)
|
|
|
|
if err == nil {
|
2019-12-01 13:12:55 +00:00
|
|
|
photo = fmt.Sprintf("%x", hash.Sum(nil))
|
2019-11-29 00:51:41 +00:00
|
|
|
} else {
|
|
|
|
log.Errorf("Error calculating hash: %v", path)
|
|
|
|
}
|
|
|
|
} else if path != "" {
|
|
|
|
log.Errorf("Photo does not exist: %v", path)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-30 00:41:22 +00:00
|
|
|
if status == "" {
|
|
|
|
if user != nil {
|
2019-12-11 22:48:35 +00:00
|
|
|
show, status = c.userStatusToText(user.Status)
|
2019-11-30 00:41:22 +00:00
|
|
|
} else {
|
|
|
|
show, status = "chat", chat.Title
|
2019-11-29 00:51:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gateway.SendPresence(
|
|
|
|
c.xmpp,
|
|
|
|
c.jid,
|
2019-12-04 19:29:57 +00:00
|
|
|
gateway.SPFrom(strconv.FormatInt(chatID, 10)),
|
2019-11-29 00:51:41 +00:00
|
|
|
gateway.SPShow(show),
|
2019-11-30 00:41:22 +00:00
|
|
|
gateway.SPStatus(status),
|
2019-11-29 00:51:41 +00:00
|
|
|
gateway.SPPhoto(photo),
|
|
|
|
gateway.SPImmed(gateway.SPImmed.Get(args)),
|
|
|
|
)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-12-04 18:37:46 +00:00
|
|
|
func (c *Client) formatContact(chatID int64) string {
|
2019-12-01 13:13:45 +00:00
|
|
|
if chatID == 0 {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
chat, user, err := c.GetContactByID(chatID, nil)
|
|
|
|
if err != nil {
|
|
|
|
return "unknown contact: " + err.Error()
|
|
|
|
}
|
|
|
|
|
|
|
|
var str string
|
|
|
|
if chat != nil {
|
|
|
|
str = fmt.Sprintf("%s (%v)", chat.Title, chat.Id)
|
|
|
|
} else if user != nil {
|
|
|
|
username := user.Username
|
|
|
|
if username == "" {
|
2019-12-04 19:29:57 +00:00
|
|
|
username = strconv.FormatInt(int64(user.Id), 10)
|
2019-12-01 13:13:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
str = fmt.Sprintf("%s %s (%v)", user.FirstName, user.LastName, username)
|
|
|
|
} else {
|
2019-12-04 19:29:57 +00:00
|
|
|
str = strconv.FormatInt(chatID, 10)
|
2019-12-01 13:13:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
str = spaceRegex.ReplaceAllString(str, " ")
|
|
|
|
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) formatMessage(chatID int64, messageID int64, preview bool, message *client.Message) string {
|
|
|
|
var err error
|
|
|
|
if message == nil {
|
|
|
|
message, err = c.client.GetMessage(&client.GetMessageRequest{
|
|
|
|
ChatId: chatID,
|
|
|
|
MessageId: messageID,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return "<error fetching message>"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if message == nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
var str strings.Builder
|
2019-12-04 18:37:46 +00:00
|
|
|
str.WriteString(fmt.Sprintf("%v | %s | ", message.Id, c.formatContact(int64(message.SenderUserId))))
|
2019-12-01 13:13:45 +00:00
|
|
|
if !preview {
|
2019-12-11 22:48:35 +00:00
|
|
|
str.WriteString(
|
|
|
|
time.Unix(int64(message.Date), 0).
|
|
|
|
In(c.Session.TimezoneToLocation()).
|
|
|
|
Format("02 Jan 2006 15:04:05 | "),
|
|
|
|
)
|
2019-12-01 13:13:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var text string
|
|
|
|
switch message.Content.MessageContentType() {
|
|
|
|
case client.TypeMessageText:
|
|
|
|
messageText, _ := message.Content.(*client.MessageText)
|
|
|
|
text = messageText.Text.Text
|
|
|
|
// TODO: handle other message types with labels (not supported in Zhabogram!)
|
|
|
|
}
|
|
|
|
if text != "" {
|
|
|
|
if !preview {
|
|
|
|
str.WriteString(text)
|
|
|
|
} else {
|
|
|
|
newlinePos := strings.Index(text, newlineChar)
|
|
|
|
if !preview || newlinePos == -1 {
|
|
|
|
str.WriteString(text)
|
|
|
|
} else {
|
|
|
|
str.WriteString(text[0:newlinePos])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return str.String()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) formatContent(file *client.File, filename string) string {
|
|
|
|
if file == nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
return fmt.Sprintf(
|
|
|
|
"%s (%v kbytes) | %s/%s%s",
|
|
|
|
filename,
|
|
|
|
file.Size/1024,
|
|
|
|
c.content.Link,
|
|
|
|
fmt.Sprintf("%x", sha256.Sum256([]byte(file.Remote.Id))),
|
|
|
|
filepath.Ext(filename),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) messageToText(message *client.Message) string {
|
|
|
|
switch message.Content.MessageContentType() {
|
|
|
|
case client.TypeMessageSticker:
|
|
|
|
sticker, _ := message.Content.(*client.MessageSticker)
|
|
|
|
return sticker.Sticker.Emoji
|
|
|
|
case client.TypeMessageBasicGroupChatCreate, client.TypeMessageSupergroupChatCreate:
|
|
|
|
return "has created chat"
|
|
|
|
case client.TypeMessageChatJoinByLink:
|
|
|
|
return "joined chat via invite link"
|
|
|
|
case client.TypeMessageChatAddMembers:
|
|
|
|
addMembers, _ := message.Content.(*client.MessageChatAddMembers)
|
|
|
|
|
|
|
|
text := "invited "
|
|
|
|
if len(addMembers.MemberUserIds) > 0 {
|
2019-12-04 18:37:46 +00:00
|
|
|
text += c.formatContact(int64(addMembers.MemberUserIds[0]))
|
2019-12-01 13:13:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return text
|
|
|
|
case client.TypeMessageChatDeleteMember:
|
|
|
|
deleteMember, _ := message.Content.(*client.MessageChatDeleteMember)
|
2019-12-04 18:37:46 +00:00
|
|
|
return "kicked " + c.formatContact(int64(deleteMember.UserId))
|
2019-12-01 13:13:45 +00:00
|
|
|
case client.TypeMessagePinMessage:
|
|
|
|
pinMessage, _ := message.Content.(*client.MessagePinMessage)
|
|
|
|
return "pinned message: " + c.formatMessage(message.ChatId, pinMessage.MessageId, false, nil)
|
|
|
|
case client.TypeMessageChatChangeTitle:
|
|
|
|
changeTitle, _ := message.Content.(*client.MessageChatChangeTitle)
|
|
|
|
return "chat title set to: " + changeTitle.Title
|
|
|
|
case client.TypeMessageLocation:
|
|
|
|
location, _ := message.Content.(*client.MessageLocation)
|
|
|
|
return fmt.Sprintf(
|
|
|
|
"coordinates: %v,%v | https://www.google.com/maps/search/%v,%v/",
|
|
|
|
location.Location.Latitude,
|
|
|
|
location.Location.Longitude,
|
|
|
|
location.Location.Latitude,
|
|
|
|
location.Location.Longitude,
|
|
|
|
)
|
|
|
|
case client.TypeMessagePhoto:
|
|
|
|
photo, _ := message.Content.(*client.MessagePhoto)
|
|
|
|
return photo.Caption.Text
|
|
|
|
case client.TypeMessageAudio:
|
|
|
|
audio, _ := message.Content.(*client.MessageAudio)
|
|
|
|
return audio.Caption.Text
|
|
|
|
case client.TypeMessageVideo:
|
|
|
|
video, _ := message.Content.(*client.MessageVideo)
|
|
|
|
return video.Caption.Text
|
|
|
|
case client.TypeMessageDocument:
|
|
|
|
document, _ := message.Content.(*client.MessageDocument)
|
|
|
|
return document.Caption.Text
|
|
|
|
case client.TypeMessageText:
|
|
|
|
text, _ := message.Content.(*client.MessageText)
|
|
|
|
return text.Text.Text
|
|
|
|
case client.TypeMessageVoiceNote:
|
|
|
|
voice, _ := message.Content.(*client.MessageVoiceNote)
|
|
|
|
return voice.Caption.Text
|
|
|
|
case client.TypeMessageVideoNote:
|
|
|
|
return ""
|
|
|
|
case client.TypeMessageAnimation:
|
|
|
|
animation, _ := message.Content.(*client.MessageAnimation)
|
|
|
|
return animation.Caption.Text
|
|
|
|
}
|
|
|
|
|
|
|
|
return fmt.Sprintf("unknown message (%s)", message.Content.MessageContentType())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) contentToFilename(content client.MessageContent) (*client.File, string) {
|
|
|
|
switch content.MessageContentType() {
|
|
|
|
case client.TypeMessageSticker:
|
|
|
|
sticker, _ := content.(*client.MessageSticker)
|
|
|
|
return sticker.Sticker.Sticker, "sticker.webp"
|
|
|
|
case client.TypeMessageVoiceNote:
|
|
|
|
voice, _ := content.(*client.MessageVoiceNote)
|
|
|
|
return voice.VoiceNote.Voice, fmt.Sprintf("voice note (%v s.).oga", voice.VoiceNote.Duration)
|
|
|
|
case client.TypeMessageVideoNote:
|
|
|
|
video, _ := content.(*client.MessageVideoNote)
|
|
|
|
return video.VideoNote.Video, fmt.Sprintf("video note (%v s.).mp4", video.VideoNote.Duration)
|
|
|
|
case client.TypeMessageAnimation:
|
|
|
|
animation, _ := content.(*client.MessageAnimation)
|
|
|
|
return animation.Animation.Animation, "animation.mp4"
|
|
|
|
case client.TypeMessagePhoto:
|
|
|
|
photo, _ := content.(*client.MessagePhoto)
|
|
|
|
sizes := photo.Photo.Sizes
|
|
|
|
if len(sizes) > 1 {
|
2019-12-02 16:25:55 +00:00
|
|
|
file := sizes[len(sizes)-1].Photo
|
2019-12-04 19:29:57 +00:00
|
|
|
return file, strconv.FormatInt(int64(file.Id), 10) + ".jpg"
|
2019-12-01 13:13:45 +00:00
|
|
|
}
|
2019-12-02 16:32:32 +00:00
|
|
|
return nil, ""
|
2019-12-01 13:13:45 +00:00
|
|
|
case client.TypeMessageAudio:
|
|
|
|
audio, _ := content.(*client.MessageAudio)
|
|
|
|
return audio.Audio.Audio, audio.Audio.FileName
|
|
|
|
case client.TypeMessageVideo:
|
|
|
|
video, _ := content.(*client.MessageVideo)
|
|
|
|
return video.Video.Video, video.Video.FileName
|
|
|
|
case client.TypeMessageDocument:
|
|
|
|
document, _ := content.(*client.MessageDocument)
|
|
|
|
return document.Document.Document, document.Document.FileName
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) messageToPrefix(message *client.Message, fileString string) string {
|
|
|
|
prefix := []string{}
|
|
|
|
// message direction
|
|
|
|
var directionChar string
|
|
|
|
if message.IsOutgoing {
|
|
|
|
directionChar = "➡ "
|
|
|
|
} else {
|
|
|
|
directionChar = "⬅ "
|
|
|
|
}
|
2019-12-04 19:29:57 +00:00
|
|
|
prefix = append(prefix, directionChar+strconv.FormatInt(message.Id, 10))
|
2019-12-01 13:13:45 +00:00
|
|
|
// show sender in group chats
|
|
|
|
if message.ChatId < 0 && message.SenderUserId != 0 {
|
2019-12-04 18:37:46 +00:00
|
|
|
prefix = append(prefix, c.formatContact(int64(message.SenderUserId)))
|
2019-12-01 13:13:45 +00:00
|
|
|
}
|
|
|
|
if message.ForwardInfo != nil {
|
|
|
|
switch message.ForwardInfo.Origin.MessageForwardOriginType() {
|
|
|
|
case client.TypeMessageForwardOriginUser:
|
|
|
|
originUser := message.ForwardInfo.Origin.(*client.MessageForwardOriginUser)
|
2019-12-04 18:37:46 +00:00
|
|
|
prefix = append(prefix, "fwd: "+c.formatContact(int64(originUser.SenderUserId)))
|
2019-12-01 13:13:45 +00:00
|
|
|
case client.TypeMessageForwardOriginHiddenUser:
|
|
|
|
originUser := message.ForwardInfo.Origin.(*client.MessageForwardOriginHiddenUser)
|
|
|
|
prefix = append(prefix, fmt.Sprintf("fwd: anonymous (%s)", originUser.SenderName))
|
|
|
|
case client.TypeMessageForwardOriginChannel:
|
|
|
|
channel := message.ForwardInfo.Origin.(*client.MessageForwardOriginChannel)
|
|
|
|
var signature string
|
|
|
|
if channel.AuthorSignature != "" {
|
|
|
|
signature = fmt.Sprintf(" (%s)", channel.AuthorSignature)
|
|
|
|
}
|
2019-12-04 18:37:46 +00:00
|
|
|
prefix = append(prefix, "fwd: "+c.formatContact(channel.ChatId)+signature)
|
2019-12-01 13:13:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// reply to
|
|
|
|
if message.ReplyToMessageId != 0 {
|
|
|
|
prefix = append(prefix, "reply: "+c.formatMessage(message.ChatId, message.ReplyToMessageId, true, nil))
|
|
|
|
}
|
|
|
|
if fileString != "" {
|
|
|
|
prefix = append(prefix, "file: "+fileString)
|
|
|
|
}
|
|
|
|
|
|
|
|
return strings.Join(prefix, " | ")
|
|
|
|
}
|
|
|
|
|
2019-12-03 00:32:53 +00:00
|
|
|
// ProcessOutgoingMessage executes commands or sends messages to mapped chats
|
2019-12-03 16:48:41 +00:00
|
|
|
func (c *Client) ProcessOutgoingMessage(chatID int64, text string, messageID int64, returnJid string) {
|
2019-12-07 16:37:14 +00:00
|
|
|
if messageID == 0 && strings.HasPrefix(text, "/") {
|
2019-12-03 16:48:41 +00:00
|
|
|
// try to execute a command
|
2019-12-05 23:21:39 +00:00
|
|
|
response, isCommand := c.ProcessChatCommand(chatID, text)
|
2019-12-03 00:32:53 +00:00
|
|
|
if response != "" {
|
2019-12-04 19:29:57 +00:00
|
|
|
gateway.SendMessage(returnJid, strconv.FormatInt(chatID, 10), response, c.xmpp)
|
2019-12-03 00:32:53 +00:00
|
|
|
}
|
2019-12-03 16:48:41 +00:00
|
|
|
// do not send on success
|
2019-12-03 00:32:53 +00:00
|
|
|
if isCommand {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2019-12-03 16:48:41 +00:00
|
|
|
|
2019-12-15 02:26:07 +00:00
|
|
|
if !c.Online() {
|
2019-12-03 16:48:41 +00:00
|
|
|
// we're offline
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Warnf("Send message to chat %v", chatID)
|
|
|
|
|
2019-12-07 16:37:14 +00:00
|
|
|
if messageID != 0 {
|
|
|
|
formattedText := &client.FormattedText{
|
|
|
|
Text: text,
|
2019-12-03 16:48:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// compile our message
|
2019-12-07 16:37:14 +00:00
|
|
|
message := &client.InputMessageText{
|
2019-12-03 16:48:41 +00:00
|
|
|
Text: formattedText,
|
|
|
|
}
|
|
|
|
|
|
|
|
c.client.EditMessageText(&client.EditMessageTextRequest{
|
|
|
|
ChatId: chatID,
|
|
|
|
MessageId: messageID,
|
|
|
|
InputMessageContent: message,
|
|
|
|
})
|
|
|
|
} else {
|
2019-12-07 16:37:14 +00:00
|
|
|
// quotations
|
|
|
|
var reply int64
|
|
|
|
replySlice := replyRegex.FindStringSubmatch(text)
|
|
|
|
if len(replySlice) > 1 {
|
|
|
|
reply, _ = strconv.ParseInt(replySlice[1], 10, 64)
|
|
|
|
}
|
|
|
|
|
|
|
|
// attach a file
|
|
|
|
var file *client.InputFileRemote
|
|
|
|
if c.content.Upload != "" && strings.HasPrefix(text, c.content.Upload) {
|
|
|
|
file = &client.InputFileRemote{
|
|
|
|
Id: text,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// remove first line from text
|
|
|
|
if file != nil || reply != 0 {
|
|
|
|
newlinePos := strings.Index(text, newlineChar)
|
|
|
|
if newlinePos != -1 {
|
|
|
|
text = text[newlinePos+1:]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
formattedText := &client.FormattedText{
|
|
|
|
Text: text,
|
|
|
|
}
|
|
|
|
|
|
|
|
var message client.InputMessageContent
|
|
|
|
if file != nil {
|
|
|
|
// we can try to send a document
|
|
|
|
message = &client.InputMessageDocument{
|
|
|
|
Document: file,
|
|
|
|
Caption: formattedText,
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// compile our message
|
|
|
|
message = &client.InputMessageText{
|
|
|
|
Text: formattedText,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-20 23:44:21 +00:00
|
|
|
_, err := c.client.SendMessage(&client.SendMessageRequest{
|
2019-12-03 16:48:41 +00:00
|
|
|
ChatId: chatID,
|
|
|
|
ReplyToMessageId: reply,
|
|
|
|
InputMessageContent: message,
|
|
|
|
})
|
2019-12-20 23:44:21 +00:00
|
|
|
if err != nil {
|
|
|
|
gateway.SendMessage(
|
|
|
|
returnJid,
|
|
|
|
strconv.FormatInt(chatID, 10),
|
|
|
|
fmt.Sprintf("Message not sent: %s", err.Error()),
|
|
|
|
c.xmpp,
|
|
|
|
)
|
|
|
|
}
|
2019-12-03 16:48:41 +00:00
|
|
|
}
|
2019-11-29 00:51:41 +00:00
|
|
|
}
|