2018-06-03 03:27:50 +00:00
package main
import (
"errors"
"fmt"
2018-06-03 06:24:08 +00:00
"html"
2018-06-03 03:27:50 +00:00
"log"
2018-06-06 07:35:54 +00:00
"net/url"
2018-06-03 07:15:16 +00:00
"sort"
2018-06-03 04:39:45 +00:00
"strings"
2018-06-03 06:49:14 +00:00
"sync"
2018-06-03 04:39:45 +00:00
"time"
2018-06-03 03:27:50 +00:00
"code.ivysaur.me/libnmdc"
telegram "github.com/go-telegram-bot-api/telegram-bot-api"
)
// NTFServer methods all run on the same thread, so no mutexes are needed for field access
type NTFServer struct {
2018-06-05 05:49:24 +00:00
bot * telegram . BotAPI
hubMessages chan upstreamMessage
botName string
chatName string
inviteLink string
configFile string
config NTFConfig
conns map [ string ] * libnmdc . HubConnection // hubnick -> hubconn
verbose bool
2018-06-03 06:49:14 +00:00
2018-06-06 08:01:43 +00:00
callOnMainThread chan func ( )
2018-06-06 07:35:54 +00:00
contentedMaxBytes int64
2018-06-03 06:49:14 +00:00
// Except the coalesce buffer, that requires a background worker.
coalesceBufferMut sync . Mutex
coalesceBuffer map [ string ] time . Time
}
2018-06-03 03:27:50 +00:00
type upstreamMessage struct {
telegramUserId int64
2018-06-03 04:39:45 +00:00
hubNick string
2018-06-03 03:27:50 +00:00
evt libnmdc . HubEvent
}
2018-06-03 06:51:59 +00:00
func NewNTFServer ( configFile string , verbose bool ) ( * NTFServer , error ) {
2018-06-03 03:27:50 +00:00
ret := NTFServer {
2018-06-06 08:01:43 +00:00
configFile : configFile ,
hubMessages : make ( chan upstreamMessage , 0 ) ,
callOnMainThread : make ( chan func ( ) , 0 ) ,
conns : make ( map [ string ] * libnmdc . HubConnection ) ,
coalesceBuffer : make ( map [ string ] time . Time ) ,
verbose : verbose ,
2018-06-03 03:27:50 +00:00
}
2018-06-03 04:39:45 +00:00
// Config
2018-06-03 03:27:50 +00:00
cfg , err := LoadConfig ( configFile )
if err != nil {
return nil , err
}
ret . config = cfg
2018-06-06 07:35:54 +00:00
// Validate contented URL (if present)
if len ( ret . config . ContentedURL ) > 0 {
_ , err := url . Parse ( ret . config . ContentedURL )
if err != nil {
log . Printf ( "Ignoring malformed URL to contented server '%s': %s" , ret . config . ContentedURL , err . Error ( ) )
ret . config . ContentedURL = "" // clear
}
// Valid. Enforce trailing slash
if ! strings . HasSuffix ( ret . config . ContentedURL , ` / ` ) {
ret . config . ContentedURL += ` / `
}
// Only set this if contented URL is valid - zero otherwise
ret . contentedMaxBytes = int64 ( ret . config . ContentedMaxMB ) * 1024 * 1024
}
2018-06-03 06:49:14 +00:00
// Coalesce background worker
go ret . coalesceWorker ( )
2018-06-03 04:39:45 +00:00
// Bot connection
2018-06-03 03:27:50 +00:00
if len ( cfg . BotAPIKey ) == 0 {
return nil , errors . New ( "No bot API key supplied (register with BotFather first)" )
}
bot , err := telegram . NewBotAPI ( cfg . BotAPIKey )
if err != nil {
return nil , fmt . Errorf ( "Connecting to Telegram: %s" , err . Error ( ) )
}
ret . bot = bot
2018-06-03 06:51:59 +00:00
if ret . verbose {
bot . Debug = true
}
2018-06-03 03:27:50 +00:00
log . Printf ( "Connected to telegram as '%s'" , bot . Self . UserName )
2018-06-04 04:54:10 +00:00
ret . botName = bot . Self . UserName
2018-06-03 04:39:45 +00:00
// Groupchat properties
2018-06-03 03:27:50 +00:00
if ret . IsSetupMode ( ) {
log . Println ( "Group chat ID unknown, running in setup mode only - find the groupchat ID then re-run" )
} else {
chatInfo , err := bot . GetChat ( telegram . ChatConfig { ChatID : ret . config . GroupChatID } )
if err != nil {
return nil , fmt . Errorf ( "Couldn't get supergroup properties: %s" , err . Error ( ) )
}
inviteLink , err := bot . GetInviteLink ( telegram . ChatConfig { ChatID : ret . config . GroupChatID } )
if err != nil {
return nil , fmt . Errorf ( "Couldn't get supergroup invite link: %s" , err . Error ( ) )
}
log . Printf ( "Group chat: %s" , chatInfo . Title )
log . Printf ( "Invite link: %s" , inviteLink )
ret . chatName = chatInfo . Title
ret . inviteLink = inviteLink
}
2018-06-03 04:39:45 +00:00
// Spawn upstream connections for all pre-existing known users
2018-06-04 04:36:45 +00:00
launchedAny := false
2018-06-03 04:39:45 +00:00
for telegramUserId , telegramDisplayName := range ret . config . GroupChatMembers {
hubNick , ok := ret . config . KnownUsers [ telegramUserId ]
if ! ok {
log . Fatalf ( "Chat member '%d' (%s) is missing a hub mapping!!!" , telegramUserId , telegramDisplayName ) // fatal - inconsistent DB
}
err := ret . LaunchUpstreamWorker ( telegramUserId , hubNick )
if err != nil {
2018-06-04 04:44:04 +00:00
log . Fatalf ( "Couldn't reconnect upstream for '%s': %s" , hubNick , err . Error ( ) ) // fatal - inconsistent DB is the only possible cause
2018-06-03 04:39:45 +00:00
}
2018-06-04 04:36:45 +00:00
2018-06-09 01:50:07 +00:00
// Slight stagger
time . Sleep ( 50 * time . Millisecond )
2018-06-04 04:36:45 +00:00
launchedAny = true
}
// We have some bad edge cases if a telegram message comes in while the upstream
// connection is offline. Wait a bit after startup, to minimise failure cases
if launchedAny {
time . Sleep ( 5 * time . Second )
2018-06-03 03:27:50 +00:00
}
return & ret , nil
}
2018-06-03 04:39:45 +00:00
// LaunchUpstreamWorker opens an NMDC connection.
func ( this * NTFServer ) LaunchUpstreamWorker ( telegramUserId int64 , hubUsername string ) error {
if _ , exists := this . conns [ hubUsername ] ; exists {
return fmt . Errorf ( "Duplicate hub connection for user '%s', abandoning" , hubUsername )
}
2018-06-03 06:24:08 +00:00
log . Printf ( "Connecting to hub '%s' as user '%s'..." , this . config . HubAddr , hubUsername )
2018-06-03 04:39:45 +00:00
// We want to use the async NMDC connection, but at the same time, provide
// extra information in the channel. Wrap the upstream NMDC channel with one
// of our own
upstreamChan := make ( chan libnmdc . HubEvent , 0 )
go func ( ) {
for msg := range upstreamChan {
this . hubMessages <- upstreamMessage {
telegramUserId : telegramUserId ,
hubNick : hubUsername ,
evt : msg ,
}
}
} ( )
2018-06-03 06:24:08 +00:00
hubUser := libnmdc . NewUserInfo ( hubUsername )
hubUser . ClientTag = AppName
hubUser . ClientVersion = AppVersion
2018-06-03 04:39:45 +00:00
conn := libnmdc . ConnectAsync (
& libnmdc . HubConnectionOptions {
Address : libnmdc . HubAddress ( this . config . HubAddr ) ,
2018-06-03 06:24:08 +00:00
Self : hubUser ,
2018-06-03 04:39:45 +00:00
} ,
upstreamChan ,
)
// Stash conn so that we can refer to it / close it later
this . conns [ hubUsername ] = conn
return nil
2018-06-03 03:27:50 +00:00
}
func ( this * NTFServer ) IsSetupMode ( ) bool {
return this . config . GroupChatID == 0
}
func ( this * NTFServer ) Run ( ) error {
updateProps := telegram . NewUpdate ( 0 )
updateProps . Timeout = 60 // seconds
updateChan , err := this . bot . GetUpdatesChan ( updateProps )
if err != nil {
return err
}
2018-06-03 04:39:45 +00:00
for {
select {
case update , ok := <- updateChan :
if ! ok {
log . Fatalf ( "Telegram update channel closed unexpectedly" )
}
this . HandleMessage ( update )
case hubMsg , ok := <- this . hubMessages :
if ! ok {
log . Fatalf ( "Upstream update channel closed unexpectedly" )
}
this . HandleHubMessage ( hubMsg )
2018-06-06 08:01:43 +00:00
case mtfn , ok := <- this . callOnMainThread :
if ! ok {
log . Fatalf ( "Synchronisation channel closed unexpectedly" )
}
mtfn ( )
2018-06-03 04:39:45 +00:00
}
2018-06-03 03:27:50 +00:00
}
2018-06-03 04:39:45 +00:00
return nil // UNREACHABLE
}
func ( this * NTFServer ) HandleHubMessage ( msg upstreamMessage ) {
2018-06-03 06:51:59 +00:00
if this . verbose {
log . Printf ( "Hub: %#v" , msg )
}
2018-06-03 06:24:08 +00:00
switch msg . evt . EventType {
2018-06-04 07:17:14 +00:00
case libnmdc . EVENT_SYSTEM_MESSAGE_FROM_CONN , libnmdc . EVENT_SYSTEM_MESSAGE_FROM_HUB :
// This includes "want to register your nick?" and chat-catchup messages
2018-06-05 06:32:53 +00:00
// But it also includes /me messages
2018-06-05 06:41:19 +00:00
// First, remove system characters from the front (star, space)
systemMessage := strings . TrimLeft ( msg . evt . Message , ` * ` )
// Heuristic detect action messages if the first space-separated word is a known online user
2018-06-05 06:32:53 +00:00
isActionMessage := false
if conn , ok := this . conns [ msg . hubNick ] ; ok {
2018-06-05 06:41:19 +00:00
firstWord := strings . SplitN ( systemMessage , ` ` , 2 ) [ 0 ]
2018-06-05 06:32:53 +00:00
_ = conn . Users ( func ( umap * map [ string ] libnmdc . UserInfo ) error {
for knownHubNick , _ := range * umap {
if knownHubNick == firstWord {
isActionMessage = true
return nil
}
}
return nil
} )
}
if isActionMessage {
// Treat it as a full post
// Coalesce from multiple connections
2018-06-05 06:41:19 +00:00
if this . Coalesce ( "*" , systemMessage ) {
2018-06-05 06:32:53 +00:00
return // ignore - we heard this message already recently
}
// Display the message
2018-06-05 06:41:19 +00:00
htmlMsg := "<i>* " + html . EscapeString ( systemMessage ) + "</i>"
2018-06-05 06:32:53 +00:00
err := this . GroupChatSayHTML ( htmlMsg )
if err != nil {
log . Printf ( "Delivering action message to group chat: %s" , err . Error ( ) )
}
} else {
2018-06-05 06:41:19 +00:00
// Not an action message, just clerical notices
2018-06-05 06:32:53 +00:00
// Don't mirror them into telegram
log . Printf ( "Hub(%s): * %s" , msg . hubNick , msg . evt . Message )
}
2018-06-03 06:24:08 +00:00
2018-06-04 07:17:14 +00:00
case libnmdc . EVENT_CONNECTION_STATE_CHANGED :
2018-06-09 07:11:01 +00:00
log . Printf ( "Hub(%s): * Connection %s" , msg . hubNick , msg . evt . StateChange . String ( ) )
2018-06-04 07:17:14 +00:00
2018-06-03 06:24:08 +00:00
case libnmdc . EVENT_PRIVATE :
err := this . DirectMessageTelegramUser ( msg . telegramUserId , fmt . Sprintf ( "PM from user '%s': %s" , msg . evt . Nick , msg . evt . Message ) )
if err != nil {
log . Printf ( "Delivering PM to telegram user: %s" , err . Error ( ) )
}
case libnmdc . EVENT_PUBLIC :
2018-06-05 05:49:24 +00:00
for _ , ignoreNick := range this . config . HubIgnoreNicks {
if ignoreNick == msg . evt . Nick {
return // ignore
}
2018-06-03 06:24:08 +00:00
}
2018-06-03 06:49:14 +00:00
// Coalesce from multiple connections
if this . Coalesce ( msg . evt . Nick , msg . evt . Message ) {
return // ignore - we heard this message already recently
}
// Display the message
2018-06-03 06:24:08 +00:00
htmlMsg := "<b><" + html . EscapeString ( msg . evt . Nick ) + "></b> " + html . EscapeString ( msg . evt . Message )
err := this . GroupChatSayHTML ( htmlMsg )
if err != nil {
log . Printf ( "Delivering public message to group chat: %s" , err . Error ( ) )
}
2018-06-04 07:45:08 +00:00
case libnmdc . EVENT_BAD_LOGIN_FAILURE :
this . DirectMessageTelegramUser ( msg . telegramUserId , "The hub disconnected in a permanent way (login failure?). Consider re-registering with a different nick." )
this . kickAndDrop ( msg . telegramUserId )
2018-06-03 06:24:08 +00:00
case libnmdc . EVENT_USER_JOINED , libnmdc . EVENT_USER_PART , libnmdc . EVENT_USER_UPDATED_INFO , libnmdc . EVENT_USERCOMMAND , libnmdc . EVENT_DEBUG_MESSAGE , libnmdc . EVENT_HUBNAME_CHANGED :
// ignore
default :
log . Printf ( "Hub(%s): Unhandled(%d): %s" , msg . hubNick , msg . evt . EventType , msg . evt . Message )
}
2018-06-03 03:27:50 +00:00
}
func ( this * NTFServer ) HandleMessage ( update telegram . Update ) {
if update . Message == nil {
return
}
if this . IsSetupMode ( ) {
log . Printf ( "Message from '%s': '%s', chat ID '%d'\n" , update . Message . From . UserName , update . Message . Text , update . Message . Chat . ID )
} else if update . Message . Chat . ID == this . config . GroupChatID {
err := this . HandleGroupMessage ( update )
if err != nil {
log . Printf ( "Handling group message: %s" , err . Error ( ) )
}
} else if update . Message . Chat . IsPrivate ( ) {
err := this . HandleDirectMessage ( update )
if err != nil {
log . Printf ( "Handling private message: %s" , err . Error ( ) )
}
} else {
log . Printf ( "Message from unknown chat %d (not our supergroup, not a PM, ...)" , update . Message . Chat . ID )
}
2018-06-03 06:51:59 +00:00
if this . verbose {
fmt . Printf ( "%#v\n" , update . Message )
2018-06-03 03:27:50 +00:00
2018-06-03 06:51:59 +00:00
log . Printf ( "[%s] %s" , update . Message . From . UserName , update . Message . Text )
}
2018-06-03 03:27:50 +00:00
}
2018-06-03 06:24:08 +00:00
// kickAndDrop deregisters an account and kicks them from the group chat
func ( this * NTFServer ) kickAndDrop ( telegramUserId int64 ) {
// Hubnick
if hubNick , ok := this . config . KnownUsers [ telegramUserId ] ; ok {
// Close upstream connection (if any)
if conn , ok := this . conns [ hubNick ] ; ok {
delete ( this . conns , hubNick )
log . Printf ( "Disconnecting '%s' from hub" , hubNick )
conn . Disconnect ( )
}
// Deregister from known users
delete ( this . config . KnownUsers , telegramUserId )
err := this . config . Save ( this . configFile )
if err != nil {
log . Printf ( "Couldn't save changes when deregistering user: %s" , err . Error ( ) )
}
}
// Kick from telegram groupchat (if logged in)
_ , err := this . bot . KickChatMember ( telegram . KickChatMemberConfig {
ChatMemberConfig : telegram . ChatMemberConfig {
ChatID : this . config . GroupChatID ,
UserID : int ( telegramUserId ) ,
} ,
UntilDate : time . Now ( ) . Add ( 24 * time . Hour ) . Unix ( ) ,
} )
if err != nil {
log . Printf ( "Couldn't kick user from telegram group: %s" , err . Error ( ) )
}
}
// HandleTelegramUserParted processes a user leaving the groupchat, without deregistering their account
2018-06-03 04:39:45 +00:00
func ( this * NTFServer ) HandleTelegramUserParted ( telegramUserId int64 , update telegram . Update ) error {
delete ( this . config . GroupChatMembers , telegramUserId )
return this . config . Save ( this . configFile )
}
2018-06-03 06:24:08 +00:00
func ( this * NTFServer ) HandleTelegramUserJoined ( telegramUserId int64 , telegramDisplayName string , update telegram . Update ) error {
2018-06-03 04:39:45 +00:00
// If known, spawn the upstream connection; if unknown, kick them
hubNick , ok := this . config . KnownUsers [ telegramUserId ]
if ! ok {
2018-06-03 06:24:08 +00:00
log . Printf ( "Unexpected user '%s' (%d) joined the group chat, kicking..." , telegramDisplayName , telegramUserId )
this . kickAndDrop ( telegramUserId )
}
2018-06-03 04:39:45 +00:00
2018-06-03 06:24:08 +00:00
// Remember which users are currently joined
this . config . GroupChatMembers [ telegramUserId ] = telegramDisplayName
err := this . config . Save ( this . configFile )
if err != nil {
return err
2018-06-03 04:39:45 +00:00
}
// Spawn the upstream connection for this user
return this . LaunchUpstreamWorker ( telegramUserId , hubNick )
}
2018-06-03 03:27:50 +00:00
func ( this * NTFServer ) HandleGroupMessage ( update telegram . Update ) error {
// Joins: ????
if update . Message . NewChatMembers != nil && len ( * update . Message . NewChatMembers ) > 0 {
// Users joining
// Ensure that they have a valid user mapping
// Create upstream NMDC connection for them
2018-06-03 04:39:45 +00:00
for _ , joinedUser := range * update . Message . NewChatMembers {
2018-06-03 06:24:08 +00:00
err := this . HandleTelegramUserJoined ( int64 ( joinedUser . ID ) , joinedUser . String ( ) , update )
2018-06-03 04:39:45 +00:00
if err != nil {
log . Printf ( "Handling user join: %s" , err . Error ( ) )
}
}
return nil
2018-06-03 03:27:50 +00:00
}
if update . Message . LeftChatMember != nil {
// User parted
// Close upstream NMDC connection for them
2018-06-03 06:24:08 +00:00
log . Printf ( "Telegram user '%s' (%d) leaving group chat" , update . Message . LeftChatMember . String ( ) , update . Message . LeftChatMember . ID )
2018-06-03 04:39:45 +00:00
return this . HandleTelegramUserParted ( int64 ( update . Message . LeftChatMember . ID ) , update )
2018-06-03 03:27:50 +00:00
}
2018-06-06 08:01:43 +00:00
//
2018-06-03 06:24:08 +00:00
2018-06-06 08:01:43 +00:00
userID := int64 ( update . Message . From . ID )
2018-06-03 06:24:08 +00:00
2018-06-09 01:50:07 +00:00
if this . contentedMaxBytes > 0 {
// File upload types
// Audio
if update . Message . Audio != nil {
go func ( ) {
conUrl , err := this . ContentedUploadSync ( update . Message . Audio . FileID , int64 ( update . Message . Audio . FileSize ) ) // no thumbnail fallback available
this . uploadAsyncComplete ( userID , "audio" , conUrl , err ,
fmt . Sprintf ( "Audio '%s' duration %ds: %s" , update . Message . Audio . Title , update . Message . Audio . Duration , update . Message . Caption ) )
} ( )
}
// Document
if update . Message . Document != nil {
go func ( ) {
conUrl , err := this . ContentedUploadFallbackSync ( update . Message . Document . FileID , int64 ( update . Message . Document . FileSize ) , update . Message . Document . Thumbnail )
this . uploadAsyncComplete ( userID , "document" , conUrl , err , update . Message . Caption )
} ( )
}
// Photo
if update . Message . Photo != nil {
go func ( ) {
conUrl , err := this . ContentedUploadBestSync ( * update . Message . Photo )
this . uploadAsyncComplete ( userID , "photo" , conUrl , err , "" )
} ( )
}
2018-06-06 08:01:43 +00:00
// Sticker
2018-06-09 01:50:07 +00:00
if update . Message . Sticker != nil {
go func ( ) {
conUrl , err := this . ContentedUploadFallbackSync ( update . Message . Sticker . FileID , int64 ( update . Message . Sticker . FileSize ) , update . Message . Sticker . Thumbnail )
this . uploadAsyncComplete ( userID , "sticker" , conUrl , err , update . Message . Sticker . Emoji + " " + update . Message . Caption )
} ( )
}
// Video
if update . Message . Video != nil {
go func ( ) {
conUrl , err := this . ContentedUploadFallbackSync ( update . Message . Video . FileID , int64 ( update . Message . Video . FileSize ) , update . Message . Video . Thumbnail )
this . uploadAsyncComplete ( userID , "video" , conUrl , err , update . Message . Caption )
} ( )
}
// VideoNote
if update . Message . VideoNote != nil {
go func ( ) {
conUrl , err := this . ContentedUploadFallbackSync ( update . Message . VideoNote . FileID , int64 ( update . Message . VideoNote . FileSize ) , update . Message . VideoNote . Thumbnail )
this . uploadAsyncComplete ( userID , "videonote" , conUrl , err , update . Message . Caption )
} ( )
}
// Voice
if update . Message . Voice != nil {
go func ( ) {
conUrl , err := this . ContentedUploadSync ( update . Message . Voice . FileID , int64 ( update . Message . Voice . FileSize ) ) // no thumbnail fallback available
this . uploadAsyncComplete ( userID , "voiceclip" , conUrl , err , fmt . Sprintf ( "Voice clip (duration %ds): " , update . Message . Voice . Duration ) )
} ( )
}
}
if update . Message . Location != nil {
return this . HubSay ( userID , fmt . Sprintf (
"Latitude %f Longitude %f %s" ,
update . Message . Location . Latitude , update . Message . Location . Longitude , update . Message . Caption ) )
}
if update . Message . Venue != nil {
return this . HubSay ( userID , fmt . Sprintf (
"Venue %s - Address %s (Lat %f Long %f) %s" ,
update . Message . Venue . Title , update . Message . Venue . Address ,
update . Message . Venue . Location . Latitude , update . Message . Venue . Location . Longitude ,
update . Message . Caption ) )
2018-06-06 08:01:43 +00:00
}
if len ( update . Message . Text ) > 0 {
2018-06-03 06:24:08 +00:00
2018-06-04 04:54:10 +00:00
// Intercept some bot commands
2018-06-03 06:49:14 +00:00
2018-06-04 04:54:10 +00:00
if update . Message . Text == "/userlist" || update . Message . Text == "/userlist@" + this . botName {
// Display native userlist inside the groupchat
2018-06-06 08:01:43 +00:00
// Find the responsible user's upstream connection
hubNick , ok := this . config . KnownUsers [ userID ]
if ! ok {
return fmt . Errorf ( "Couldn't send public message for user '%d' unexpectedly missing hub nick!" , userID )
}
conn , ok := this . conns [ hubNick ]
if ! ok {
return fmt . Errorf ( "Couldn't send public message for user '%d' (%s) unexpectedly missing upstream connection!" , userID , hubNick )
}
2018-06-04 04:54:10 +00:00
usernames , err := this . getUserlistText ( conn )
if err != nil {
this . GroupChatSayHTML ( "<i>Can't get userlist for you (internal error)</i>" )
}
this . GroupChatSayHTML ( fmt . Sprintf ( "<i>Online users:</i> %s" , html . EscapeString ( usernames ) ) )
} else {
// Actual chat message
2018-06-05 06:07:03 +00:00
sendMsg := update . Message . Text
// Was it a reply to another message? If so, format it as "<OrigUser> OrigMessage // update text"
2018-06-05 06:16:50 +00:00
// That includes collapsing the original message onto a single line
2018-06-05 06:07:03 +00:00
if update . Message . ReplyToMessage != nil && len ( update . Message . ReplyToMessage . Text ) > 0 && update . Message . ReplyToMessage . From != nil {
origSenderId := int64 ( update . Message . ReplyToMessage . From . ID )
2018-06-05 06:16:50 +00:00
flatten := func ( s string ) string { return strings . Replace ( s , "\n" , " " , - 1 ) }
2018-06-05 06:07:03 +00:00
if origSenderNick , ok := this . config . KnownUsers [ origSenderId ] ; ok {
// Quoted messages from another hub user
2018-06-05 06:16:50 +00:00
sendMsg = fmt . Sprintf ( ` "<%s> %s" // %s ` , origSenderNick , flatten ( update . Message . ReplyToMessage . Text ) , sendMsg )
2018-06-05 06:07:03 +00:00
} else if origSenderId == int64 ( this . bot . Self . ID ) {
// Quoted messages from the hublink bot
2018-06-05 06:16:50 +00:00
sendMsg = fmt . Sprintf ( ` "%s" // %s ` , flatten ( update . Message . ReplyToMessage . Text ) , sendMsg ) // the username is already present in the plaintext
2018-06-05 06:07:03 +00:00
} else {
// No idea what was quoted. But it really was quoting something
// Paste it as-is but with some info in the logs for future cleanup
log . Printf ( "Quoting message '%#v' with unknown source" , update . Message . ReplyToMessage )
2018-06-05 06:16:50 +00:00
sendMsg = fmt . Sprintf ( ` "%s" // %s ` , flatten ( update . Message . ReplyToMessage . Text ) , sendMsg )
2018-06-05 06:07:03 +00:00
}
}
2018-06-04 04:54:10 +00:00
2018-06-06 08:01:43 +00:00
return this . HubSay ( userID , sendMsg )
2018-06-04 04:43:49 +00:00
}
2018-06-03 06:24:08 +00:00
}
// TODO probably a file/image upload???
// TODO support "editing messages" by re-sending them with a ** suffix
2018-06-06 08:01:43 +00:00
return nil
}
func ( this * NTFServer ) HubSay ( userID int64 , sendMsg string ) error {
// Find the responsible user's upstream connection
hubNick , ok := this . config . KnownUsers [ userID ]
if ! ok {
return fmt . Errorf ( "Couldn't send public message for user '%d' unexpectedly missing hub nick!" , userID )
}
conn , ok := this . conns [ hubNick ]
if ! ok {
return fmt . Errorf ( "Couldn't send public message for user '%d' (%s) unexpectedly missing upstream connection!" , userID , hubNick )
}
// Also add it to the coalesce buffer so that we don't replay it from someone else's NMDC connection
this . Coalesce ( hubNick , sendMsg )
// Submit to NMDC
err := conn . SayPublic ( sendMsg )
if err != nil {
log . Printf ( "Failed to deliver message '%s': %s" , sendMsg , err . Error ( ) )
this . GroupChatSayHTML ( fmt . Sprintf ( "<i>Couldn't sync message '%s' because: %s</i>" , html . EscapeString ( sendMsg ) , html . EscapeString ( err . Error ( ) ) ) )
}
2018-06-03 03:27:50 +00:00
return nil
}
2018-06-03 06:24:08 +00:00
func ( this * NTFServer ) ReplyTelegramUser ( userID int64 , str string , replyToMessageID int ) error {
chatId , ok := this . config . DirectMessageChats [ userID ]
if ! ok {
return fmt . Errorf ( "Can't send telegram message to user '%s': no DM chat known" , userID )
}
msg := telegram . NewMessage ( chatId , str )
if replyToMessageID != 0 {
msg . ReplyToMessageID = replyToMessageID
}
_ , err := this . bot . Send ( msg )
return err
}
func ( this * NTFServer ) DirectMessageTelegramUser ( userID int64 , str string ) error {
return this . ReplyTelegramUser ( userID , str , 0 )
}
func ( this * NTFServer ) GroupChatSayHTML ( str string ) error {
msg := telegram . NewMessage ( this . config . GroupChatID , str )
msg . ParseMode = telegram . ModeHTML
_ , err := this . bot . Send ( msg )
return err
}
2018-06-04 04:54:10 +00:00
func ( this * NTFServer ) getUserlistText ( conn * libnmdc . HubConnection ) ( string , error ) {
usernames := make ( [ ] string , 0 )
err := conn . Users ( func ( umap * map [ string ] libnmdc . UserInfo ) error {
for k , _ := range * umap {
usernames = append ( usernames , k )
}
return nil
} )
if err != nil {
log . Printf ( "Error retrieving userlist: %s" , err . Error ( ) )
return "" , err
}
sort . Strings ( usernames )
return strings . Join ( usernames , " " ) , nil
}