forked from jheuel/pollrBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
186 lines (157 loc) · 4.3 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
package main
import (
"flag"
"fmt"
"os"
"strconv"
"time"
tg "github.com/semog/go-bot-api/v5"
"k8s.io/klog"
_ "github.com/semog/go-sqldb"
)
const probedbFilename = "probes.db"
func main() {
token := flag.String("token", "Ask @BotFather", "telegram bot token")
debug := flag.Bool("debug", false, "Show debug information")
flag.Parse()
klog.InitFlags(nil)
if *token == "Ask @BotFather" {
klog.Fatal("token flag required. Go ask @BotFather.")
os.Exit(2)
}
klog.Info("Connecting...")
tg.SetLogger(&klogAdapter{})
bot, err := tg.NewBotAPI(*token)
if err != nil {
klog.Fatal(fmt.Fprintf(os.Stderr, "Could not connect to bot: %v\n", err))
os.Exit(2)
}
bot.Debug = *debug
if err := run(bot); err != nil {
fmt.Fprintf(os.Stderr, "%v\n", err)
os.Exit(2)
}
}
var pollsToUpdateConstRate = make(chan int, 200)
var pollsToUpdate = newUniqueChan()
var pollsToDeleteConstRate = make(chan int, 200)
var pollsToDelete = newUniqueChan()
func newUniqueChan() *uniqueChan {
return &uniqueChan{
C: make(chan int, 10000),
ids: make(map[int]struct{})}
}
type uniqueChan struct {
C chan int
ids map[int]struct{}
}
func (u *uniqueChan) enqueue(id int) {
u.ids[id] = struct{}{}
u.C <- id
}
func (u *uniqueChan) dequeue() int {
id := <-u.C
delete(u.ids, id)
return id
}
func run(bot *tg.BotAPI) error {
// fill update channel with constant rate
go func() {
for {
time.Sleep(900 * time.Millisecond)
pollID := pollsToUpdate.dequeue()
pollsToUpdateConstRate <- pollID
}
}()
go func() {
for {
time.Sleep(900 * time.Millisecond)
pollID := pollsToDelete.dequeue()
pollsToDeleteConstRate <- pollID
}
}()
var st Store = newSQLStore(probedbFilename)
defer st.Close()
klog.Infof("Authorized on account %s", bot.Self.UserName)
u := tg.NewUpdate(st.GetUpdateOffset())
u.Timeout = 60
// Reload periodically to get a fresh connection to the Telegram servers.
reloadTimer := time.NewTimer(20 * time.Hour)
// Start the update loop
updates := bot.GetUpdatesChan(u)
for {
select {
case <-reloadTimer.C:
os.Exit(69)
case updatePollID := <-pollsToUpdateConstRate:
klog.Infof("Updating poll #%d\n", updatePollID)
err := updatePollMessages(bot, updatePollID, st)
if err != nil {
klog.Infof("Could not update poll #%d: %v", updatePollID, err)
}
case deletePollID := <-pollsToDeleteConstRate:
klog.Infof("Deleting poll #%d\n", deletePollID)
err := deletePollMessages(bot, deletePollID, st)
if err != nil {
klog.Infof("Could not delete poll #%d messages: %v", deletePollID, err)
}
case update := <-updates:
defer st.SaveUpdateOffset(update.UpdateID + 1)
// INLINE QUERIES
if update.InlineQuery != nil {
klog.Infof("InlineQuery from [%s]: %s", update.InlineQuery.From.UserName, update.InlineQuery.Query)
err := st.SaveUser(update.InlineQuery.From)
if err != nil {
klog.Infof("could not save user: %v", err)
continue
}
err = handleInlineQuery(bot, update, st)
if err != nil {
klog.Infof("could not handle inline query: %v", err)
}
continue
}
// poll was inserted into a chat
if update.ChosenInlineResult != nil {
pollID, err := strconv.Atoi(update.ChosenInlineResult.ResultID)
if err != nil {
return fmt.Errorf("could not parse pollID: %v", err)
}
err = st.AddInlineMsgToPoll(pollID, update.ChosenInlineResult.InlineMessageID)
if err != nil {
return fmt.Errorf("could not add inline message to poll: %v", err)
}
klog.Infof("Added poll #%d to chat by %s", pollID, update.CallbackQuery.From.UserName)
continue
}
// CALLBACK QUERIES
if update.CallbackQuery != nil {
err := st.SaveUser(update.CallbackQuery.From)
if err != nil {
klog.Infof("could not save user: %v", err)
continue
}
err = handleCallbackQuery(bot, update, st)
if err != nil {
klog.Infof("could not handle callback query: %v", err)
}
continue
}
if update.Message == nil {
continue
}
err := st.SaveUser(update.Message.From)
if err != nil {
klog.Infof("could not save user: %v", err)
continue
}
// Messages
klog.Infof("Message from [%s] %s", update.Message.From.UserName, update.Message.Text)
// Conversations
err = handleDialog(bot, update, st)
if err != nil {
klog.Infof("could not handle dialog: %v", err)
}
}
}
}