-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbot.go
More file actions
274 lines (226 loc) · 6.11 KB
/
Copy pathbot.go
File metadata and controls
274 lines (226 loc) · 6.11 KB
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
package telego
import (
"bytes"
"encoding/json"
"fmt"
"log"
"net/http"
"net/url"
"strings"
"time"
)
type Bot struct {
Token string
BaseURL string
Offset int
Client *http.Client
Handlers map[string]func(*Context)
MessageHandlers []func(*Context) bool
CallbackHandlers map[string]func(*Context) bool
Logger *log.Logger
Debug bool
}
func NewBot(token string) *Bot {
return &Bot{
Token: token,
BaseURL: fmt.Sprintf("https://api.telegram.org/bot%s", token),
Client: &http.Client{Timeout: 10 * time.Second},
Handlers: make(map[string]func(*Context)),
MessageHandlers: make([]func(*Context) bool, 0),
CallbackHandlers: make(map[string]func(*Context) bool),
Logger: log.New(log.Writer(), "[telego] ", log.LstdFlags),
Debug: false,
}
}
func (b *Bot) HandleCommand(cmd string, handler func(*Context)) {
b.Handlers[cmd] = handler
}
func (b *Bot) HandleMessage(handler func(*Context) bool) {
b.MessageHandlers = append(b.MessageHandlers, handler)
}
func (b *Bot) HandleCallback(data string, handler func(*Context) bool) {
b.CallbackHandlers[data] = handler
}
func (b *Bot) Start() {
b.Logger.Println("Bot başlatılıyor...")
for {
updates, err := b.getUpdates()
if err != nil {
b.Logger.Println("Polling hatası:", err)
time.Sleep(3 * time.Second)
continue
}
for _, update := range updates {
if update.Message != nil {
b.handleMessage(update.Message)
}
if update.CallbackQuery != nil {
b.handleCallback(update.CallbackQuery)
}
}
}
}
func (b *Bot) handleMessage(msg *Message) {
ctx := &Context{
Bot: b,
ChatID: msg.Chat.ID,
Message: msg,
}
if b.Debug {
b.Logger.Printf("Mesaj alındı [%d]: %s", msg.Chat.ID, msg.Text)
}
// Komut kontrolü
if strings.HasPrefix(msg.Text, "/") {
parts := strings.Fields(msg.Text)
cmd := parts[0]
ctx.Args = parts[1:]
if handler, ok := b.Handlers[cmd]; ok {
handler(ctx)
return
}
}
// Genel mesaj handler'ları
for _, handler := range b.MessageHandlers {
if handler(ctx) {
return // Handler True dönürürse diğerleri çalışmasın
}
}
}
func (b *Bot) handleCallback(cb *CallbackQuery) {
if handler, ok := b.CallbackHandlers[cb.Data]; ok {
ctx := &Context{
Bot: b,
CallbackQuery: cb,
ChatID: cb.Message.Chat.ID,
Message: cb.Message,
}
if b.Debug {
b.Logger.Printf("Callback alındı [%d]: %s", cb.Message.Chat.ID, cb.Data)
}
handler(ctx)
}
}
func (b *Bot) getUpdates() ([]Update, error) {
url := fmt.Sprintf("%s/getUpdates?offset=%d", b.BaseURL, b.Offset)
resp, err := b.Client.Get(url)
if err != nil {
return nil, err
}
defer resp.Body.Close()
var result struct {
OK bool `json:"ok"`
Result []Update `json:"result"`
}
err = json.NewDecoder(resp.Body).Decode(&result)
if err != nil {
return nil, err
}
if len(result.Result) > 0 {
b.Offset = result.Result[len(result.Result)-1].UpdateID + 1
}
return result.Result, nil
}
// ============ Public API Methods ============
// SendMessage bot tarafından bir sohbete metin mesajı gönderir
func (b *Bot) SendMessage(chatID int64, text string) error {
endpoint := fmt.Sprintf("%s/sendMessage", b.BaseURL)
data := url.Values{}
data.Set("chat_id", fmt.Sprintf("%d", chatID))
data.Set("text", text)
resp, err := b.Client.PostForm(endpoint, data)
if err != nil {
return err
}
defer resp.Body.Close()
if resp.StatusCode != 200 {
return fmt.Errorf("telegram API hatası: %d", resp.StatusCode)
}
return nil
}
// SendMessageWithKeyboard inline keyboard ile mesaj gönderir
func (b *Bot) SendMessageWithKeyboard(chatID int64, text string, keyboard *InlineKeyboardMarkup) error {
endpoint := fmt.Sprintf("%s/sendMessage", b.BaseURL)
payload := map[string]interface{}{
"chat_id": chatID,
"text": text,
"reply_markup": keyboard,
}
jsonData, err := json.Marshal(payload)
if err != nil {
return err
}
resp, err := b.Client.Post(endpoint, "application/json", bytes.NewBuffer(jsonData))
if err != nil {
return err
}
defer resp.Body.Close()
if resp.StatusCode != 200 {
return fmt.Errorf("telegram API hatası: %d", resp.StatusCode)
}
return nil
}
// EditMessage bir mesajı düzenler
func (b *Bot) EditMessage(chatID int64, messageID int, text string) error {
endpoint := fmt.Sprintf("%s/editMessageText", b.BaseURL)
payload := map[string]interface{}{
"chat_id": chatID,
"message_id": messageID,
"text": text,
}
jsonData, err := json.Marshal(payload)
if err != nil {
return err
}
resp, err := b.Client.Post(endpoint, "application/json", bytes.NewBuffer(jsonData))
if err != nil {
return err
}
defer resp.Body.Close()
if resp.StatusCode != 200 {
return fmt.Errorf("telegram API hatası: %d", resp.StatusCode)
}
return nil
}
// DeleteMessage bir mesajı siler
func (b *Bot) DeleteMessage(chatID int64, messageID int) error {
endpoint := fmt.Sprintf("%s/deleteMessage", b.BaseURL)
data := url.Values{}
data.Set("chat_id", fmt.Sprintf("%d", chatID))
data.Set("message_id", fmt.Sprintf("%d", messageID))
resp, err := b.Client.PostForm(endpoint, data)
if err != nil {
return err
}
defer resp.Body.Close()
if resp.StatusCode != 200 {
return fmt.Errorf("telegram API hatası: %d", resp.StatusCode)
}
return nil
}
// StartWebhook botu webhook modunda başlatır
func (b *Bot) StartWebhook(addr string, path string) error {
http.HandleFunc(path, b.webhookHandler)
b.Logger.Printf("Webhook server başlatılıyor %s%s", addr, path)
return http.ListenAndServe(addr, nil)
}
func (b *Bot) webhookHandler(w http.ResponseWriter, r *http.Request) {
if r.Method != http.MethodPost {
w.WriteHeader(http.StatusMethodNotAllowed)
return
}
var update Update
err := json.NewDecoder(r.Body).Decode(&update)
if err != nil {
b.Logger.Println("Webhook decode hatası:", err)
w.WriteHeader(http.StatusBadRequest)
return
}
// Mevcut handler sistemine bağlama
if update.Message != nil {
b.handleMessage(update.Message)
}
if update.CallbackQuery != nil {
b.handleCallback(update.CallbackQuery)
}
w.WriteHeader(http.StatusOK)
}