Files
mautrix-telegram/pkg/gotd/telegram/message/audio_example_test.go
T
2025-06-27 20:03:37 -07:00

64 lines
1.4 KiB
Go

package message_test
import (
"context"
"fmt"
"os"
"os/signal"
"github.com/go-faster/errors"
"go.mau.fi/mautrix-telegram/pkg/gotd/telegram"
"go.mau.fi/mautrix-telegram/pkg/gotd/telegram/message"
"go.mau.fi/mautrix-telegram/pkg/gotd/telegram/uploader"
"go.mau.fi/mautrix-telegram/pkg/gotd/tg"
)
func sendAudio(ctx context.Context) error {
client, err := telegram.ClientFromEnvironment(telegram.Options{})
if err != nil {
return err
}
return client.Run(ctx, func(ctx context.Context) error {
raw := tg.NewClient(client)
// Upload file.
f, err := uploader.NewUploader(raw).FromPath(ctx, "vsyo idyot po planu.mp3", "")
if err != nil {
return errors.Wrap(err, "upload")
}
sender := message.NewSender(raw)
r := sender.Resolve("@durovschat")
// Sends audio to the @durovschat.
if _, err := r.Audio(ctx, f); err != nil {
return err
}
// Sends audio with title to the @durovschat.
if _, err := r.Media(ctx, message.Audio(f).
Performer("Yegor Letov").
Title("Everything is going according to plan")); err != nil {
return err
}
// Sends voice message to the @durovschat.
if _, err := r.Voice(ctx, f); err != nil {
return err
}
return nil
})
}
func ExampleAudio() {
ctx, cancel := signal.NotifyContext(context.Background(), os.Interrupt)
defer cancel()
if err := sendAudio(ctx); err != nil {
_, _ = fmt.Fprintf(os.Stderr, "%+v\n", err)
os.Exit(2)
}
}