-
Notifications
You must be signed in to change notification settings - Fork 68
/
main.go
68 lines (54 loc) · 1.43 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
package main
import (
"bytes"
"context"
"embed"
"os"
"os/signal"
"github.com/go-telegram/bot"
"github.com/go-telegram/bot/models"
)
// Send any text message to the bot after the bot has been started
func main() {
ctx, cancel := signal.NotifyContext(context.Background(), os.Interrupt)
defer cancel()
opts := []bot.Option{
bot.WithDefaultHandler(handler),
}
b, err := bot.New(os.Getenv("EXAMPLE_TELEGRAM_BOT_TOKEN"), opts...)
if nil != err {
// panics for the sake of simplicity.
// you should handle this error properly in your code.
panic(err)
}
b.Start(ctx)
}
//go:embed images
var images embed.FS
func handler(ctx context.Context, b *bot.Bot, update *models.Update) {
fileDataFacebook, _ := images.ReadFile("images/facebook.png")
fileDataYoutube, _ := images.ReadFile("images/youtube.png")
media1 := &models.InputMediaPhoto{
Media: "https://telegram.org/img/t_logo.png",
Caption: "Telegram Logo",
}
media2 := &models.InputMediaPhoto{
Media: "attach://facebook.png",
Caption: "Facebook Logo",
MediaAttachment: bytes.NewReader(fileDataFacebook),
}
media3 := &models.InputMediaPhoto{
Media: "attach://youtube.png",
Caption: "Youtube Logo",
MediaAttachment: bytes.NewReader(fileDataYoutube),
}
params := &bot.SendMediaGroupParams{
ChatID: update.Message.Chat.ID,
Media: []models.InputMedia{
media1,
media2,
media3,
},
}
b.SendMediaGroup(ctx, params)
}