1
bot/examples/send_media_group/main.go
mbehboodian 7521fc90f0
Improve inline_keyboard example app (#31)
* improve inline_keyboard example app

Signed-off-by: mbehboodian <29199390+xeptore@users.noreply.github.com>

* add examples bot instantiation error handling

Signed-off-by: mbehboodian <29199390+xeptore@users.noreply.github.com>

---------

Signed-off-by: mbehboodian <29199390+xeptore@users.noreply.github.com>
2023-04-26 12:00:17 +03:00

69 lines
1.4 KiB
Go

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)
}