Compare commits
46 Commits
v0.4.1
...
v1.0.0-bet
| Author | SHA1 | Date | |
|---|---|---|---|
|
b1b0cbdfbd
|
|||
|
7e12e0a9f9
|
|||
|
8b9a974da9
|
|||
|
4dc172a3b5
|
|||
|
f42d47af53
|
|||
|
9895edf966
|
|||
|
6cf3355a36
|
|||
|
fa7a296a66
|
|||
| 7101aba548 | |||
| 2de46a27c8 | |||
| ae7426c36a | |||
| 61562e8a3b | |||
|
a84e24ff25
|
|||
|
c0a26024f4
|
|||
|
786da652e6
|
|||
|
28ec2b7ca9
|
|||
|
da122a3be4
|
|||
|
1bf7499496
|
|||
|
7b9292557e
|
|||
|
466093e39b
|
|||
|
0e0f8a0813
|
|||
|
d84b0a1b55
|
|||
|
434638a61d
|
|||
|
c2909b4cfb
|
|||
|
746847cf61
|
|||
|
b2bda02c0f
|
|||
| bb51a0ecb1 | |||
|
4527dd661a
|
|||
|
4129b8e688
|
|||
|
12883f428e
|
|||
|
f29ef979bf
|
|||
|
9ef9a240a4
|
|||
|
3912beefac
|
|||
|
ece131c14a
|
|||
|
6c989b2cc8
|
|||
| a5ca836fa4 | |||
| f2e600e0a9 | |||
|
c4b827fb31
|
|||
|
2a030aa0d8
|
|||
|
f2d85b848f
|
|||
|
7ac293dd38
|
|||
|
ef78c5d9b4
|
|||
|
a04375efbd
|
|||
|
c1bdc2fdf6
|
|||
|
83dca1ab39
|
|||
|
2cc2f96f02
|
15
Makefile
Normal file
15
Makefile
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
# Проверка наличия golangci-lint
|
||||||
|
GO_LINT := $(shell command -v golangci-lint 2>/dev/null)
|
||||||
|
|
||||||
|
# Цель: запуск всех проверок кода
|
||||||
|
check:
|
||||||
|
@echo "🔍 Running code checks..."
|
||||||
|
@go mod tidy -v
|
||||||
|
@go vet ./...
|
||||||
|
@if [ -n "$(GO_LINT)" ]; then \
|
||||||
|
echo "✅ golangci-lint found, running..." && \
|
||||||
|
golangci-lint run --timeout=5m --verbose; \
|
||||||
|
else \
|
||||||
|
echo "⚠️ golangci-lint not installed. Install with: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.57.2"; \
|
||||||
|
fi
|
||||||
|
@go test -race -v ./... 2>/dev/null || echo "⚠️ Tests skipped or failed (run manually with 'go test -race ./...')"
|
||||||
91
api.go
91
api.go
@@ -1,91 +0,0 @@
|
|||||||
package laniakea
|
|
||||||
|
|
||||||
import (
|
|
||||||
"bytes"
|
|
||||||
"encoding/json"
|
|
||||||
"fmt"
|
|
||||||
"io"
|
|
||||||
"net/http"
|
|
||||||
"strings"
|
|
||||||
|
|
||||||
"git.nix13.pw/scuroneko/slog"
|
|
||||||
)
|
|
||||||
|
|
||||||
type Api struct {
|
|
||||||
token string
|
|
||||||
logger *slog.Logger
|
|
||||||
}
|
|
||||||
|
|
||||||
func NewAPI(token string) *Api {
|
|
||||||
l := slog.CreateLogger().Level(GetLoggerLevel()).Prefix("API")
|
|
||||||
l.AddWriter(l.CreateJsonStdoutWriter())
|
|
||||||
return &Api{token, l}
|
|
||||||
}
|
|
||||||
func (api *Api) CloseApi() error {
|
|
||||||
return api.logger.Close()
|
|
||||||
}
|
|
||||||
|
|
||||||
type ApiResponse[R any] struct {
|
|
||||||
Ok bool `json:"ok"`
|
|
||||||
Description string `json:"description,omitempty"`
|
|
||||||
Result R `json:"result,omitempty"`
|
|
||||||
ErrorCode int `json:"error_code,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type TelegramRequest[R, P any] struct {
|
|
||||||
method string
|
|
||||||
params P
|
|
||||||
}
|
|
||||||
|
|
||||||
func NewRequest[R, P any](method string, params P) TelegramRequest[R, P] {
|
|
||||||
return TelegramRequest[R, P]{method: method, params: params}
|
|
||||||
}
|
|
||||||
func (r TelegramRequest[R, P]) Do(api *Api) (*R, error) {
|
|
||||||
buf := bytes.NewBuffer(nil)
|
|
||||||
err := json.NewEncoder(buf).Encode(r.params)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
u := fmt.Sprintf("https://api.telegram.org/bot%s/%s", api.token, r.method)
|
|
||||||
if api.logger != nil {
|
|
||||||
api.logger.Debugln(strings.ReplaceAll(fmt.Sprintf(
|
|
||||||
"POST %s %s", u, buf.String(),
|
|
||||||
), api.token, "<TOKEN>"))
|
|
||||||
}
|
|
||||||
|
|
||||||
res, err := http.Post(u, "application/json", buf)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
defer res.Body.Close()
|
|
||||||
data, err := io.ReadAll(res.Body)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
if api.logger != nil {
|
|
||||||
api.logger.Debugln(fmt.Sprintf("RES %s %s", r.method, string(data)))
|
|
||||||
}
|
|
||||||
|
|
||||||
response := new(ApiResponse[R])
|
|
||||||
err = json.Unmarshal(data, &response)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
if !response.Ok {
|
|
||||||
return nil, fmt.Errorf("[%d] %s", response.ErrorCode, response.Description)
|
|
||||||
}
|
|
||||||
return &response.Result, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (b *Bot) GetFileByLink(link string) ([]byte, error) {
|
|
||||||
u := fmt.Sprintf("https://api.telegram.org/file/bot%s/%s", b.token, link)
|
|
||||||
res, err := http.Get(u)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
defer res.Body.Close()
|
|
||||||
return io.ReadAll(res.Body)
|
|
||||||
}
|
|
||||||
762
bot.go
762
bot.go
@@ -1,108 +1,329 @@
|
|||||||
|
// Package laniakea provides a modular, extensible framework for building scalable
|
||||||
|
// Telegram bots with support for plugins, middleware, localization, draft messages,
|
||||||
|
// rate limiting, structured logging, and dependency injection.
|
||||||
|
//
|
||||||
|
// The framework is designed around a fluent API for configuration and separation of concerns:
|
||||||
|
//
|
||||||
|
// - Plugins: Handle specific commands or events (e.g., /start, /help)
|
||||||
|
// - Middleware: Intercept and modify updates before plugins run (auth, logging, validation)
|
||||||
|
// - Runners: Background goroutines for cleanup, cron jobs, or monitoring
|
||||||
|
// - DraftProvider: Safely build and resume multi-step messages
|
||||||
|
// - L10n: Multi-language support via key-based translation
|
||||||
|
// - RateLimiter: Enforces Telegram API limits to avoid bans
|
||||||
|
// - Structured Logging: JSON stdout + optional file output with request-level tracing
|
||||||
|
// - Dependency Injection: Inject custom database contexts (e.g., *gorm.DB, *sql.DB)
|
||||||
|
//
|
||||||
|
// Example usage:
|
||||||
|
//
|
||||||
|
// bot := laniakea.NewBot[mydb.DBContext](laniakea.LoadOptsFromEnv()).
|
||||||
|
// DatabaseContext(&myDB).
|
||||||
|
// AddUpdateType(tgapi.UpdateTypeMessage).
|
||||||
|
// AddPrefixes("/", "!").
|
||||||
|
// AddPlugins(&startPlugin, &helpPlugin).
|
||||||
|
// AddMiddleware(&authMiddleware, &logMiddleware).
|
||||||
|
// AddRunner(&cleanupRunner).
|
||||||
|
// AddL10n(l10n.New())
|
||||||
|
//
|
||||||
|
// go bot.Run()
|
||||||
|
// <-ctx.Done() // wait for shutdown signal
|
||||||
|
//
|
||||||
|
// All methods are thread-safe except direct field access. Use provided accessors
|
||||||
|
// (e.g., GetDBContext, SetUpdateOffset) for safe concurrent access.
|
||||||
package laniakea
|
package laniakea
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
"log"
|
|
||||||
"os"
|
"os"
|
||||||
"sort"
|
"sort"
|
||||||
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"git.nix13.pw/scuroneko/extypes"
|
"git.nix13.pw/scuroneko/extypes"
|
||||||
|
"git.nix13.pw/scuroneko/laniakea/tgapi"
|
||||||
|
"git.nix13.pw/scuroneko/laniakea/utils"
|
||||||
"git.nix13.pw/scuroneko/slog"
|
"git.nix13.pw/scuroneko/slog"
|
||||||
"github.com/redis/go-redis/v9"
|
"github.com/alitto/pond/v2"
|
||||||
"github.com/vinovest/sqlx"
|
|
||||||
"go.mongodb.org/mongo-driver/v2/mongo"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type ParseMode string
|
// BotOpts holds configuration options for initializing a Bot.
|
||||||
|
//
|
||||||
|
// Values are loaded from environment variables via LoadOptsFromEnv().
|
||||||
|
// Use NewOpts() to create a zero-value struct and set fields manually.
|
||||||
|
type BotOpts struct {
|
||||||
|
// Token is the Telegram bot token (required).
|
||||||
|
Token string
|
||||||
|
|
||||||
const (
|
// UpdateTypes is a semicolon-separated list of update types to listen for.
|
||||||
ParseMDV2 ParseMode = "MarkdownV2"
|
// Example: "message;edited_message;callback_query"
|
||||||
ParseHTML ParseMode = "HTML"
|
// Defaults to empty (Telegram will return all types).
|
||||||
ParseMD ParseMode = "Markdown"
|
UpdateTypes []string
|
||||||
)
|
|
||||||
|
|
||||||
type Bot struct {
|
// Debug enables debug-level logging.
|
||||||
token string
|
Debug bool
|
||||||
debug bool
|
|
||||||
errorTemplate string
|
|
||||||
|
|
||||||
logger *slog.Logger
|
// ErrorTemplate is the format string used to wrap error messages sent to users.
|
||||||
requestLogger *slog.Logger
|
// Use "%s" to insert the actual error. Example: "❌ Error: %s"
|
||||||
|
ErrorTemplate string
|
||||||
|
|
||||||
plugins []Plugin
|
// Prefixes is a list of command prefixes (e.g., ["/", "!"]).
|
||||||
middlewares []Middleware
|
// Defaults to ["/"] if not set via environment.
|
||||||
prefixes []string
|
Prefixes []string
|
||||||
runners []Runner
|
|
||||||
|
|
||||||
dbContext *DatabaseContext
|
// LoggerBasePath is the directory where log files are written.
|
||||||
api *Api
|
// Defaults to "./".
|
||||||
|
LoggerBasePath string
|
||||||
|
|
||||||
dbWriterRequested extypes.Slice[*slog.Logger]
|
// UseRequestLogger enables detailed logging of all Telegram API requests.
|
||||||
|
|
||||||
updateOffset int
|
|
||||||
updateTypes []string
|
|
||||||
updateQueue *extypes.Queue[*Update]
|
|
||||||
}
|
|
||||||
|
|
||||||
type BotSettings struct {
|
|
||||||
Token string
|
|
||||||
Debug bool
|
|
||||||
ErrorTemplate string
|
|
||||||
Prefixes []string
|
|
||||||
UpdateTypes []string
|
|
||||||
LoggerBasePath string
|
|
||||||
UseRequestLogger bool
|
UseRequestLogger bool
|
||||||
WriteToFile bool
|
|
||||||
|
// WriteToFile enables writing logs to files (main.log and requests.log).
|
||||||
|
WriteToFile bool
|
||||||
|
|
||||||
|
// UseTestServer uses Telegram's test server (https://api.test.telegram.org).
|
||||||
|
UseTestServer bool
|
||||||
|
|
||||||
|
// APIUrl overrides the default Telegram API endpoint (useful for proxies or self-hosted).
|
||||||
|
APIUrl string
|
||||||
|
|
||||||
|
// RateLimit is the maximum number of API requests per second.
|
||||||
|
// Telegram allows up to 30 req/s for most bots. Defaults to 30.
|
||||||
|
RateLimit int
|
||||||
|
|
||||||
|
// DropRLOverflow drops incoming updates when rate limit is exceeded instead of queuing.
|
||||||
|
// Use this to prioritize responsiveness over reliability.
|
||||||
|
DropRLOverflow bool
|
||||||
}
|
}
|
||||||
|
|
||||||
func LoadSettingsFromEnv() *BotSettings {
|
// NewOpts returns a new BotOpts with zero values.
|
||||||
return &BotSettings{
|
func NewOpts() *BotOpts { return new(BotOpts) }
|
||||||
Token: os.Getenv("TG_TOKEN"),
|
|
||||||
Debug: os.Getenv("DEBUG") == "true",
|
// LoadOptsFromEnv loads BotOpts from environment variables.
|
||||||
ErrorTemplate: os.Getenv("ERROR_TEMPLATE"),
|
//
|
||||||
Prefixes: LoadPrefixesFromEnv(),
|
// Environment variables:
|
||||||
UpdateTypes: strings.Split(os.Getenv("UPDATE_TYPES"), ";"),
|
// - TG_TOKEN: Bot token (required)
|
||||||
|
// - UPDATE_TYPES: semicolon-separated update types (e.g., "message;callback_query")
|
||||||
|
// - DEBUG: "true" to enable debug logging
|
||||||
|
// - ERROR_TEMPLATE: format string for error messages (e.g., "❌ %s")
|
||||||
|
// - PREFIXES: semicolon-separated prefixes (e.g., "/;!bot")
|
||||||
|
// - LOGGER_BASE_PATH: directory for log files (default: "./")
|
||||||
|
// - USE_REQ_LOG: "true" to enable request logging
|
||||||
|
// - WRITE_TO_FILE: "true" to write logs to files
|
||||||
|
// - USE_TEST_SERVER: "true" to use Telegram test server
|
||||||
|
// - API_URL: custom API endpoint
|
||||||
|
// - RATE_LIMIT: max requests per second (default: 30)
|
||||||
|
// - DROP_RL_OVERFLOW: "true" to drop updates on rate limit overflow
|
||||||
|
//
|
||||||
|
// Returns a populated BotOpts. If TG_TOKEN is missing, behavior is undefined.
|
||||||
|
func LoadOptsFromEnv() *BotOpts {
|
||||||
|
rateLimit := 30
|
||||||
|
if rl := os.Getenv("RATE_LIMIT"); rl != "" {
|
||||||
|
if n, err := strconv.Atoi(rl); err == nil {
|
||||||
|
rateLimit = n
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return &BotOpts{
|
||||||
|
Token: os.Getenv("TG_TOKEN"),
|
||||||
|
UpdateTypes: strings.Split(os.Getenv("UPDATE_TYPES"), ";"),
|
||||||
|
|
||||||
|
Debug: os.Getenv("DEBUG") == "true",
|
||||||
|
ErrorTemplate: os.Getenv("ERROR_TEMPLATE"),
|
||||||
|
Prefixes: LoadPrefixesFromEnv(),
|
||||||
|
|
||||||
|
LoggerBasePath: os.Getenv("LOGGER_BASE_PATH"),
|
||||||
UseRequestLogger: os.Getenv("USE_REQ_LOG") == "true",
|
UseRequestLogger: os.Getenv("USE_REQ_LOG") == "true",
|
||||||
WriteToFile: os.Getenv("WRITE_TO_FILE") == "true",
|
WriteToFile: os.Getenv("WRITE_TO_FILE") == "true",
|
||||||
|
|
||||||
|
UseTestServer: os.Getenv("USE_TEST_SERVER") == "true",
|
||||||
|
APIUrl: os.Getenv("API_URL"),
|
||||||
|
|
||||||
|
RateLimit: rateLimit,
|
||||||
|
DropRLOverflow: os.Getenv("DROP_RL_OVERFLOW") == "true",
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// LoadPrefixesFromEnv returns the PREFIXES environment variable split by semicolon.
|
||||||
|
// Defaults to ["/"] if not set.
|
||||||
func LoadPrefixesFromEnv() []string {
|
func LoadPrefixesFromEnv() []string {
|
||||||
prefixesS, exists := os.LookupEnv("PREFIXES")
|
prefixesS, exists := os.LookupEnv("PREFIXES")
|
||||||
if !exists {
|
if !exists {
|
||||||
return []string{"!"}
|
return []string{"/"}
|
||||||
}
|
}
|
||||||
return strings.Split(prefixesS, ";")
|
return strings.Split(prefixesS, ";")
|
||||||
}
|
}
|
||||||
func NewBot(settings *BotSettings) *Bot {
|
|
||||||
updateQueue := extypes.CreateQueue[*Update](256)
|
|
||||||
api := NewAPI(settings.Token)
|
|
||||||
bot := &Bot{
|
|
||||||
updateOffset: 0, plugins: make([]Plugin, 0), debug: settings.Debug, errorTemplate: "%s",
|
|
||||||
prefixes: settings.Prefixes, updateTypes: make([]string, 0), runners: make([]Runner, 0),
|
|
||||||
updateQueue: updateQueue, api: api, dbWriterRequested: make([]*slog.Logger, 0),
|
|
||||||
token: settings.Token,
|
|
||||||
}
|
|
||||||
bot.dbWriterRequested = bot.dbWriterRequested.Push(api.logger)
|
|
||||||
|
|
||||||
if len(settings.ErrorTemplate) > 0 {
|
// DbContext is an interface representing the application's database context.
|
||||||
bot.errorTemplate = settings.ErrorTemplate
|
// It is injected into plugins and middleware via Bot.DatabaseContext().
|
||||||
}
|
//
|
||||||
if len(settings.LoggerBasePath) == 0 {
|
// Example:
|
||||||
settings.LoggerBasePath = "./"
|
//
|
||||||
|
// type MyDB struct { ... }
|
||||||
|
// bot := NewBot[MyDB](opts).DatabaseContext(&myDB)
|
||||||
|
//
|
||||||
|
// Use NoDB if no database is needed.
|
||||||
|
type DbContext interface{}
|
||||||
|
|
||||||
|
// NoDB is a placeholder type for bots that do not use a database.
|
||||||
|
// Use Bot[NoDB] to indicate no dependency injection is required.
|
||||||
|
type NoDB struct{ DbContext }
|
||||||
|
|
||||||
|
// Bot is the core Telegram bot instance.
|
||||||
|
//
|
||||||
|
// Manages:
|
||||||
|
// - API communication via tgapi
|
||||||
|
// - Update processing pipeline (middleware → plugins)
|
||||||
|
// - Background runners
|
||||||
|
// - Logging and rate limiting
|
||||||
|
// - Localization and draft message support
|
||||||
|
//
|
||||||
|
// All methods are safe for concurrent use. Direct field access is not recommended.
|
||||||
|
type Bot[T DbContext] struct {
|
||||||
|
token string
|
||||||
|
debug bool
|
||||||
|
errorTemplate string
|
||||||
|
username string
|
||||||
|
|
||||||
|
logger *slog.Logger // Main bot logger (JSON stdout + optional file)
|
||||||
|
RequestLogger *slog.Logger // Optional request-level API logging
|
||||||
|
extraLoggers extypes.Slice[*slog.Logger] // API, Uploader, and custom loggers
|
||||||
|
|
||||||
|
plugins []Plugin[T] // Command/event handlers
|
||||||
|
middlewares []Middleware[T] // Pre-processing filters (sorted by order)
|
||||||
|
prefixes []string // Command prefixes (e.g., "/", "!")
|
||||||
|
runners []Runner[T] // Background tasks (e.g., cleanup, cron)
|
||||||
|
|
||||||
|
api *tgapi.API // Telegram API client
|
||||||
|
uploader *tgapi.Uploader // File uploader
|
||||||
|
dbContext *T // Injected database context
|
||||||
|
l10n *L10n // Localization manager
|
||||||
|
draftProvider *DraftProvider // Draft message builder
|
||||||
|
|
||||||
|
updateOffsetMu sync.Mutex
|
||||||
|
updateOffset int // Last processed update ID
|
||||||
|
updateTypes []tgapi.UpdateType // Types of updates to fetch
|
||||||
|
updateQueue chan *tgapi.Update // Internal queue for processing updates
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewBot creates and initializes a new Bot instance using the provided BotOpts.
|
||||||
|
//
|
||||||
|
// Automatically:
|
||||||
|
// - Creates API and Uploader clients
|
||||||
|
// - Initializes structured logging (JSON stdout + optional file)
|
||||||
|
// - Fetches bot username via GetMe()
|
||||||
|
// - Sets up DraftProvider with random IDs
|
||||||
|
// - Adds API and Uploader loggers to extraLoggers
|
||||||
|
//
|
||||||
|
// Panics if:
|
||||||
|
// - Token is empty
|
||||||
|
// - GetMe() fails (invalid token or network error)
|
||||||
|
func NewBot[T any](opts *BotOpts) *Bot[T] {
|
||||||
|
if opts.Token == "" {
|
||||||
|
panic("laniakea: BotOpts.Token is required")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
updateQueue := make(chan *tgapi.Update, 512)
|
||||||
|
|
||||||
|
var limiter *utils.RateLimiter
|
||||||
|
if opts.RateLimit > 0 {
|
||||||
|
limiter = utils.NewRateLimiter()
|
||||||
|
}
|
||||||
|
|
||||||
|
apiOpts := tgapi.NewAPIOpts(opts.Token).
|
||||||
|
SetAPIUrl(opts.APIUrl).
|
||||||
|
UseTestServer(opts.UseTestServer).
|
||||||
|
SetLimiter(limiter)
|
||||||
|
api := tgapi.NewAPI(apiOpts)
|
||||||
|
|
||||||
|
uploader := tgapi.NewUploader(api)
|
||||||
|
|
||||||
|
bot := &Bot[T]{
|
||||||
|
updateOffset: 0,
|
||||||
|
errorTemplate: "%s",
|
||||||
|
updateQueue: updateQueue,
|
||||||
|
api: api,
|
||||||
|
uploader: uploader,
|
||||||
|
debug: opts.Debug,
|
||||||
|
prefixes: opts.Prefixes,
|
||||||
|
token: opts.Token,
|
||||||
|
plugins: make([]Plugin[T], 0),
|
||||||
|
updateTypes: make([]tgapi.UpdateType, 0),
|
||||||
|
runners: make([]Runner[T], 0),
|
||||||
|
extraLoggers: make([]*slog.Logger, 0),
|
||||||
|
l10n: &L10n{},
|
||||||
|
draftProvider: NewRandomDraftProvider(api),
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add API and Uploader loggers to extraLoggers for unified output
|
||||||
|
bot.extraLoggers = bot.extraLoggers.Push(api.GetLogger()).Push(uploader.GetLogger())
|
||||||
|
|
||||||
|
if len(opts.ErrorTemplate) > 0 {
|
||||||
|
bot.errorTemplate = opts.ErrorTemplate
|
||||||
|
}
|
||||||
|
if len(opts.LoggerBasePath) == 0 {
|
||||||
|
opts.LoggerBasePath = "./"
|
||||||
|
}
|
||||||
|
bot.initLoggers(opts)
|
||||||
|
|
||||||
|
// Fetch bot info to validate token and get username
|
||||||
|
u, err := api.GetMe()
|
||||||
|
if err != nil {
|
||||||
|
_ = bot.Close()
|
||||||
|
bot.logger.Fatal(err)
|
||||||
|
}
|
||||||
|
bot.username = Val(u.Username, "")
|
||||||
|
if bot.username == "" {
|
||||||
|
bot.logger.Warn("Can't get bot username. Named command handlers won't work!")
|
||||||
|
}
|
||||||
|
bot.logger.Infof("Authorized as %s (@%s)\n", u.FirstName, u.Username)
|
||||||
|
|
||||||
|
return bot
|
||||||
|
}
|
||||||
|
|
||||||
|
// Close gracefully shuts down the bot.
|
||||||
|
//
|
||||||
|
// Closes:
|
||||||
|
// - Uploader (waits for pending uploads)
|
||||||
|
// - API client
|
||||||
|
// - RequestLogger (if enabled)
|
||||||
|
// - Main logger
|
||||||
|
//
|
||||||
|
// Returns the first error encountered, if any.
|
||||||
|
func (bot *Bot[T]) Close() error {
|
||||||
|
if err := bot.uploader.Close(); err != nil {
|
||||||
|
bot.logger.Errorln(err)
|
||||||
|
}
|
||||||
|
if err := bot.api.CloseApi(); err != nil {
|
||||||
|
bot.logger.Errorln(err)
|
||||||
|
}
|
||||||
|
if bot.RequestLogger != nil {
|
||||||
|
if err := bot.RequestLogger.Close(); err != nil {
|
||||||
|
bot.logger.Errorln(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if err := bot.logger.Close(); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// initLoggers configures the main and optional request loggers.
|
||||||
|
//
|
||||||
|
// Uses DEBUG flag to set log level (DEBUG if true, FATAL otherwise).
|
||||||
|
// Writes to stdout in JSON format by default.
|
||||||
|
// If WriteToFile is true, writes to main.log and requests.log in LoggerBasePath.
|
||||||
|
func (bot *Bot[T]) initLoggers(opts *BotOpts) {
|
||||||
level := slog.FATAL
|
level := slog.FATAL
|
||||||
if settings.Debug {
|
if opts.Debug {
|
||||||
level = slog.DEBUG
|
level = slog.DEBUG
|
||||||
}
|
}
|
||||||
|
|
||||||
bot.logger = slog.CreateLogger().Level(level).Prefix("BOT")
|
bot.logger = slog.CreateLogger().Level(level).Prefix("BOT")
|
||||||
bot.logger.AddWriter(bot.logger.CreateJsonStdoutWriter())
|
bot.logger.AddWriter(bot.logger.CreateJsonStdoutWriter())
|
||||||
if settings.WriteToFile {
|
if opts.WriteToFile {
|
||||||
path := fmt.Sprintf("%s/main.log", strings.TrimRight(settings.LoggerBasePath, "/"))
|
path := fmt.Sprintf("%s/main.log", strings.TrimRight(opts.LoggerBasePath, "/"))
|
||||||
fileWriter, err := bot.logger.CreateTextFileWriter(path)
|
fileWriter, err := bot.logger.CreateTextFileWriter(path)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
bot.logger.Fatal(err)
|
bot.logger.Fatal(err)
|
||||||
@@ -110,170 +331,311 @@ func NewBot(settings *BotSettings) *Bot {
|
|||||||
bot.logger.AddWriter(fileWriter)
|
bot.logger.AddWriter(fileWriter)
|
||||||
}
|
}
|
||||||
|
|
||||||
if settings.UseRequestLogger {
|
if opts.UseRequestLogger {
|
||||||
bot.requestLogger = slog.CreateLogger().Level(level).Prefix("REQUESTS")
|
bot.RequestLogger = slog.CreateLogger().Level(level).Prefix("REQUESTS")
|
||||||
bot.requestLogger.AddWriter(bot.requestLogger.CreateJsonStdoutWriter())
|
bot.RequestLogger.AddWriter(bot.RequestLogger.CreateJsonStdoutWriter())
|
||||||
if settings.WriteToFile {
|
if opts.WriteToFile {
|
||||||
path := fmt.Sprintf("%s/requests.log", strings.TrimRight(settings.LoggerBasePath, "/"))
|
path := fmt.Sprintf("%s/requests.log", strings.TrimRight(opts.LoggerBasePath, "/"))
|
||||||
fileWriter, err := bot.requestLogger.CreateTextFileWriter(path)
|
fileWriter, err := bot.RequestLogger.CreateTextFileWriter(path)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
bot.logger.Fatal(err)
|
bot.logger.Fatal(err)
|
||||||
}
|
}
|
||||||
bot.requestLogger.AddWriter(fileWriter)
|
bot.RequestLogger.AddWriter(fileWriter)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
u, err := api.GetMe()
|
// GetUpdateOffset returns the current update offset (thread-safe).
|
||||||
if err != nil {
|
func (bot *Bot[T]) GetUpdateOffset() int {
|
||||||
bot.logger.Fatal(err)
|
bot.updateOffsetMu.Lock()
|
||||||
|
defer bot.updateOffsetMu.Unlock()
|
||||||
|
return bot.updateOffset
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetUpdateOffset sets the update offset for next GetUpdates call (thread-safe).
|
||||||
|
func (bot *Bot[T]) SetUpdateOffset(offset int) {
|
||||||
|
bot.updateOffsetMu.Lock()
|
||||||
|
defer bot.updateOffsetMu.Unlock()
|
||||||
|
bot.updateOffset = offset
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetUpdateTypes returns the list of update types the bot is configured to receive.
|
||||||
|
func (bot *Bot[T]) GetUpdateTypes() []tgapi.UpdateType { return bot.updateTypes }
|
||||||
|
|
||||||
|
// GetLogger returns the main bot logger.
|
||||||
|
func (bot *Bot[T]) GetLogger() *slog.Logger { return bot.logger }
|
||||||
|
|
||||||
|
// GetDBContext returns the injected database context.
|
||||||
|
// Returns nil if not set via DatabaseContext().
|
||||||
|
func (bot *Bot[T]) GetDBContext() *T { return bot.dbContext }
|
||||||
|
|
||||||
|
// L10n translates a key in the given language.
|
||||||
|
// Returns empty string if translation not found.
|
||||||
|
func (bot *Bot[T]) L10n(lang, key string) string {
|
||||||
|
return bot.l10n.Translate(lang, key)
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetDraftProvider replaces the default DraftProvider with a custom one.
|
||||||
|
// Useful for using LinearDraftIdGenerator to persist draft IDs across restarts.
|
||||||
|
func (bot *Bot[T]) SetDraftProvider(p *DraftProvider) *Bot[T] {
|
||||||
|
bot.draftProvider = p
|
||||||
|
return bot
|
||||||
|
}
|
||||||
|
|
||||||
|
// DbLogger is a function type that returns a slog.LoggerWriter for database logging.
|
||||||
|
// Used to inject database-specific log output (e.g., SQL queries, ORM events).
|
||||||
|
type DbLogger[T DbContext] func(db *T) slog.LoggerWriter
|
||||||
|
|
||||||
|
// AddDatabaseLoggerWriter adds a database logger writer to all loggers.
|
||||||
|
//
|
||||||
|
// The writer will receive logs from:
|
||||||
|
// - Main bot logger
|
||||||
|
// - Request logger (if enabled)
|
||||||
|
// - API and Uploader loggers
|
||||||
|
//
|
||||||
|
// Example:
|
||||||
|
//
|
||||||
|
// bot.AddDatabaseLoggerWriter(func(db *MyDB) slog.LoggerWriter {
|
||||||
|
// return db.QueryLogger()
|
||||||
|
// })
|
||||||
|
func (bot *Bot[T]) AddDatabaseLoggerWriter(writer DbLogger[T]) *Bot[T] {
|
||||||
|
w := writer(bot.dbContext)
|
||||||
|
bot.logger.AddWriter(w)
|
||||||
|
if bot.RequestLogger != nil {
|
||||||
|
bot.RequestLogger.AddWriter(w)
|
||||||
}
|
}
|
||||||
bot.logger.Infof("Authorized as %s\n", u.FirstName)
|
for _, l := range bot.extraLoggers {
|
||||||
|
l.AddWriter(w)
|
||||||
|
}
|
||||||
|
return bot
|
||||||
|
}
|
||||||
|
|
||||||
|
// DatabaseContext injects a database context into the bot.
|
||||||
|
// This context is accessible to plugins and middleware via GetDBContext().
|
||||||
|
func (bot *Bot[T]) DatabaseContext(ctx *T) *Bot[T] {
|
||||||
|
bot.dbContext = ctx
|
||||||
|
return bot
|
||||||
|
}
|
||||||
|
|
||||||
|
// UpdateTypes sets the list of update types the bot will request from Telegram.
|
||||||
|
// Overwrites any previously set types.
|
||||||
|
func (bot *Bot[T]) UpdateTypes(t ...tgapi.UpdateType) *Bot[T] {
|
||||||
|
bot.updateTypes = make([]tgapi.UpdateType, 0)
|
||||||
|
bot.updateTypes = append(bot.updateTypes, t...)
|
||||||
|
return bot
|
||||||
|
}
|
||||||
|
|
||||||
|
// AddUpdateType adds one or more update types to the list.
|
||||||
|
// Does not overwrite existing types.
|
||||||
|
func (bot *Bot[T]) AddUpdateType(t ...tgapi.UpdateType) *Bot[T] {
|
||||||
|
bot.updateTypes = append(bot.updateTypes, t...)
|
||||||
|
return bot
|
||||||
|
}
|
||||||
|
|
||||||
|
// AddPrefixes adds one or more command prefixes (e.g., "/", "!").
|
||||||
|
// Must have at least one prefix before Run().
|
||||||
|
func (bot *Bot[T]) AddPrefixes(prefixes ...string) *Bot[T] {
|
||||||
|
bot.prefixes = append(bot.prefixes, prefixes...)
|
||||||
|
return bot
|
||||||
|
}
|
||||||
|
|
||||||
|
// ErrorTemplate sets the format string for error messages sent to users.
|
||||||
|
// Use "%s" to insert the error message.
|
||||||
|
// Example: "❌ Error: %s" → "❌ Error: Command not found"
|
||||||
|
func (bot *Bot[T]) ErrorTemplate(s string) *Bot[T] {
|
||||||
|
bot.errorTemplate = s
|
||||||
|
return bot
|
||||||
|
}
|
||||||
|
|
||||||
|
// Debug enables or disables debug logging.
|
||||||
|
func (bot *Bot[T]) Debug(debug bool) *Bot[T] {
|
||||||
|
bot.debug = debug
|
||||||
|
return bot
|
||||||
|
}
|
||||||
|
|
||||||
|
// AddPlugins registers one or more plugins.
|
||||||
|
// Plugins are executed in registration order unless filtered by middleware.
|
||||||
|
func (bot *Bot[T]) AddPlugins(plugin ...*Plugin[T]) *Bot[T] {
|
||||||
|
for _, p := range plugin {
|
||||||
|
bot.plugins = append(bot.plugins, *p)
|
||||||
|
bot.logger.Debugln(fmt.Sprintf("plugins with name \"%s\" registered", p.name))
|
||||||
|
}
|
||||||
|
return bot
|
||||||
|
}
|
||||||
|
|
||||||
|
// AddMiddleware registers one or more middleware handlers.
|
||||||
|
//
|
||||||
|
// Middleware are executed in order of increasing .order value before plugins.
|
||||||
|
// If two middleware have the same order, they are sorted lexicographically by name.
|
||||||
|
//
|
||||||
|
// Middleware can:
|
||||||
|
// - Modify or reject updates before they reach plugins
|
||||||
|
// - Inject context (e.g., user auth state, rate limit status)
|
||||||
|
// - Log, validate, or transform incoming data
|
||||||
|
//
|
||||||
|
// Example:
|
||||||
|
//
|
||||||
|
// bot.AddMiddleware(&authMiddleware, &rateLimitMiddleware)
|
||||||
|
//
|
||||||
|
// Panics if any middleware has a nil name.
|
||||||
|
func (bot *Bot[T]) AddMiddleware(middleware ...Middleware[T]) *Bot[T] {
|
||||||
|
for _, m := range middleware {
|
||||||
|
if m.name == "" {
|
||||||
|
panic("laniakea: middleware must have a non-empty name")
|
||||||
|
}
|
||||||
|
bot.middlewares = append(bot.middlewares, m)
|
||||||
|
bot.logger.Debugln(fmt.Sprintf("middleware with name \"%s\" registered", m.name))
|
||||||
|
}
|
||||||
|
|
||||||
|
// Stable sort by order (ascending), then by name (lexicographic)
|
||||||
|
sort.Slice(bot.middlewares, func(i, j int) bool {
|
||||||
|
first := bot.middlewares[i]
|
||||||
|
second := bot.middlewares[j]
|
||||||
|
if first.order != second.order {
|
||||||
|
return first.order < second.order
|
||||||
|
}
|
||||||
|
return first.name < second.name
|
||||||
|
})
|
||||||
|
|
||||||
return bot
|
return bot
|
||||||
}
|
}
|
||||||
|
|
||||||
func (b *Bot) Close() {
|
// AddRunner registers a background runner to execute concurrently with the bot.
|
||||||
err := b.logger.Close()
|
//
|
||||||
if err != nil {
|
// Runners are goroutines that run independently of update processing.
|
||||||
log.Println(err)
|
// Common use cases:
|
||||||
|
// - Periodic cleanup (e.g., expiring drafts, clearing temp files)
|
||||||
|
// - Metrics collection or health checks
|
||||||
|
// - Scheduled tasks (e.g., daily announcements)
|
||||||
|
//
|
||||||
|
// Runners are started immediately after Bot.Run() is called.
|
||||||
|
//
|
||||||
|
// Example:
|
||||||
|
//
|
||||||
|
// bot.AddRunner(&cleanupRunner)
|
||||||
|
//
|
||||||
|
// Panics if runner has a nil name.
|
||||||
|
func (bot *Bot[T]) AddRunner(runner Runner[T]) *Bot[T] {
|
||||||
|
if runner.name == "" {
|
||||||
|
panic("laniakea: runner must have a non-empty name")
|
||||||
}
|
}
|
||||||
err = b.requestLogger.Close()
|
bot.runners = append(bot.runners, runner)
|
||||||
if err != nil {
|
bot.logger.Debugln(fmt.Sprintf("runner with name \"%s\" registered", runner.name))
|
||||||
log.Println(err)
|
return bot
|
||||||
|
}
|
||||||
|
|
||||||
|
// AddL10n sets the localization (i18n) provider for the bot.
|
||||||
|
//
|
||||||
|
// The L10n instance must be pre-populated with translations.
|
||||||
|
// Translations are accessed via Bot.L10n(lang, key).
|
||||||
|
//
|
||||||
|
// Example:
|
||||||
|
//
|
||||||
|
// l10n := l10n.New()
|
||||||
|
// l10n.Add("en", "hello", "Hello!")
|
||||||
|
// l10n.Add("es", "hello", "¡Hola!")
|
||||||
|
// bot.AddL10n(l10n)
|
||||||
|
//
|
||||||
|
// Replaces any previously set L10n instance.
|
||||||
|
func (bot *Bot[T]) AddL10n(l *L10n) *Bot[T] {
|
||||||
|
if l == nil {
|
||||||
|
bot.logger.Warn("AddL10n called with nil L10n; localization will be disabled")
|
||||||
|
}
|
||||||
|
bot.l10n = l
|
||||||
|
return bot
|
||||||
|
}
|
||||||
|
|
||||||
|
// enqueueUpdate attempts to add an update to the internal processing queue.
|
||||||
|
//
|
||||||
|
// Returns extypes.QueueFullErr if the queue is full and the update cannot be enqueued.
|
||||||
|
// This is non-blocking and used to implement rate-limiting behavior.
|
||||||
|
//
|
||||||
|
// When DropRLOverflow is enabled, this error is ignored and the update is dropped.
|
||||||
|
// Otherwise, the update is retried via the main update loop.
|
||||||
|
func (bot *Bot[T]) enqueueUpdate(u *tgapi.Update) error {
|
||||||
|
select {
|
||||||
|
case bot.updateQueue <- u:
|
||||||
|
return nil
|
||||||
|
default:
|
||||||
|
return extypes.QueueFullErr
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
type DatabaseContext struct {
|
// RunWithContext starts the bot with a given context for graceful shutdown.
|
||||||
PostgresSQL *sqlx.DB
|
//
|
||||||
MongoDB *mongo.Client
|
// This is the main entry point for bot execution. It:
|
||||||
Redis *redis.Client
|
// - Validates required configuration (prefixes, plugins)
|
||||||
}
|
// - Starts all registered runners as background goroutines
|
||||||
|
// - Begins polling for updates via Telegram's GetUpdates API
|
||||||
func (b *Bot) AddDatabaseLogger(writer func(db *DatabaseContext) slog.LoggerWriter) *Bot {
|
// - Processes updates concurrently using a worker pool (16 goroutines)
|
||||||
w := writer(b.dbContext)
|
//
|
||||||
b.logger.AddWriter(w)
|
// The context controls graceful shutdown. When canceled, the bot:
|
||||||
if b.requestLogger != nil {
|
// - Stops polling for new updates
|
||||||
b.requestLogger.AddWriter(w)
|
// - Finishes processing currently queued updates
|
||||||
}
|
// - Closes all resources (API, uploader, loggers)
|
||||||
for _, l := range b.dbWriterRequested {
|
//
|
||||||
l.AddWriter(w)
|
// Example:
|
||||||
}
|
//
|
||||||
return b
|
// ctx, cancel := context.WithCancel(context.Background())
|
||||||
}
|
// go bot.RunWithContext(ctx)
|
||||||
|
// // ... later ...
|
||||||
func (b *Bot) DatabaseContext(ctx *DatabaseContext) *Bot {
|
// cancel() // triggers graceful shutdown
|
||||||
b.dbContext = ctx
|
func (bot *Bot[T]) RunWithContext(ctx context.Context) {
|
||||||
return b
|
if len(bot.prefixes) == 0 {
|
||||||
}
|
bot.logger.Fatalln("no prefixes defined")
|
||||||
func (b *Bot) UpdateTypes(t ...string) *Bot {
|
|
||||||
b.updateTypes = make([]string, 0)
|
|
||||||
b.updateTypes = append(b.updateTypes, t...)
|
|
||||||
return b
|
|
||||||
}
|
|
||||||
func (b *Bot) AddUpdateType(t ...string) *Bot {
|
|
||||||
b.updateTypes = append(b.updateTypes, t...)
|
|
||||||
return b
|
|
||||||
}
|
|
||||||
func (b *Bot) AddPrefixes(prefixes ...string) *Bot {
|
|
||||||
b.prefixes = append(b.prefixes, prefixes...)
|
|
||||||
return b
|
|
||||||
}
|
|
||||||
func (b *Bot) ErrorTemplate(s string) *Bot {
|
|
||||||
b.errorTemplate = s
|
|
||||||
return b
|
|
||||||
}
|
|
||||||
func (b *Bot) Debug(debug bool) *Bot {
|
|
||||||
b.debug = debug
|
|
||||||
return b
|
|
||||||
}
|
|
||||||
func (b *Bot) AddPlugins(plugin ...Plugin) *Bot {
|
|
||||||
b.plugins = append(b.plugins, plugin...)
|
|
||||||
for _, p := range plugin {
|
|
||||||
b.logger.Debugln(fmt.Sprintf("plugins with name \"%s\" registered", p.Name))
|
|
||||||
}
|
|
||||||
return b
|
|
||||||
}
|
|
||||||
func (b *Bot) AddMiddleware(middleware ...Middleware) *Bot {
|
|
||||||
b.middlewares = append(b.middlewares, middleware...)
|
|
||||||
for _, m := range middleware {
|
|
||||||
b.logger.Debugln(fmt.Sprintf("middleware with name \"%s\" registered", m.Name))
|
|
||||||
}
|
|
||||||
|
|
||||||
sort.Slice(b.middlewares, func(i, j int) bool {
|
|
||||||
first := b.middlewares[i]
|
|
||||||
second := b.middlewares[j]
|
|
||||||
if first.Order == second.Order {
|
|
||||||
return first.Name < second.Name
|
|
||||||
}
|
|
||||||
return first.Order < second.Order
|
|
||||||
})
|
|
||||||
|
|
||||||
return b
|
|
||||||
}
|
|
||||||
func (b *Bot) AddRunner(runner Runner) *Bot {
|
|
||||||
b.runners = append(b.runners, runner)
|
|
||||||
b.logger.Debugln(fmt.Sprintf("runner with name \"%s\" registered", runner.Name))
|
|
||||||
return b
|
|
||||||
}
|
|
||||||
func (b *Bot) Logger() *slog.Logger {
|
|
||||||
return b.logger
|
|
||||||
}
|
|
||||||
func (b *Bot) GetDBContext() *DatabaseContext {
|
|
||||||
return b.dbContext
|
|
||||||
}
|
|
||||||
|
|
||||||
func (b *Bot) Run() {
|
|
||||||
if len(b.prefixes) == 0 {
|
|
||||||
b.logger.Fatalln("no prefixes defined")
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(b.plugins) == 0 {
|
if len(bot.plugins) == 0 {
|
||||||
b.logger.Fatalln("no plugins defined")
|
bot.logger.Fatalln("no plugins defined")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
b.logger.Infoln("Executing runners...")
|
bot.ExecRunners()
|
||||||
b.ExecRunners()
|
|
||||||
|
|
||||||
b.logger.Infoln("Bot running. Press CTRL+C to exit.")
|
bot.logger.Infoln("Bot running. Press CTRL+C to exit.")
|
||||||
|
|
||||||
|
// Start update polling in a goroutine
|
||||||
go func() {
|
go func() {
|
||||||
for {
|
for {
|
||||||
_, err := b.Updates()
|
select {
|
||||||
if err != nil {
|
case <-ctx.Done():
|
||||||
b.logger.Errorln(err)
|
return
|
||||||
|
default:
|
||||||
|
updates, err := bot.Updates()
|
||||||
|
if err != nil {
|
||||||
|
bot.logger.Errorln("failed to fetch updates:", err)
|
||||||
|
time.Sleep(2 * time.Second) // exponential backoff
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, u := range updates {
|
||||||
|
select {
|
||||||
|
case bot.updateQueue <- u:
|
||||||
|
case <-ctx.Done():
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
|
||||||
for {
|
// Start worker pool for concurrent update handling
|
||||||
queue := b.updateQueue
|
pool := pond.NewPool(16)
|
||||||
if queue.IsEmpty() {
|
for update := range bot.updateQueue {
|
||||||
time.Sleep(time.Millisecond * 25)
|
update := update // capture loop variable
|
||||||
continue
|
pool.Submit(func() {
|
||||||
}
|
bot.handle(update)
|
||||||
|
})
|
||||||
u := queue.Dequeue()
|
|
||||||
if u == nil {
|
|
||||||
b.logger.Errorln("update is nil")
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
ctx := &MsgContext{Bot: b, Update: u, Api: b.api}
|
|
||||||
for _, middleware := range b.middlewares {
|
|
||||||
middleware.Execute(ctx, b.dbContext)
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, plugin := range b.plugins {
|
|
||||||
if plugin.UpdateListener != nil {
|
|
||||||
(*plugin.UpdateListener)(ctx, b.dbContext)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if u.CallbackQuery != nil {
|
|
||||||
b.handleCallback(u, ctx)
|
|
||||||
} else {
|
|
||||||
b.handleMessage(u, ctx)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Run starts the bot using a background context.
|
||||||
|
//
|
||||||
|
// Equivalent to RunWithContext(context.Background()).
|
||||||
|
// Use this for simple bots where graceful shutdown is not required.
|
||||||
|
//
|
||||||
|
// For production use, prefer RunWithContext to handle SIGINT/SIGTERM gracefully.
|
||||||
|
func (bot *Bot[T]) Run() {
|
||||||
|
bot.RunWithContext(context.Background())
|
||||||
|
}
|
||||||
|
|||||||
139
cmd_generator.go
Normal file
139
cmd_generator.go
Normal file
@@ -0,0 +1,139 @@
|
|||||||
|
// Package laniakea provides a framework for building Telegram bots with plugin-based
|
||||||
|
// command registration and automatic command scope management.
|
||||||
|
//
|
||||||
|
// This module automatically generates and registers bot commands across different
|
||||||
|
// chat scopes (private, group, admin) based on plugin-defined commands.
|
||||||
|
//
|
||||||
|
// Commands are derived from Plugin and Command structs, with optional descriptions
|
||||||
|
// and argument formatting. Automatic registration avoids manual command setup and
|
||||||
|
// ensures consistency across chat types.
|
||||||
|
package laniakea
|
||||||
|
|
||||||
|
import (
|
||||||
|
"errors"
|
||||||
|
"fmt"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"git.nix13.pw/scuroneko/laniakea/tgapi"
|
||||||
|
)
|
||||||
|
|
||||||
|
// ErrTooManyCommands is returned when the total number of registered commands
|
||||||
|
// exceeds Telegram's limit of 100 bot commands per bot.
|
||||||
|
//
|
||||||
|
// Telegram Bot API enforces this limit strictly. If exceeded, SetMyCommands
|
||||||
|
// will fail with a 400 error. This error helps catch the issue early during
|
||||||
|
// bot initialization.
|
||||||
|
var ErrTooManyCommands = errors.New("too many commands. max 100")
|
||||||
|
|
||||||
|
// generateBotCommand converts a Command[T] into a tgapi.BotCommand with a
|
||||||
|
// formatted description that includes usage instructions.
|
||||||
|
//
|
||||||
|
// The description is built as:
|
||||||
|
//
|
||||||
|
// "<original_description>. Usage: /<command> <arg1> [<arg2>] ..."
|
||||||
|
//
|
||||||
|
// Required arguments are shown as-is; optional arguments are wrapped in square brackets.
|
||||||
|
//
|
||||||
|
// Example:
|
||||||
|
//
|
||||||
|
// Command{command: "start", description: "Start the bot", args: []Arg{{text: "name", required: false}}}
|
||||||
|
// → Description: "Start the bot. Usage: /start [name]"
|
||||||
|
func generateBotCommand[T any](cmd Command[T]) tgapi.BotCommand {
|
||||||
|
desc := cmd.command
|
||||||
|
if len(cmd.description) > 0 {
|
||||||
|
desc = cmd.description
|
||||||
|
}
|
||||||
|
|
||||||
|
var descArgs []string
|
||||||
|
for _, a := range cmd.args {
|
||||||
|
if a.required {
|
||||||
|
descArgs = append(descArgs, a.text)
|
||||||
|
} else {
|
||||||
|
descArgs = append(descArgs, fmt.Sprintf("[%s]", a.text))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
desc = fmt.Sprintf("%s. Usage: /%s %s", desc, cmd.command, strings.Join(descArgs, " "))
|
||||||
|
return tgapi.BotCommand{Command: cmd.command, Description: desc}
|
||||||
|
}
|
||||||
|
|
||||||
|
// generateBotCommandForPlugin collects all non-skipped commands from a Plugin[T]
|
||||||
|
// and converts them into tgapi.BotCommand objects.
|
||||||
|
//
|
||||||
|
// Commands marked with skipAutoCmd = true are excluded from auto-registration.
|
||||||
|
// This allows plugins to opt out of automatic command generation (e.g., for
|
||||||
|
// internal or hidden commands).
|
||||||
|
func generateBotCommandForPlugin[T any](pl Plugin[T]) []tgapi.BotCommand {
|
||||||
|
commands := make([]tgapi.BotCommand, 0)
|
||||||
|
for _, cmd := range pl.commands {
|
||||||
|
if cmd.skipAutoCmd {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
commands = append(commands, generateBotCommand(cmd))
|
||||||
|
}
|
||||||
|
return commands
|
||||||
|
}
|
||||||
|
|
||||||
|
// AutoGenerateCommands registers all plugin-defined commands with Telegram's Bot API
|
||||||
|
// across three scopes:
|
||||||
|
// - Private chats (users)
|
||||||
|
// - Group chats
|
||||||
|
// - Group administrators
|
||||||
|
//
|
||||||
|
// It first deletes existing commands to ensure a clean state, then sets the new
|
||||||
|
// set of commands for all scopes. This ensures consistency even if commands were
|
||||||
|
// previously modified manually via @BotFather.
|
||||||
|
//
|
||||||
|
// Returns ErrTooManyCommands if the total number of commands exceeds 100.
|
||||||
|
// Returns any API error from Telegram (e.g., network issues, invalid scope).
|
||||||
|
//
|
||||||
|
// Important: This method assumes the bot has been properly initialized and
|
||||||
|
// the API client is authenticated and ready.
|
||||||
|
//
|
||||||
|
// Usage:
|
||||||
|
//
|
||||||
|
// err := bot.AutoGenerateCommands()
|
||||||
|
// if err != nil {
|
||||||
|
// log.Fatal(err)
|
||||||
|
// }
|
||||||
|
func (bot *Bot[T]) AutoGenerateCommands() error {
|
||||||
|
// Clear existing commands to avoid duplication or stale entries
|
||||||
|
_, err := bot.api.DeleteMyCommands(tgapi.DeleteMyCommandsP{})
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("failed to delete existing commands: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Collect all non-skipped commands from all plugins
|
||||||
|
commands := make([]tgapi.BotCommand, 0)
|
||||||
|
for _, pl := range bot.plugins {
|
||||||
|
if pl.skipAutoCmd {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
commands = append(commands, generateBotCommandForPlugin(pl)...)
|
||||||
|
bot.logger.Debugf("Registered %d commands from plugin %s", len(pl.commands), pl.name)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Enforce Telegram's 100-command limit
|
||||||
|
if len(commands) > 100 {
|
||||||
|
return ErrTooManyCommands
|
||||||
|
}
|
||||||
|
|
||||||
|
// Register commands for each scope
|
||||||
|
scopes := []*tgapi.BotCommandScope{
|
||||||
|
{Type: tgapi.BotCommandScopePrivateType},
|
||||||
|
{Type: tgapi.BotCommandScopeGroupType},
|
||||||
|
{Type: tgapi.BotCommandScopeAllChatAdministratorsType},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, scope := range scopes {
|
||||||
|
_, err = bot.api.SetMyCommands(tgapi.SetMyCommandsP{
|
||||||
|
Commands: commands,
|
||||||
|
Scope: scope,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("failed to set commands for scope %q: %w", scope.Type, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
311
drafts.go
Normal file
311
drafts.go
Normal file
@@ -0,0 +1,311 @@
|
|||||||
|
// Package laniakea provides a safe, high-level interface for managing Telegram
|
||||||
|
// message drafts using the tgapi library. It allows creating, editing, and
|
||||||
|
// flushing drafts with automatic ID generation and optional bulk flushing.
|
||||||
|
//
|
||||||
|
// Drafts are designed to be ephemeral, mutable buffers that can be built up
|
||||||
|
// incrementally and then sent as final messages. The package ensures safe
|
||||||
|
// state management by copying entities and isolating draft contexts.
|
||||||
|
//
|
||||||
|
// Two draft ID generation strategies are supported:
|
||||||
|
// - Random: Cryptographically secure random IDs (default). Ideal for distributed systems.
|
||||||
|
// - Linear: Monotonically increasing IDs. Useful for persistence, debugging, or recovery.
|
||||||
|
//
|
||||||
|
// Example usage:
|
||||||
|
//
|
||||||
|
// provider := laniakea.NewRandomDraftProvider(api)
|
||||||
|
// provider.SetChat(-1001234567890, 0).SetParseMode(tgapi.ParseModeHTML)
|
||||||
|
//
|
||||||
|
// draft := provider.NewDraft(tgapi.ParseModeMarkdown)
|
||||||
|
// draft.Push("*Hello*").Push(" **world**!")
|
||||||
|
// err := draft.Flush() // Sends message and deletes draft
|
||||||
|
// if err != nil {
|
||||||
|
// log.Printf("Failed to send draft: %v", err)
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// // Or flush all pending drafts at once:
|
||||||
|
// err = provider.FlushAll() // Sends all drafts and clears them
|
||||||
|
//
|
||||||
|
// Note: Drafts are NOT thread-safe. Concurrent access requires external synchronization.
|
||||||
|
package laniakea
|
||||||
|
|
||||||
|
import (
|
||||||
|
"math/rand/v2"
|
||||||
|
"sync/atomic"
|
||||||
|
|
||||||
|
"git.nix13.pw/scuroneko/laniakea/tgapi"
|
||||||
|
)
|
||||||
|
|
||||||
|
// draftIdGenerator defines an interface for generating unique draft IDs.
|
||||||
|
type draftIdGenerator interface {
|
||||||
|
// Next returns the next unique draft ID.
|
||||||
|
Next() uint64
|
||||||
|
}
|
||||||
|
|
||||||
|
// RandomDraftIdGenerator generates draft IDs using cryptographically secure random numbers.
|
||||||
|
// Suitable for distributed systems or when ID predictability is undesirable.
|
||||||
|
type RandomDraftIdGenerator struct{}
|
||||||
|
|
||||||
|
// Next returns a random 64-bit unsigned integer.
|
||||||
|
func (g *RandomDraftIdGenerator) Next() uint64 {
|
||||||
|
return rand.Uint64()
|
||||||
|
}
|
||||||
|
|
||||||
|
// LinearDraftIdGenerator generates draft IDs using a monotonically increasing counter.
|
||||||
|
// Useful for debugging, persistence, or when drafts must be ordered.
|
||||||
|
type LinearDraftIdGenerator struct {
|
||||||
|
lastId atomic.Uint64
|
||||||
|
}
|
||||||
|
|
||||||
|
// Next returns the next linear ID, atomically incremented.
|
||||||
|
func (g *LinearDraftIdGenerator) Next() uint64 {
|
||||||
|
return g.lastId.Add(1)
|
||||||
|
}
|
||||||
|
|
||||||
|
// DraftProvider manages a collection of Drafts and provides methods to create and
|
||||||
|
// configure them. It holds shared configuration (chat, parse mode, entities) and
|
||||||
|
// a draft ID generator.
|
||||||
|
//
|
||||||
|
// DraftProvider is NOT thread-safe. Concurrent access from multiple goroutines
|
||||||
|
// requires external synchronization.
|
||||||
|
type DraftProvider struct {
|
||||||
|
api *tgapi.API
|
||||||
|
drafts map[uint64]*Draft
|
||||||
|
generator draftIdGenerator
|
||||||
|
|
||||||
|
// Internal defaults — not exposed directly to users.
|
||||||
|
chatID int64
|
||||||
|
messageThreadID int
|
||||||
|
parseMode tgapi.ParseMode
|
||||||
|
entities []tgapi.MessageEntity
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewRandomDraftProvider creates a new DraftProvider using random draft IDs.
|
||||||
|
//
|
||||||
|
// The provider will use cryptographically secure random numbers for draft IDs.
|
||||||
|
// All drafts created via this provider will have unpredictable, unique IDs.
|
||||||
|
func NewRandomDraftProvider(api *tgapi.API) *DraftProvider {
|
||||||
|
return &DraftProvider{
|
||||||
|
api: api, generator: &RandomDraftIdGenerator{},
|
||||||
|
drafts: make(map[uint64]*Draft),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewLinearDraftProvider creates a new DraftProvider using linear (incrementing) draft IDs.
|
||||||
|
//
|
||||||
|
// startValue is the initial value for the counter. Use 0 for fresh start, or a known
|
||||||
|
// value to resume from persisted state.
|
||||||
|
//
|
||||||
|
// This is useful when you need to store draft IDs externally (e.g., in a database)
|
||||||
|
// and want to reconstruct drafts after restart.
|
||||||
|
func NewLinearDraftProvider(api *tgapi.API, startValue uint64) *DraftProvider {
|
||||||
|
g := &LinearDraftIdGenerator{}
|
||||||
|
g.lastId.Store(startValue)
|
||||||
|
return &DraftProvider{
|
||||||
|
api: api,
|
||||||
|
generator: g,
|
||||||
|
drafts: make(map[uint64]*Draft),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetChat sets the target chat and optional message thread for all drafts created
|
||||||
|
// by this provider. Must be called before NewDraft().
|
||||||
|
//
|
||||||
|
// If not set, NewDraft() will create drafts with zero chatID, which will cause
|
||||||
|
// SendMessageDraft to fail. Use this method to avoid runtime errors.
|
||||||
|
func (p *DraftProvider) SetChat(chatID int64, messageThreadID int) *DraftProvider {
|
||||||
|
p.chatID = chatID
|
||||||
|
p.messageThreadID = messageThreadID
|
||||||
|
return p
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetParseMode sets the default parse mode for all new drafts.
|
||||||
|
// Overrides the parse mode passed to NewDraft() only if not specified there.
|
||||||
|
func (p *DraftProvider) SetParseMode(mode tgapi.ParseMode) *DraftProvider {
|
||||||
|
p.parseMode = mode
|
||||||
|
return p
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetEntities sets the default message entities (e.g., bold, links, mentions)
|
||||||
|
// to be copied into every new draft.
|
||||||
|
//
|
||||||
|
// Entities are shallow-copied — if you mutate the slice later, it will affect
|
||||||
|
// future drafts. For safety, pass a copy if needed.
|
||||||
|
func (p *DraftProvider) SetEntities(entities []tgapi.MessageEntity) *DraftProvider {
|
||||||
|
p.entities = entities
|
||||||
|
return p
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetDraft retrieves a draft by its ID.
|
||||||
|
//
|
||||||
|
// Returns the draft and true if found, or nil and false if not found.
|
||||||
|
func (p *DraftProvider) GetDraft(id uint64) (*Draft, bool) {
|
||||||
|
draft, ok := p.drafts[id]
|
||||||
|
return draft, ok
|
||||||
|
}
|
||||||
|
|
||||||
|
// FlushAll sends all pending drafts as final messages and clears them.
|
||||||
|
//
|
||||||
|
// If any draft fails to send, FlushAll returns the error immediately and
|
||||||
|
// leaves other drafts unflushed. This allows for retry logic or logging.
|
||||||
|
//
|
||||||
|
// After successful flush, each draft is removed from the provider and cleared.
|
||||||
|
func (p *DraftProvider) FlushAll() error {
|
||||||
|
var lastErr error
|
||||||
|
for _, draft := range p.drafts {
|
||||||
|
if err := draft.Flush(); err != nil {
|
||||||
|
lastErr = err
|
||||||
|
break // Stop on first error to avoid partial state
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return lastErr
|
||||||
|
}
|
||||||
|
|
||||||
|
// Draft represents a single message draft that can be edited and flushed.
|
||||||
|
//
|
||||||
|
// Drafts are safe to use from a single goroutine. Multiple goroutines must
|
||||||
|
// synchronize access manually.
|
||||||
|
//
|
||||||
|
// Drafts are automatically removed from the provider's map when Flush() succeeds.
|
||||||
|
type Draft struct {
|
||||||
|
api *tgapi.API
|
||||||
|
provider *DraftProvider
|
||||||
|
|
||||||
|
chatID int64
|
||||||
|
messageThreadID int
|
||||||
|
parseMode tgapi.ParseMode
|
||||||
|
entities []tgapi.MessageEntity
|
||||||
|
|
||||||
|
ID uint64
|
||||||
|
Message string
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewDraft creates a new draft with the provided parse mode.
|
||||||
|
//
|
||||||
|
// The draft inherits the provider's chatID, messageThreadID, and entities.
|
||||||
|
// If parseMode is zero, the provider's default parseMode is used.
|
||||||
|
//
|
||||||
|
// Panics if chatID is zero — call SetChat() on the provider first.
|
||||||
|
func (p *DraftProvider) NewDraft(parseMode tgapi.ParseMode) *Draft {
|
||||||
|
if p.chatID == 0 {
|
||||||
|
panic("laniakea: DraftProvider.SetChat() must be called before NewDraft()")
|
||||||
|
}
|
||||||
|
|
||||||
|
id := p.generator.Next()
|
||||||
|
draft := &Draft{
|
||||||
|
api: p.api,
|
||||||
|
provider: p,
|
||||||
|
chatID: p.chatID,
|
||||||
|
messageThreadID: p.messageThreadID,
|
||||||
|
parseMode: parseMode,
|
||||||
|
entities: p.entities, // Shallow copy — caller must ensure immutability
|
||||||
|
ID: id,
|
||||||
|
Message: "",
|
||||||
|
}
|
||||||
|
p.drafts[id] = draft
|
||||||
|
return draft
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetChat overrides the draft's target chat and message thread.
|
||||||
|
//
|
||||||
|
// This is useful for sending a draft to a different chat than the provider's default.
|
||||||
|
func (d *Draft) SetChat(chatID int64, messageThreadID int) *Draft {
|
||||||
|
d.chatID = chatID
|
||||||
|
d.messageThreadID = messageThreadID
|
||||||
|
return d
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetEntities replaces the draft's message entities.
|
||||||
|
//
|
||||||
|
// Entities are stored by reference. If you plan to mutate the slice later,
|
||||||
|
// pass a copy: `SetEntities(append([]tgapi.MessageEntity{}, myEntities...))`
|
||||||
|
func (d *Draft) SetEntities(entities []tgapi.MessageEntity) *Draft {
|
||||||
|
d.entities = entities
|
||||||
|
return d
|
||||||
|
}
|
||||||
|
|
||||||
|
// Push appends text to the draft and attempts to update the server-side draft.
|
||||||
|
//
|
||||||
|
// Returns an error if the Telegram API rejects the update (e.g., due to network issues).
|
||||||
|
// The draft's Message field is always updated, even if the API call fails.
|
||||||
|
//
|
||||||
|
// Use this method to build the message incrementally.
|
||||||
|
func (d *Draft) Push(text string) error {
|
||||||
|
return d.push(text)
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetMessage returns the current content of the draft.
|
||||||
|
//
|
||||||
|
// Useful for inspection, logging, or validation before flushing.
|
||||||
|
func (d *Draft) GetMessage() string {
|
||||||
|
return d.Message
|
||||||
|
}
|
||||||
|
|
||||||
|
// Clear resets the draft's message content to empty string.
|
||||||
|
//
|
||||||
|
// Does not affect server-side draft — use Flush() for that.
|
||||||
|
func (d *Draft) Clear() {
|
||||||
|
d.Message = ""
|
||||||
|
}
|
||||||
|
|
||||||
|
// Delete removes the draft from its provider and clears its content.
|
||||||
|
//
|
||||||
|
// This is an internal method used by Flush(). You may call it manually if you
|
||||||
|
// want to cancel a draft without sending it.
|
||||||
|
func (d *Draft) Delete() {
|
||||||
|
if d.provider != nil {
|
||||||
|
delete(d.provider.drafts, d.ID)
|
||||||
|
}
|
||||||
|
d.Clear()
|
||||||
|
}
|
||||||
|
|
||||||
|
// Flush sends the draft as a final message and clears it locally.
|
||||||
|
//
|
||||||
|
// If successful:
|
||||||
|
// - The message is sent to Telegram.
|
||||||
|
// - The draft's content is cleared.
|
||||||
|
// - The draft is removed from the provider's map.
|
||||||
|
//
|
||||||
|
// If an error occurs:
|
||||||
|
// - The message is NOT sent.
|
||||||
|
// - The draft remains in the provider and retains its content.
|
||||||
|
// - You can call Flush() again to retry.
|
||||||
|
//
|
||||||
|
// If the draft is empty, Flush() returns nil without calling the API.
|
||||||
|
func (d *Draft) Flush() error {
|
||||||
|
if d.Message == "" {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
params := tgapi.SendMessageP{
|
||||||
|
ChatID: d.chatID,
|
||||||
|
ParseMode: d.parseMode,
|
||||||
|
Entities: d.entities,
|
||||||
|
Text: d.Message,
|
||||||
|
}
|
||||||
|
if d.messageThreadID > 0 {
|
||||||
|
params.MessageThreadID = d.messageThreadID
|
||||||
|
}
|
||||||
|
|
||||||
|
_, err := d.api.SendMessage(params)
|
||||||
|
if err == nil {
|
||||||
|
d.Delete()
|
||||||
|
}
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
// push is the internal helper for Push(). It updates the server draft via SendMessageDraft.
|
||||||
|
func (d *Draft) push(text string) error {
|
||||||
|
d.Message += text
|
||||||
|
params := tgapi.SendMessageDraftP{
|
||||||
|
ChatID: d.chatID,
|
||||||
|
DraftID: d.ID,
|
||||||
|
Text: d.Message,
|
||||||
|
ParseMode: d.parseMode,
|
||||||
|
Entities: d.entities,
|
||||||
|
}
|
||||||
|
if d.messageThreadID > 0 {
|
||||||
|
params.MessageThreadID = d.messageThreadID
|
||||||
|
}
|
||||||
|
_, err := d.api.SendMessageDraft(params)
|
||||||
|
return err
|
||||||
|
}
|
||||||
7
examples/basic/.env
Normal file
7
examples/basic/.env
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
TG_TOKEN=
|
||||||
|
PREFIXES=/;!
|
||||||
|
DEBUG=true
|
||||||
|
USE_REQ_LOG=true
|
||||||
|
WRITE_TO_FILE=false
|
||||||
|
USE_TEST_SERVER=true
|
||||||
|
API_URL=http://127.0.0.1:8081
|
||||||
28
examples/basic/example.go
Normal file
28
examples/basic/example.go
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"log"
|
||||||
|
|
||||||
|
"git.nix13.pw/scuroneko/laniakea"
|
||||||
|
)
|
||||||
|
|
||||||
|
func pong(ctx *laniakea.MsgContext, db *laniakea.NoDB) {
|
||||||
|
ctx.Answer(ctx.Msg.Text)
|
||||||
|
}
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
bot := laniakea.NewBot[laniakea.NoDB](laniakea.LoadOptsFromEnv())
|
||||||
|
defer bot.Close()
|
||||||
|
|
||||||
|
p := laniakea.NewPlugin[laniakea.NoDB]("ping")
|
||||||
|
p.NewCommand(pong, "ping")
|
||||||
|
|
||||||
|
bot = bot.ErrorTemplate(
|
||||||
|
"Error\n\n%s",
|
||||||
|
).AddPlugins(p)
|
||||||
|
|
||||||
|
if err := bot.AutoGenerateCommands(); err != nil {
|
||||||
|
log.Println(err)
|
||||||
|
}
|
||||||
|
bot.Run()
|
||||||
|
}
|
||||||
16
examples/basic/go.mod
Normal file
16
examples/basic/go.mod
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
module example/basic
|
||||||
|
|
||||||
|
go 1.26.1
|
||||||
|
|
||||||
|
require git.nix13.pw/scuroneko/laniakea v1.0.0-beta.11
|
||||||
|
|
||||||
|
require (
|
||||||
|
git.nix13.pw/scuroneko/extypes v1.2.1 // indirect
|
||||||
|
git.nix13.pw/scuroneko/slog v1.0.2 // indirect
|
||||||
|
github.com/alitto/pond/v2 v2.6.2 // indirect
|
||||||
|
github.com/fatih/color v1.18.0 // indirect
|
||||||
|
github.com/mattn/go-colorable v0.1.14 // indirect
|
||||||
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
||||||
|
golang.org/x/sys v0.41.0 // indirect
|
||||||
|
golang.org/x/time v0.14.0 // indirect
|
||||||
|
)
|
||||||
19
examples/basic/go.sum
Normal file
19
examples/basic/go.sum
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
git.nix13.pw/scuroneko/extypes v1.2.1 h1:IYrOjnWKL2EAuJYtYNa+luB1vBe6paE8VY/YD+5/RpQ=
|
||||||
|
git.nix13.pw/scuroneko/extypes v1.2.1/go.mod h1:uZVs8Yo3RrYAG9dMad6qR6lsYY67t+459D9c65QAYAw=
|
||||||
|
git.nix13.pw/scuroneko/laniakea v1.0.0-beta.11 h1:bf+5B8vUL/MEmbbX6pA0Wjf0N1eIZH5/WxoSApMcXD4=
|
||||||
|
git.nix13.pw/scuroneko/laniakea v1.0.0-beta.11/go.mod h1:DZgCqOazRzoa+f/GSNuKnTB2wIZ1eJD3cGf34Qya31U=
|
||||||
|
git.nix13.pw/scuroneko/slog v1.0.2 h1:vZyUROygxC2d5FJHUQM/30xFEHY1JT/aweDZXA4rm2g=
|
||||||
|
git.nix13.pw/scuroneko/slog v1.0.2/go.mod h1:3Qm2wzkR5KjwOponMfG7TcGSDjmYaFqRAmLvSPTuWJI=
|
||||||
|
github.com/alitto/pond/v2 v2.6.2 h1:Sphe40g0ILeM1pA2c2K+Th0DGU+pt0A/Kprr+WB24Pw=
|
||||||
|
github.com/alitto/pond/v2 v2.6.2/go.mod h1:xkjYEgQ05RSpWdfSd1nM3OVv7TBhLdy7rMp3+2Nq+yE=
|
||||||
|
github.com/fatih/color v1.18.0 h1:S8gINlzdQ840/4pfAwic/ZE0djQEH3wM94VfqLTZcOM=
|
||||||
|
github.com/fatih/color v1.18.0/go.mod h1:4FelSpRwEGDpQ12mAdzqdOukCy4u8WUtOY6lkT/6HfU=
|
||||||
|
github.com/mattn/go-colorable v0.1.14 h1:9A9LHSqF/7dyVVX6g0U9cwm9pG3kP9gSzcuIPHPsaIE=
|
||||||
|
github.com/mattn/go-colorable v0.1.14/go.mod h1:6LmQG8QLFO4G5z1gPvYEzlUgJ2wF+stgPZH1UqBm1s8=
|
||||||
|
github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY=
|
||||||
|
github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
|
||||||
|
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
|
golang.org/x/sys v0.41.0 h1:Ivj+2Cp/ylzLiEU89QhWblYnOE9zerudt9Ftecq2C6k=
|
||||||
|
golang.org/x/sys v0.41.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks=
|
||||||
|
golang.org/x/time v0.14.0 h1:MRx4UaLrDotUKUdCIqzPC48t1Y9hANFKIRpNx+Te8PI=
|
||||||
|
golang.org/x/time v0.14.0/go.mod h1:eL/Oa2bBBK0TkX57Fyni+NgnyQQN4LitPmob2Hjnqw4=
|
||||||
22
go.mod
22
go.mod
@@ -1,29 +1,17 @@
|
|||||||
module git.nix13.pw/scuroneko/laniakea
|
module git.nix13.pw/scuroneko/laniakea
|
||||||
|
|
||||||
go 1.25
|
go 1.26
|
||||||
|
|
||||||
require (
|
require (
|
||||||
git.nix13.pw/scuroneko/extypes v1.1.0
|
git.nix13.pw/scuroneko/extypes v1.2.1
|
||||||
git.nix13.pw/scuroneko/slog v1.0.2
|
git.nix13.pw/scuroneko/slog v1.0.2
|
||||||
github.com/redis/go-redis/v9 v9.17.3
|
github.com/alitto/pond/v2 v2.7.0
|
||||||
github.com/vinovest/sqlx v1.7.1
|
golang.org/x/time v0.15.0
|
||||||
go.mongodb.org/mongo-driver/v2 v2.5.0
|
|
||||||
)
|
)
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
||||||
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
|
||||||
github.com/fatih/color v1.18.0 // indirect
|
github.com/fatih/color v1.18.0 // indirect
|
||||||
github.com/klauspost/compress v1.18.4 // indirect
|
|
||||||
github.com/mattn/go-colorable v0.1.14 // indirect
|
github.com/mattn/go-colorable v0.1.14 // indirect
|
||||||
github.com/mattn/go-isatty v0.0.20 // indirect
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
||||||
github.com/muir/sqltoken v0.2.1 // indirect
|
golang.org/x/sys v0.42.0 // indirect
|
||||||
github.com/xdg-go/pbkdf2 v1.0.0 // indirect
|
|
||||||
github.com/xdg-go/scram v1.2.0 // indirect
|
|
||||||
github.com/xdg-go/stringprep v1.0.4 // indirect
|
|
||||||
github.com/youmark/pkcs8 v0.0.0-20240726163527-a2c0da244d78 // indirect
|
|
||||||
golang.org/x/crypto v0.47.0 // indirect
|
|
||||||
golang.org/x/sync v0.19.0 // indirect
|
|
||||||
golang.org/x/sys v0.40.0 // indirect
|
|
||||||
golang.org/x/text v0.33.0 // indirect
|
|
||||||
)
|
)
|
||||||
|
|||||||
86
go.sum
86
go.sum
@@ -1,87 +1,17 @@
|
|||||||
filippo.io/edwards25519 v1.1.0 h1:FNf4tywRC1HmFuKW5xopWpigGjJKiJSV0Cqo0cJWDaA=
|
git.nix13.pw/scuroneko/extypes v1.2.1 h1:IYrOjnWKL2EAuJYtYNa+luB1vBe6paE8VY/YD+5/RpQ=
|
||||||
filippo.io/edwards25519 v1.1.0/go.mod h1:BxyFTGdWcka3PhytdK4V28tE5sGfRvvvRV7EaN4VDT4=
|
git.nix13.pw/scuroneko/extypes v1.2.1/go.mod h1:uZVs8Yo3RrYAG9dMad6qR6lsYY67t+459D9c65QAYAw=
|
||||||
git.nix13.pw/scuroneko/extypes v1.1.0 h1:kdAraybAqQgVhArVkVfrIi7KVEX8HgTr8mzbIZAAAqg=
|
|
||||||
git.nix13.pw/scuroneko/extypes v1.1.0/go.mod h1:uZVs8Yo3RrYAG9dMad6qR6lsYY67t+459D9c65QAYAw=
|
|
||||||
git.nix13.pw/scuroneko/slog v1.0.2 h1:vZyUROygxC2d5FJHUQM/30xFEHY1JT/aweDZXA4rm2g=
|
git.nix13.pw/scuroneko/slog v1.0.2 h1:vZyUROygxC2d5FJHUQM/30xFEHY1JT/aweDZXA4rm2g=
|
||||||
git.nix13.pw/scuroneko/slog v1.0.2/go.mod h1:3Qm2wzkR5KjwOponMfG7TcGSDjmYaFqRAmLvSPTuWJI=
|
git.nix13.pw/scuroneko/slog v1.0.2/go.mod h1:3Qm2wzkR5KjwOponMfG7TcGSDjmYaFqRAmLvSPTuWJI=
|
||||||
github.com/bsm/ginkgo/v2 v2.12.0 h1:Ny8MWAHyOepLGlLKYmXG4IEkioBysk6GpaRTLC8zwWs=
|
github.com/alitto/pond/v2 v2.7.0 h1:c76L+yN916m/DRXjGCeUBHHu92uWnh/g1bwVk4zyyXg=
|
||||||
github.com/bsm/ginkgo/v2 v2.12.0/go.mod h1:SwYbGRRDovPVboqFv0tPTcG1sN61LM1Z4ARdbAV9g4c=
|
github.com/alitto/pond/v2 v2.7.0/go.mod h1:xkjYEgQ05RSpWdfSd1nM3OVv7TBhLdy7rMp3+2Nq+yE=
|
||||||
github.com/bsm/gomega v1.27.10 h1:yeMWxP2pV2fG3FgAODIY8EiRE3dy0aeFYt4l7wh6yKA=
|
|
||||||
github.com/bsm/gomega v1.27.10/go.mod h1:JyEr/xRbxbtgWNi8tIEVPUYZ5Dzef52k01W3YH0H+O0=
|
|
||||||
github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs=
|
|
||||||
github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
|
|
||||||
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
|
|
||||||
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
|
||||||
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f h1:lO4WD4F/rVNCu3HqELle0jiPLLBs70cWOduZpkS1E78=
|
|
||||||
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f/go.mod h1:cuUVRXasLTGF7a8hSLbxyZXjz+1KgoB3wDUb6vlszIc=
|
|
||||||
github.com/fatih/color v1.18.0 h1:S8gINlzdQ840/4pfAwic/ZE0djQEH3wM94VfqLTZcOM=
|
github.com/fatih/color v1.18.0 h1:S8gINlzdQ840/4pfAwic/ZE0djQEH3wM94VfqLTZcOM=
|
||||||
github.com/fatih/color v1.18.0/go.mod h1:4FelSpRwEGDpQ12mAdzqdOukCy4u8WUtOY6lkT/6HfU=
|
github.com/fatih/color v1.18.0/go.mod h1:4FelSpRwEGDpQ12mAdzqdOukCy4u8WUtOY6lkT/6HfU=
|
||||||
github.com/go-sql-driver/mysql v1.9.0 h1:Y0zIbQXhQKmQgTp44Y1dp3wTXcn804QoTptLZT1vtvo=
|
|
||||||
github.com/go-sql-driver/mysql v1.9.0/go.mod h1:pDetrLJeA3oMujJuvXc8RJoasr589B6A9fwzD3QMrqw=
|
|
||||||
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
|
|
||||||
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
|
|
||||||
github.com/klauspost/compress v1.18.4 h1:RPhnKRAQ4Fh8zU2FY/6ZFDwTVTxgJ/EMydqSTzE9a2c=
|
|
||||||
github.com/klauspost/compress v1.18.4/go.mod h1:R0h/fSBs8DE4ENlcrlib3PsXS61voFxhIs2DeRhCvJ4=
|
|
||||||
github.com/lib/pq v1.10.9 h1:YXG7RB+JIjhP29X+OtkiDnYaXQwpS4JEWq7dtCCRUEw=
|
|
||||||
github.com/lib/pq v1.10.9/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o=
|
|
||||||
github.com/mattn/go-colorable v0.1.14 h1:9A9LHSqF/7dyVVX6g0U9cwm9pG3kP9gSzcuIPHPsaIE=
|
github.com/mattn/go-colorable v0.1.14 h1:9A9LHSqF/7dyVVX6g0U9cwm9pG3kP9gSzcuIPHPsaIE=
|
||||||
github.com/mattn/go-colorable v0.1.14/go.mod h1:6LmQG8QLFO4G5z1gPvYEzlUgJ2wF+stgPZH1UqBm1s8=
|
github.com/mattn/go-colorable v0.1.14/go.mod h1:6LmQG8QLFO4G5z1gPvYEzlUgJ2wF+stgPZH1UqBm1s8=
|
||||||
github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY=
|
github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY=
|
||||||
github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
|
github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
|
||||||
github.com/mattn/go-sqlite3 v1.14.16 h1:yOQRA0RpS5PFz/oikGwBEqvAWhWg5ufRz4ETLjwpU1Y=
|
|
||||||
github.com/mattn/go-sqlite3 v1.14.16/go.mod h1:2eHXhiwb8IkHr+BDWZGa96P6+rkvnG63S2DGjv9HUNg=
|
|
||||||
github.com/muir/sqltoken v0.2.1 h1:19KvJrCj9aOMfU921hjnizWPlQmPTe+tb36zupOY2FA=
|
|
||||||
github.com/muir/sqltoken v0.2.1/go.mod h1:sSlj5M0VqQ4OuedmxwWs1TmzzRXaH3DLf5ukzg6meIo=
|
|
||||||
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
|
|
||||||
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
|
||||||
github.com/redis/go-redis/v9 v9.17.3 h1:fN29NdNrE17KttK5Ndf20buqfDZwGNgoUr9qjl1DQx4=
|
|
||||||
github.com/redis/go-redis/v9 v9.17.3/go.mod h1:u410H11HMLoB+TP67dz8rL9s6QW2j76l0//kSOd3370=
|
|
||||||
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
|
|
||||||
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
|
|
||||||
github.com/vinovest/sqlx v1.7.1 h1:kdq4v0N9kRLpytWGSWOw4aulOGdQPmIoMR6Y+cTBxow=
|
|
||||||
github.com/vinovest/sqlx v1.7.1/go.mod h1:3fAv74r4iDMv2PpFomADb+vex5ukzfYn4GseC9KngD8=
|
|
||||||
github.com/xdg-go/pbkdf2 v1.0.0 h1:Su7DPu48wXMwC3bs7MCNG+z4FhcyEuz5dlvchbq0B0c=
|
|
||||||
github.com/xdg-go/pbkdf2 v1.0.0/go.mod h1:jrpuAogTd400dnrH08LKmI/xc1MbPOebTwRqcT5RDeI=
|
|
||||||
github.com/xdg-go/scram v1.2.0 h1:bYKF2AEwG5rqd1BumT4gAnvwU/M9nBp2pTSxeZw7Wvs=
|
|
||||||
github.com/xdg-go/scram v1.2.0/go.mod h1:3dlrS0iBaWKYVt2ZfA4cj48umJZ+cAEbR6/SjLA88I8=
|
|
||||||
github.com/xdg-go/stringprep v1.0.4 h1:XLI/Ng3O1Atzq0oBs3TWm+5ZVgkq2aqdlvP9JtoZ6c8=
|
|
||||||
github.com/xdg-go/stringprep v1.0.4/go.mod h1:mPGuuIYwz7CmR2bT9j4GbQqutWS1zV24gijq1dTyGkM=
|
|
||||||
github.com/youmark/pkcs8 v0.0.0-20240726163527-a2c0da244d78 h1:ilQV1hzziu+LLM3zUTJ0trRztfwgjqKnBWNtSRkbmwM=
|
|
||||||
github.com/youmark/pkcs8 v0.0.0-20240726163527-a2c0da244d78/go.mod h1:aL8wCCfTfSfmXjznFBSZNN13rSJjlIOI1fUNAtF7rmI=
|
|
||||||
github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY=
|
|
||||||
go.mongodb.org/mongo-driver/v2 v2.5.0 h1:yXUhImUjjAInNcpTcAlPHiT7bIXhshCTL3jVBkF3xaE=
|
|
||||||
go.mongodb.org/mongo-driver/v2 v2.5.0/go.mod h1:yOI9kBsufol30iFsl1slpdq1I0eHPzybRWdyYUs8K/0=
|
|
||||||
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
|
|
||||||
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
|
|
||||||
golang.org/x/crypto v0.47.0 h1:V6e3FRj+n4dbpw86FJ8Fv7XVOql7TEwpHapKoMJ/GO8=
|
|
||||||
golang.org/x/crypto v0.47.0/go.mod h1:ff3Y9VzzKbwSSEzWqJsJVBnWmRwRSHt/6Op5n9bQc4A=
|
|
||||||
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4=
|
|
||||||
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
|
|
||||||
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
|
|
||||||
golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c=
|
|
||||||
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
|
||||||
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
|
||||||
golang.org/x/sync v0.19.0 h1:vV+1eWNmZ5geRlYjzm2adRgW2/mcpevXNg50YZtPCE4=
|
|
||||||
golang.org/x/sync v0.19.0/go.mod h1:9KTHXmSnoGruLpwFjVSX0lNNA75CykiMECbovNTZqGI=
|
|
||||||
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
|
|
||||||
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
|
||||||
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
|
||||||
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
|
||||||
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
|
||||||
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.40.0 h1:DBZZqJ2Rkml6QMQsZywtnjnnGvHza6BTfYFWY9kjEWQ=
|
golang.org/x/sys v0.42.0 h1:omrd2nAlyT5ESRdCLYdm3+fMfNFE/+Rf4bDIQImRJeo=
|
||||||
golang.org/x/sys v0.40.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks=
|
golang.org/x/sys v0.42.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
|
||||||
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
|
golang.org/x/time v0.15.0 h1:bbrp8t3bGUeFOx08pvsMYRTCVSMk89u4tKbNOZbp88U=
|
||||||
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
|
golang.org/x/time v0.15.0/go.mod h1:Y4YMaQmXwGQZoFaVFk4YpCt4FLQMYKZe9oeV/f4MSno=
|
||||||
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
|
||||||
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
|
|
||||||
golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
|
|
||||||
golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ=
|
|
||||||
golang.org/x/text v0.33.0 h1:B3njUFyqtHDUI5jMn1YIr5B0IE2U0qck04r6d4KPAxE=
|
|
||||||
golang.org/x/text v0.33.0/go.mod h1:LuMebE6+rBincTi9+xWTY8TztLzKHc/9C1uBCG27+q8=
|
|
||||||
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
|
|
||||||
golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
|
|
||||||
golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc=
|
|
||||||
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
|
||||||
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
|
|
||||||
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
|
||||||
|
|||||||
123
handler.go
123
handler.go
@@ -1,11 +1,33 @@
|
|||||||
package laniakea
|
package laniakea
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"encoding/base64"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
"git.nix13.pw/scuroneko/laniakea/tgapi"
|
||||||
)
|
)
|
||||||
|
|
||||||
func (b *Bot) handleMessage(update *Update, ctx *MsgContext) {
|
func (bot *Bot[T]) handle(u *tgapi.Update) {
|
||||||
|
ctx := &MsgContext{
|
||||||
|
Update: *u, Api: bot.api,
|
||||||
|
botLogger: bot.logger,
|
||||||
|
errorTemplate: bot.errorTemplate,
|
||||||
|
l10n: bot.l10n,
|
||||||
|
draftProvider: bot.draftProvider,
|
||||||
|
}
|
||||||
|
for _, middleware := range bot.middlewares {
|
||||||
|
middleware.Execute(ctx, bot.dbContext)
|
||||||
|
}
|
||||||
|
|
||||||
|
if u.CallbackQuery != nil {
|
||||||
|
bot.handleCallback(u, ctx)
|
||||||
|
} else {
|
||||||
|
bot.handleMessage(u, ctx)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (bot *Bot[T]) handleMessage(update *tgapi.Update, ctx *MsgContext) {
|
||||||
if update.Message == nil {
|
if update.Message == nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@@ -18,7 +40,7 @@ func (b *Bot) handleMessage(update *Update, ctx *MsgContext) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
text = strings.TrimSpace(text)
|
text = strings.TrimSpace(text)
|
||||||
prefix, hasPrefix := b.checkPrefixes(text)
|
prefix, hasPrefix := bot.checkPrefixes(text)
|
||||||
if !hasPrefix {
|
if !hasPrefix {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@@ -27,73 +49,106 @@ func (b *Bot) handleMessage(update *Update, ctx *MsgContext) {
|
|||||||
ctx.From = update.Message.From
|
ctx.From = update.Message.From
|
||||||
ctx.Msg = update.Message
|
ctx.Msg = update.Message
|
||||||
|
|
||||||
|
// Убираем префикс
|
||||||
text = strings.TrimSpace(text[len(prefix):])
|
text = strings.TrimSpace(text[len(prefix):])
|
||||||
|
|
||||||
for _, plugin := range b.plugins {
|
// Извлекаем команду как первое слово
|
||||||
// Check every command
|
spaceIndex := strings.Index(text, " ")
|
||||||
for cmd := range plugin.Commands {
|
var cmd string
|
||||||
if !strings.HasPrefix(text, cmd) {
|
var args string
|
||||||
continue
|
|
||||||
}
|
|
||||||
requestParts := strings.Split(text, " ")
|
|
||||||
cmdParts := strings.Split(cmd, " ")
|
|
||||||
isValid := true
|
|
||||||
for i, part := range cmdParts {
|
|
||||||
if part != requestParts[i] {
|
|
||||||
isValid = false
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if !isValid {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
ctx.Text = strings.TrimSpace(text[len(cmd):])
|
if spaceIndex == -1 {
|
||||||
ctx.Args = strings.Split(ctx.Text, " ")
|
cmd = text
|
||||||
|
args = ""
|
||||||
|
} else {
|
||||||
|
cmd = text[:spaceIndex]
|
||||||
|
args = strings.TrimSpace(text[spaceIndex:])
|
||||||
|
}
|
||||||
|
|
||||||
if !plugin.executeMiddlewares(ctx, b.dbContext) {
|
if strings.Contains(cmd, "@") {
|
||||||
|
botUsername := bot.username
|
||||||
|
if botUsername != "" && strings.HasSuffix(cmd, "@"+botUsername) {
|
||||||
|
cmd = cmd[:len(cmd)-len("@"+botUsername)] // убираем @botname
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Ищем команду по точному совпадению
|
||||||
|
for _, plugin := range bot.plugins {
|
||||||
|
if _, exists := plugin.commands[cmd]; exists {
|
||||||
|
ctx.Text = args
|
||||||
|
ctx.Args = strings.Fields(args) // Убирает лишние пробелы
|
||||||
|
if !plugin.executeMiddlewares(ctx, bot.dbContext) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
go plugin.Execute(cmd, ctx, b.dbContext)
|
go plugin.executeCmd(cmd, ctx, bot.dbContext)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (b *Bot) handleCallback(update *Update, ctx *MsgContext) {
|
func (bot *Bot[T]) handleCallback(update *tgapi.Update, ctx *MsgContext) {
|
||||||
data := new(CallbackData)
|
data := new(CallbackData)
|
||||||
err := json.Unmarshal([]byte(update.CallbackQuery.Data), data)
|
err := json.Unmarshal([]byte(update.CallbackQuery.Data), data)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
b.logger.Errorln(err)
|
bot.logger.Errorln(err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
ctx.FromID = update.CallbackQuery.From.ID
|
ctx.FromID = update.CallbackQuery.From.ID
|
||||||
ctx.From = update.CallbackQuery.From
|
ctx.From = &update.CallbackQuery.From
|
||||||
ctx.Msg = update.CallbackQuery.Message
|
ctx.Msg = &update.CallbackQuery.Message
|
||||||
ctx.CallbackMsgId = update.CallbackQuery.Message.MessageID
|
ctx.CallbackMsgId = update.CallbackQuery.Message.MessageID
|
||||||
ctx.CallbackQueryId = update.CallbackQuery.ID
|
ctx.CallbackQueryId = update.CallbackQuery.ID
|
||||||
ctx.Args = data.Args
|
ctx.Args = data.Args
|
||||||
|
|
||||||
for _, plugin := range b.plugins {
|
for _, plugin := range bot.plugins {
|
||||||
_, ok := plugin.Payloads[data.Command]
|
_, ok := plugin.payloads[data.Command]
|
||||||
if !ok {
|
if !ok {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
if !plugin.executeMiddlewares(ctx, b.dbContext) {
|
if !plugin.executeMiddlewares(ctx, bot.dbContext) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
go plugin.ExecutePayload(data.Command, ctx, b.dbContext)
|
go plugin.executePayload(data.Command, ctx, bot.dbContext)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (b *Bot) checkPrefixes(text string) (string, bool) {
|
func (bot *Bot[T]) checkPrefixes(text string) (string, bool) {
|
||||||
for _, prefix := range b.prefixes {
|
for _, prefix := range bot.prefixes {
|
||||||
if strings.HasPrefix(text, prefix) {
|
if strings.HasPrefix(text, prefix) {
|
||||||
return prefix, true
|
return prefix, true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return "", false
|
return "", false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func encodeJsonPayload(d CallbackData) (string, error) {
|
||||||
|
b, err := json.Marshal(d)
|
||||||
|
if err != nil {
|
||||||
|
return "", err
|
||||||
|
}
|
||||||
|
return string(b), nil
|
||||||
|
}
|
||||||
|
func decodeJsonPayload(s string) (CallbackData, error) {
|
||||||
|
var data CallbackData
|
||||||
|
err := json.Unmarshal([]byte(s), &data)
|
||||||
|
return data, err
|
||||||
|
}
|
||||||
|
func encodeBase64Payload(d CallbackData) (string, error) {
|
||||||
|
data, err := encodeJsonPayload(d)
|
||||||
|
if err != nil {
|
||||||
|
return "", err
|
||||||
|
}
|
||||||
|
dst := make([]byte, base64.StdEncoding.EncodedLen(len([]byte(data))))
|
||||||
|
base64.StdEncoding.Encode(dst, []byte(data))
|
||||||
|
return string(dst), nil
|
||||||
|
}
|
||||||
|
func decodeBase64Payload(s string) (CallbackData, error) {
|
||||||
|
b, err := base64.StdEncoding.DecodeString(s)
|
||||||
|
if err != nil {
|
||||||
|
return CallbackData{}, err
|
||||||
|
}
|
||||||
|
return decodeJsonPayload(string(b))
|
||||||
|
}
|
||||||
|
|||||||
163
keyboard.go
163
keyboard.go
@@ -1,3 +1,13 @@
|
|||||||
|
// Package laniakea provides a fluent builder system for constructing Telegram
|
||||||
|
// inline keyboards with callback data and custom styling.
|
||||||
|
//
|
||||||
|
// This package supports:
|
||||||
|
// - Button builders with style (danger/success/primary), icons, URLs, and callbacks
|
||||||
|
// - Line-based keyboard layout with configurable max row size
|
||||||
|
// - Structured, JSON-serialized callback data for bot command routing
|
||||||
|
//
|
||||||
|
// Keyboard construction is stateful and builder-style: methods return the receiver
|
||||||
|
// to enable chaining. Call Get() to finalize and retrieve the tgapi.ReplyMarkup.
|
||||||
package laniakea
|
package laniakea
|
||||||
|
|
||||||
import (
|
import (
|
||||||
@@ -5,38 +15,81 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"git.nix13.pw/scuroneko/extypes"
|
"git.nix13.pw/scuroneko/extypes"
|
||||||
|
"git.nix13.pw/scuroneko/laniakea/tgapi"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// ButtonStyleDanger, ButtonStyleSuccess, ButtonStylePrimary are predefined
|
||||||
|
// Telegram keyboard button styles for visual feedback.
|
||||||
|
//
|
||||||
|
// These values map directly to Telegram Bot API's InlineKeyboardButton style field.
|
||||||
|
const (
|
||||||
|
ButtonStyleDanger tgapi.KeyboardButtonStyle = "danger"
|
||||||
|
ButtonStyleSuccess tgapi.KeyboardButtonStyle = "success"
|
||||||
|
ButtonStylePrimary tgapi.KeyboardButtonStyle = "primary"
|
||||||
|
)
|
||||||
|
|
||||||
|
// InlineKbButtonBuilder is a fluent builder for creating a single inline keyboard button.
|
||||||
|
//
|
||||||
|
// Use NewInlineKbButton() to start, then chain methods to configure:
|
||||||
|
// - SetIconCustomEmojiId() — adds a custom emoji icon
|
||||||
|
// - SetStyle() — sets visual style (danger/success/primary)
|
||||||
|
// - SetUrl() — makes button open a URL
|
||||||
|
// - SetCallbackData() — attaches structured command + args for bot handling
|
||||||
|
//
|
||||||
|
// Call build() to produce the final tgapi.InlineKeyboardButton.
|
||||||
|
// Builder methods are immutable — each returns a copy.
|
||||||
type InlineKbButtonBuilder struct {
|
type InlineKbButtonBuilder struct {
|
||||||
text string
|
text string
|
||||||
iconCustomEmojiID string
|
iconCustomEmojiID string
|
||||||
style InlineKeyboardButtonStyle
|
style tgapi.KeyboardButtonStyle
|
||||||
url string
|
url string
|
||||||
callbackData string
|
callbackData string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// NewInlineKbButton creates a new button builder with the given display text.
|
||||||
|
// The button will have no URL, no style, and no callback data by default.
|
||||||
func NewInlineKbButton(text string) InlineKbButtonBuilder {
|
func NewInlineKbButton(text string) InlineKbButtonBuilder {
|
||||||
return InlineKbButtonBuilder{text: text}
|
return InlineKbButtonBuilder{text: text}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// SetIconCustomEmojiId sets a custom emoji ID to display as the button's icon.
|
||||||
|
// This is a Telegram Bot API feature for custom emoji icons.
|
||||||
func (b InlineKbButtonBuilder) SetIconCustomEmojiId(id string) InlineKbButtonBuilder {
|
func (b InlineKbButtonBuilder) SetIconCustomEmojiId(id string) InlineKbButtonBuilder {
|
||||||
b.iconCustomEmojiID = id
|
b.iconCustomEmojiID = id
|
||||||
return b
|
return b
|
||||||
}
|
}
|
||||||
func (b InlineKbButtonBuilder) SetStyle(style InlineKeyboardButtonStyle) InlineKbButtonBuilder {
|
|
||||||
|
// SetStyle sets the visual style of the button.
|
||||||
|
// Valid values: ButtonStyleDanger, ButtonStyleSuccess, ButtonStylePrimary.
|
||||||
|
// If not set, the button uses the default style.
|
||||||
|
func (b InlineKbButtonBuilder) SetStyle(style tgapi.KeyboardButtonStyle) InlineKbButtonBuilder {
|
||||||
b.style = style
|
b.style = style
|
||||||
return b
|
return b
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// SetUrl sets a URL that will be opened when the button is pressed.
|
||||||
|
// If both URL and CallbackData are set, Telegram will prioritize URL.
|
||||||
func (b InlineKbButtonBuilder) SetUrl(url string) InlineKbButtonBuilder {
|
func (b InlineKbButtonBuilder) SetUrl(url string) InlineKbButtonBuilder {
|
||||||
b.url = url
|
b.url = url
|
||||||
return b
|
return b
|
||||||
}
|
}
|
||||||
func (b InlineKbButtonBuilder) SetCallbackData(data *CallbackData) InlineKbButtonBuilder {
|
|
||||||
b.callbackData = data.ToJson()
|
// SetCallbackData sets a structured callback payload that will be sent to the bot
|
||||||
|
// when the button is pressed. The command and arguments are serialized as JSON.
|
||||||
|
//
|
||||||
|
// Args are converted to strings using fmt.Sprint. Non-string types (e.g., int, bool)
|
||||||
|
// are safely serialized, but complex structs may not serialize usefully.
|
||||||
|
//
|
||||||
|
// Example: SetCallbackData("delete_user", 123, "confirm") → {"cmd":"delete_user","args":["123","confirm"]}
|
||||||
|
func (b InlineKbButtonBuilder) SetCallbackData(cmd string, args ...any) InlineKbButtonBuilder {
|
||||||
|
b.callbackData = NewCallbackData(cmd, args...).ToJson()
|
||||||
return b
|
return b
|
||||||
}
|
}
|
||||||
|
|
||||||
func (b InlineKbButtonBuilder) build() InlineKeyboardButton {
|
// build converts the builder state into a tgapi.InlineKeyboardButton.
|
||||||
return InlineKeyboardButton{
|
// This method is typically called internally by InlineKeyboard.AddButton().
|
||||||
|
func (b InlineKbButtonBuilder) build() tgapi.InlineKeyboardButton {
|
||||||
|
return tgapi.InlineKeyboardButton{
|
||||||
Text: b.text,
|
Text: b.text,
|
||||||
URL: b.url,
|
URL: b.url,
|
||||||
Style: b.style,
|
Style: b.style,
|
||||||
@@ -45,62 +98,119 @@ func (b InlineKbButtonBuilder) build() InlineKeyboardButton {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// InlineKeyboard is a stateful builder for constructing Telegram inline keyboard layouts.
|
||||||
|
//
|
||||||
|
// Buttons are added row-by-row. When a row reaches maxRow, it is automatically flushed.
|
||||||
|
// Call AddLine() to manually end a row, or Get() to finalize and retrieve the markup.
|
||||||
|
//
|
||||||
|
// The keyboard is not thread-safe. Build it in a single goroutine.
|
||||||
type InlineKeyboard struct {
|
type InlineKeyboard struct {
|
||||||
CurrentLine extypes.Slice[InlineKeyboardButton]
|
CurrentLine extypes.Slice[tgapi.InlineKeyboardButton] // Current row being built
|
||||||
Lines [][]InlineKeyboardButton
|
Lines [][]tgapi.InlineKeyboardButton // Completed rows
|
||||||
maxRow int
|
maxRow int // Max buttons per row (e.g., 3 or 4)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// NewInlineKeyboard creates a new keyboard builder with the specified maximum
|
||||||
|
// number of buttons per row.
|
||||||
|
//
|
||||||
|
// Example: NewInlineKeyboard(3) creates a keyboard with at most 3 buttons per line.
|
||||||
func NewInlineKeyboard(maxRow int) *InlineKeyboard {
|
func NewInlineKeyboard(maxRow int) *InlineKeyboard {
|
||||||
return &InlineKeyboard{
|
return &InlineKeyboard{
|
||||||
CurrentLine: make(extypes.Slice[InlineKeyboardButton], 0),
|
CurrentLine: make(extypes.Slice[tgapi.InlineKeyboardButton], 0),
|
||||||
Lines: make([][]InlineKeyboardButton, 0),
|
Lines: make([][]tgapi.InlineKeyboardButton, 0),
|
||||||
maxRow: maxRow,
|
maxRow: maxRow,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (in *InlineKeyboard) append(button InlineKeyboardButton) *InlineKeyboard {
|
// append adds a button to the current line. If the line is full, it auto-flushes.
|
||||||
|
// This is an internal helper used by other builder methods.
|
||||||
|
func (in *InlineKeyboard) append(button tgapi.InlineKeyboardButton) *InlineKeyboard {
|
||||||
if in.CurrentLine.Len() == in.maxRow {
|
if in.CurrentLine.Len() == in.maxRow {
|
||||||
in.AddLine()
|
in.AddLine()
|
||||||
}
|
}
|
||||||
in.CurrentLine = in.CurrentLine.Push(button)
|
in.CurrentLine = in.CurrentLine.Push(button)
|
||||||
return in
|
return in
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// AddUrlButton adds a button that opens a URL when pressed.
|
||||||
|
// No callback data is attached.
|
||||||
func (in *InlineKeyboard) AddUrlButton(text, url string) *InlineKeyboard {
|
func (in *InlineKeyboard) AddUrlButton(text, url string) *InlineKeyboard {
|
||||||
return in.append(InlineKeyboardButton{Text: text, URL: url})
|
return in.append(tgapi.InlineKeyboardButton{Text: text, URL: url})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// AddUrlButtonStyle adds a button with a visual style that opens a URL.
|
||||||
|
// Style must be one of: ButtonStyleDanger, ButtonStyleSuccess, ButtonStylePrimary.
|
||||||
|
func (in *InlineKeyboard) AddUrlButtonStyle(text string, style tgapi.KeyboardButtonStyle, url string) *InlineKeyboard {
|
||||||
|
return in.append(tgapi.InlineKeyboardButton{Text: text, Style: style, URL: url})
|
||||||
|
}
|
||||||
|
|
||||||
|
// AddCallbackButton adds a button that sends a structured callback payload to the bot.
|
||||||
|
// The command and args are serialized as JSON using NewCallbackData.
|
||||||
func (in *InlineKeyboard) AddCallbackButton(text string, cmd string, args ...any) *InlineKeyboard {
|
func (in *InlineKeyboard) AddCallbackButton(text string, cmd string, args ...any) *InlineKeyboard {
|
||||||
return in.append(InlineKeyboardButton{
|
return in.append(tgapi.InlineKeyboardButton{
|
||||||
Text: text, CallbackData: NewCallbackData(cmd, args...).ToJson(),
|
Text: text,
|
||||||
|
CallbackData: NewCallbackData(cmd, args...).ToJson(),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
func (in *InlineKeyboard) AddCustomButton(button InlineKeyboardButton) *InlineKeyboard {
|
|
||||||
return in.append(button)
|
// AddCallbackButtonStyle adds a styled callback button.
|
||||||
|
// Style affects visual appearance; callback data is sent to bot on press.
|
||||||
|
func (in *InlineKeyboard) AddCallbackButtonStyle(text string, style tgapi.KeyboardButtonStyle, cmd string, args ...any) *InlineKeyboard {
|
||||||
|
return in.append(tgapi.InlineKeyboardButton{
|
||||||
|
Text: text,
|
||||||
|
Style: style,
|
||||||
|
CallbackData: NewCallbackData(cmd, args...).ToJson(),
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// AddButton adds a button pre-configured via InlineKbButtonBuilder.
|
||||||
|
// This is the most flexible way to create buttons with custom emoji, style, URL, and callback.
|
||||||
func (in *InlineKeyboard) AddButton(b InlineKbButtonBuilder) *InlineKeyboard {
|
func (in *InlineKeyboard) AddButton(b InlineKbButtonBuilder) *InlineKeyboard {
|
||||||
return in.append(b.build())
|
return in.append(b.build())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// AddLine manually ends the current row and starts a new one.
|
||||||
|
// If the current row is empty, nothing happens.
|
||||||
func (in *InlineKeyboard) AddLine() *InlineKeyboard {
|
func (in *InlineKeyboard) AddLine() *InlineKeyboard {
|
||||||
if in.CurrentLine.Len() == 0 {
|
if in.CurrentLine.Len() == 0 {
|
||||||
return in
|
return in
|
||||||
}
|
}
|
||||||
in.Lines = append(in.Lines, in.CurrentLine)
|
in.Lines = append(in.Lines, in.CurrentLine)
|
||||||
in.CurrentLine = make(extypes.Slice[InlineKeyboardButton], 0)
|
in.CurrentLine = make(extypes.Slice[tgapi.InlineKeyboardButton], 0)
|
||||||
return in
|
return in
|
||||||
}
|
}
|
||||||
func (in *InlineKeyboard) Get() *InlineKeyboardMarkup {
|
|
||||||
|
// Get finalizes the keyboard and returns a tgapi.ReplyMarkup.
|
||||||
|
// Automatically flushes the current line if not empty.
|
||||||
|
//
|
||||||
|
// Returns a pointer to a ReplyMarkup suitable for use with tgapi.SendMessage.
|
||||||
|
func (in *InlineKeyboard) Get() *tgapi.ReplyMarkup {
|
||||||
if in.CurrentLine.Len() > 0 {
|
if in.CurrentLine.Len() > 0 {
|
||||||
in.Lines = append(in.Lines, in.CurrentLine)
|
in.Lines = append(in.Lines, in.CurrentLine)
|
||||||
}
|
}
|
||||||
return &InlineKeyboardMarkup{InlineKeyboard: in.Lines}
|
return &tgapi.ReplyMarkup{InlineKeyboard: in.Lines}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// CallbackData represents the structured payload sent when an inline button
|
||||||
|
// with callback data is pressed.
|
||||||
|
//
|
||||||
|
// This structure is serialized to JSON and sent to the bot as a string.
|
||||||
|
// The bot should parse this back to determine the command and arguments.
|
||||||
|
//
|
||||||
|
// Example:
|
||||||
|
//
|
||||||
|
// {"cmd":"delete_user","args":["123","confirm"]}
|
||||||
type CallbackData struct {
|
type CallbackData struct {
|
||||||
Command string `json:"cmd"`
|
Command string `json:"cmd"` // The command name to route to
|
||||||
Args []string `json:"args"`
|
Args []string `json:"args"` // Arguments passed as strings
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// NewCallbackData creates a new CallbackData instance with the given command and args.
|
||||||
|
//
|
||||||
|
// All args are converted to strings using fmt.Sprint. This is safe for primitives
|
||||||
|
// (int, string, bool, float64) but may not serialize complex structs meaningfully.
|
||||||
|
//
|
||||||
|
// Use this to build callback payloads for bot command routing.
|
||||||
func NewCallbackData(command string, args ...any) *CallbackData {
|
func NewCallbackData(command string, args ...any) *CallbackData {
|
||||||
stringArgs := make([]string, len(args))
|
stringArgs := make([]string, len(args))
|
||||||
for i, arg := range args {
|
for i, arg := range args {
|
||||||
@@ -111,9 +221,18 @@ func NewCallbackData(command string, args ...any) *CallbackData {
|
|||||||
Args: stringArgs,
|
Args: stringArgs,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ToJson serializes the CallbackData to a JSON string.
|
||||||
|
//
|
||||||
|
// If serialization fails (e.g., due to unmarshalable fields), returns a fallback
|
||||||
|
// JSON object: {"cmd":""} to prevent breaking Telegram's API.
|
||||||
|
//
|
||||||
|
// This fallback ensures the bot receives a valid JSON payload even if internal
|
||||||
|
// errors occur — avoiding "invalid callback_data" errors from Telegram.
|
||||||
func (d *CallbackData) ToJson() string {
|
func (d *CallbackData) ToJson() string {
|
||||||
data, err := json.Marshal(d)
|
data, err := json.Marshal(d)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
// Fallback: return minimal valid JSON to avoid Telegram API rejection
|
||||||
return `{"cmd":""}`
|
return `{"cmd":""}`
|
||||||
}
|
}
|
||||||
return string(data)
|
return string(data)
|
||||||
|
|||||||
86
l10n.go
Normal file
86
l10n.go
Normal file
@@ -0,0 +1,86 @@
|
|||||||
|
// Package laniakea provides a simple, key-based localization system for
|
||||||
|
// multi-language text translation.
|
||||||
|
//
|
||||||
|
// The system supports:
|
||||||
|
// - Multiple language entries per key (e.g., "ru", "en", "es")
|
||||||
|
// - Fallback language for missing translations
|
||||||
|
// - Key-as-fallback behavior: if a key or language is not found, returns the key itself
|
||||||
|
//
|
||||||
|
// This is designed for lightweight, static localization in bots or services
|
||||||
|
// where dynamic translation services are unnecessary.
|
||||||
|
package laniakea
|
||||||
|
|
||||||
|
// DictEntry represents a single localized entry with language-to-text mappings.
|
||||||
|
// Example: {"ru": "Привет", "en": "Hello"}
|
||||||
|
type DictEntry map[string]string
|
||||||
|
|
||||||
|
// L10n is a localization manager that maps keys to language-specific strings.
|
||||||
|
type L10n struct {
|
||||||
|
entries map[string]DictEntry // Map of translation keys to language dictionaries
|
||||||
|
fallbackLang string // Language code to use when requested language is missing
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewL10n creates a new L10n instance with the specified fallback language.
|
||||||
|
// The fallback language is used when a requested language is not available
|
||||||
|
// for a given key.
|
||||||
|
//
|
||||||
|
// Example: NewL10n("en") will return "Hello" for key "greeting" if "ru" is requested
|
||||||
|
// but no "ru" entry exists.
|
||||||
|
func NewL10n(fallbackLanguage string) *L10n {
|
||||||
|
return &L10n{
|
||||||
|
entries: make(map[string]DictEntry),
|
||||||
|
fallbackLang: fallbackLanguage,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// AddDictEntry adds a new translation entry for the given key.
|
||||||
|
// The value must be a DictEntry mapping language codes (e.g., "en", "ru") to their translated strings.
|
||||||
|
//
|
||||||
|
// If a key already exists, it is overwritten.
|
||||||
|
//
|
||||||
|
// Returns the L10n instance for method chaining.
|
||||||
|
func (l *L10n) AddDictEntry(key string, value DictEntry) *L10n {
|
||||||
|
l.entries[key] = value
|
||||||
|
return l
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetFallbackLanguage returns the currently configured fallback language code.
|
||||||
|
func (l *L10n) GetFallbackLanguage() string {
|
||||||
|
return l.fallbackLang
|
||||||
|
}
|
||||||
|
|
||||||
|
// Translate retrieves the translation for the given key and language.
|
||||||
|
//
|
||||||
|
// Behavior:
|
||||||
|
// - If the key exists and the language has a translation → returns the translation
|
||||||
|
// - If the key exists but the language is missing → returns the fallback language's value
|
||||||
|
// - If the key does not exist → returns the key string itself (as fallback)
|
||||||
|
//
|
||||||
|
// Example:
|
||||||
|
//
|
||||||
|
// l.AddDictEntry("greeting", DictEntry{"en": "Hello", "ru": "Привет"})
|
||||||
|
// l.Translate("en", "greeting") → "Hello"
|
||||||
|
// l.Translate("es", "greeting") → "Hello" (fallback to "en")
|
||||||
|
// l.Translate("en", "unknown") → "unknown" (key not found)
|
||||||
|
//
|
||||||
|
// This behavior ensures that missing translations do not break UI or logs —
|
||||||
|
// instead, the original key is displayed, making it easy to identify gaps.
|
||||||
|
func (l *L10n) Translate(lang, key string) string {
|
||||||
|
entries, exists := l.entries[key]
|
||||||
|
if !exists {
|
||||||
|
return key // Return key as fallback when translation is missing
|
||||||
|
}
|
||||||
|
|
||||||
|
// Try requested language
|
||||||
|
if translation, ok := entries[lang]; ok {
|
||||||
|
return translation
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fall back to configured fallback language
|
||||||
|
if fallback, ok := entries[l.fallbackLang]; ok {
|
||||||
|
return fallback
|
||||||
|
}
|
||||||
|
|
||||||
|
// If fallback language is also missing, return the key
|
||||||
|
return key
|
||||||
|
}
|
||||||
357
methods.go
357
methods.go
@@ -2,359 +2,34 @@ package laniakea
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
|
||||||
|
"git.nix13.pw/scuroneko/laniakea/tgapi"
|
||||||
)
|
)
|
||||||
|
|
||||||
type EmptyParams struct{}
|
func (bot *Bot[T]) Updates() ([]tgapi.Update, error) {
|
||||||
|
offset := bot.GetUpdateOffset()
|
||||||
var NoParams = EmptyParams{}
|
params := tgapi.UpdateParams{
|
||||||
|
Offset: Ptr(offset),
|
||||||
type UpdateParams struct {
|
Timeout: Ptr(30),
|
||||||
Offset int `json:"offset"`
|
AllowedUpdates: bot.GetUpdateTypes(),
|
||||||
Timeout int `json:"timeout"`
|
|
||||||
AllowedUpdates []string `json:"allowed_updates"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (b *Bot) Updates() ([]*Update, error) {
|
|
||||||
params := UpdateParams{
|
|
||||||
Offset: b.updateOffset,
|
|
||||||
Timeout: 30,
|
|
||||||
AllowedUpdates: b.updateTypes,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
req := NewRequest[[]*Update]("getUpdates", params)
|
updates, err := bot.api.GetUpdates(params)
|
||||||
res, err := req.Do(b.api)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, u := range *res {
|
if bot.RequestLogger != nil {
|
||||||
b.updateOffset = u.UpdateID + 1
|
for _, u := range updates {
|
||||||
err = b.updateQueue.Enqueue(u)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
if b.requestLogger != nil {
|
|
||||||
j, err := json.Marshal(u)
|
j, err := json.Marshal(u)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
b.logger.Error(err)
|
bot.GetLogger().Error(err)
|
||||||
}
|
}
|
||||||
b.requestLogger.Debugf("UPDATE %s\n", j)
|
bot.RequestLogger.Debugf("UPDATE %s\n", j)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return *res, err
|
if len(updates) > 0 {
|
||||||
}
|
bot.SetUpdateOffset(updates[len(updates)-1].UpdateID + 1)
|
||||||
|
|
||||||
func (api *Api) GetMe() (*User, error) {
|
|
||||||
req := NewRequest[User, EmptyParams]("getMe", NoParams)
|
|
||||||
return req.Do(api)
|
|
||||||
}
|
|
||||||
func (api *Api) LogOut() (bool, error) {
|
|
||||||
req := NewRequest[bool, EmptyParams]("logOut", NoParams)
|
|
||||||
res, err := req.Do(api)
|
|
||||||
if err != nil {
|
|
||||||
return false, err
|
|
||||||
}
|
}
|
||||||
return *res, nil
|
return updates, err
|
||||||
}
|
|
||||||
func (api *Api) Close() (bool, error) {
|
|
||||||
req := NewRequest[bool, EmptyParams]("close", NoParams)
|
|
||||||
res, err := req.Do(api)
|
|
||||||
if err != nil {
|
|
||||||
return false, err
|
|
||||||
}
|
|
||||||
return *res, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
type SendMessageP struct {
|
|
||||||
BusinessConnectionID string `json:"business_connection_id,omitempty"`
|
|
||||||
ChatID int `json:"chat_id"`
|
|
||||||
MessageThreadID int `json:"message_thread_id,omitempty"`
|
|
||||||
DirectMessageTopicID int `json:"direct_message_topic_id,omitempty"`
|
|
||||||
|
|
||||||
Text string `json:"text"`
|
|
||||||
ParseMode ParseMode `json:"parse_mode,omitempty"`
|
|
||||||
Entities []*MessageEntity `json:"entities,omitempty"`
|
|
||||||
LinkPreviewOptions *LinkPreviewOptions `json:"link_preview_options,omitempty"`
|
|
||||||
DisableNotifications bool `json:"disable_notifications,omitempty"`
|
|
||||||
ProtectContent bool `json:"protect_content,omitempty"`
|
|
||||||
AllowPaidBroadcast bool `json:"allow_paid_broadcast,omitempty"`
|
|
||||||
MessageEffectID string `json:"message_effect_id,omitempty"`
|
|
||||||
|
|
||||||
SuggestedPostParameters *SuggestedPostParameters `json:"suggested_post_parameters,omitempty"`
|
|
||||||
ReplyParameters *ReplyParameters `json:"reply_parameters,omitempty"`
|
|
||||||
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (api *Api) SendMessage(params *SendMessageP) (*Message, error) {
|
|
||||||
req := NewRequest[Message, SendMessageP]("sendMessage", *params)
|
|
||||||
return req.Do(api)
|
|
||||||
}
|
|
||||||
|
|
||||||
type ForwardMessageP struct {
|
|
||||||
ChatID int `json:"chat_id"`
|
|
||||||
MessageThreadID int `json:"message_thread_id,omitempty"`
|
|
||||||
DirectMessageTopicID int `json:"direct_message_topic_id,omitempty"`
|
|
||||||
|
|
||||||
MessageID int `json:"message_id,omitempty"`
|
|
||||||
FromChatID int `json:"from_chat_id,omitempty"`
|
|
||||||
VideoStartTimestamp int `json:"video_start_timestamp,omitempty"`
|
|
||||||
DisableNotification bool `json:"disable_notification,omitempty"`
|
|
||||||
ProtectContent bool `json:"protect_content,omitempty"`
|
|
||||||
|
|
||||||
MessageEffectID string `json:"message_effect_id,omitempty"`
|
|
||||||
SuggestedPostParameters *SuggestedPostParameters `json:"suggested_post_parameters,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (api *Api) ForwardMessage(params ForwardMessageP) (*Message, error) {
|
|
||||||
req := NewRequest[Message]("forwardMessage", params)
|
|
||||||
return req.Do(api)
|
|
||||||
}
|
|
||||||
|
|
||||||
type ForwardMessagesP struct {
|
|
||||||
ChatID int `json:"chat_id"`
|
|
||||||
MessageThreadID int `json:"message_thread_id,omitempty"`
|
|
||||||
DirectMessageTopicID int `json:"direct_message_topic_id,omitempty"`
|
|
||||||
|
|
||||||
FromChatID int `json:"from_chat_id,omitempty"`
|
|
||||||
MessageIDs []int `json:"message_ids,omitempty"`
|
|
||||||
DisableNotification bool `json:"disable_notification,omitempty"`
|
|
||||||
ProtectContent bool `json:"protect_content,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (api *Api) ForwardMessages(params ForwardMessagesP) ([]int, error) {
|
|
||||||
req := NewRequest[[]int]("forwardMessages", params)
|
|
||||||
res, err := req.Do(api)
|
|
||||||
if err != nil {
|
|
||||||
return []int{}, err
|
|
||||||
}
|
|
||||||
return *res, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
type CopyMessageP struct {
|
|
||||||
ChatID int `json:"chat_id"`
|
|
||||||
MessageThreadID int `json:"message_thread_id,omitempty"`
|
|
||||||
DirectMessageTopicID int `json:"direct_message_topic_id,omitempty"`
|
|
||||||
|
|
||||||
FromChatID int `json:"from_chat_id"`
|
|
||||||
MessageID int `json:"message_id"`
|
|
||||||
VideoStartTimestamp int `json:"video_start_timestamp,omitempty"`
|
|
||||||
Caption string `json:"caption,omitempty"`
|
|
||||||
ParseMode ParseMode `json:"parse_mode,omitempty"`
|
|
||||||
|
|
||||||
CaptionEntities []*MessageEntity `json:"caption_entities,omitempty"`
|
|
||||||
ShowCaptionAboveMedia bool `json:"show_caption_above_media,omitempty"`
|
|
||||||
DisableNotification bool `json:"disable_notification,omitempty"`
|
|
||||||
ProtectContent bool `json:"protect_content,omitempty"`
|
|
||||||
AllowPaidBroadcast bool `json:"allow_paid_broadcast,omitempty"`
|
|
||||||
MessageEffectID string `json:"message_effect_id,omitempty"`
|
|
||||||
|
|
||||||
SuggestedPostParameters *SuggestedPostParameters `json:"suggested_post_parameters,omitempty"`
|
|
||||||
ReplyParameters *ReplyParameters `json:"reply_parameters,omitempty"`
|
|
||||||
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (api *Api) CopyMessage(params CopyMessageP) (int, error) {
|
|
||||||
req := NewRequest[int]("copyMessage", params)
|
|
||||||
res, err := req.Do(api)
|
|
||||||
if err != nil {
|
|
||||||
return 0, err
|
|
||||||
}
|
|
||||||
return *res, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
type CopyMessagesP struct {
|
|
||||||
ChatID int `json:"chat_id"`
|
|
||||||
MessageThreadID int `json:"message_thread_id,omitempty"`
|
|
||||||
DirectMessageTopicID int `json:"direct_message_topic_id,omitempty"`
|
|
||||||
|
|
||||||
FromChatID int `json:"from_chat_id,omitempty"`
|
|
||||||
MessageIDs []int `json:"message_ids,omitempty"`
|
|
||||||
DisableNotification bool `json:"disable_notification,omitempty"`
|
|
||||||
ProtectContent bool `json:"protect_content,omitempty"`
|
|
||||||
RemoveCaption bool `json:"remove_caption,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (api *Api) CopyMessages(params CopyMessagesP) ([]int, error) {
|
|
||||||
req := NewRequest[[]int]("copyMessages", params)
|
|
||||||
res, err := req.Do(api)
|
|
||||||
if err != nil {
|
|
||||||
return []int{}, err
|
|
||||||
}
|
|
||||||
return *res, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
type SendPhotoBaseP struct {
|
|
||||||
BusinessConnectionID string `json:"business_connection_id,omitempty"`
|
|
||||||
ChatID int `json:"chat_id"`
|
|
||||||
MessageThreadID int `json:"message_thread_id,omitempty"`
|
|
||||||
ParseMode ParseMode `json:"parse_mode,omitempty"`
|
|
||||||
Caption string `json:"caption,omitempty"`
|
|
||||||
CaptionEntities []*MessageEntity `json:"caption_entities,omitempty"`
|
|
||||||
ShowCaptionAboveMedia bool `json:"show_caption_above_media,omitempty"`
|
|
||||||
HasSpoiler bool `json:"has_spoiler,omitempty"`
|
|
||||||
DisableNotifications bool `json:"disable_notifications,omitempty"`
|
|
||||||
ProtectContent bool `json:"protect_content,omitempty"`
|
|
||||||
AllowPaidBroadcast bool `json:"allow_paid_broadcast,omitempty"`
|
|
||||||
MessageEffectID string `json:"message_effect_id,omitempty"`
|
|
||||||
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
|
|
||||||
}
|
|
||||||
type SendPhotoP struct {
|
|
||||||
BusinessConnectionID string `json:"business_connection_id,omitempty"`
|
|
||||||
ChatID int `json:"chat_id"`
|
|
||||||
MessageThreadID int `json:"message_thread_id,omitempty"`
|
|
||||||
DirectMessagesTopicID int `json:"direct_messages_topic_id,omitempty"`
|
|
||||||
|
|
||||||
Photo string `json:"photo"`
|
|
||||||
Caption string `json:"caption,omitempty"`
|
|
||||||
ParseMode ParseMode `json:"parse_mode,omitempty"`
|
|
||||||
CaptionEntities []*MessageEntity `json:"caption_entities,omitempty"`
|
|
||||||
|
|
||||||
ShowCaptionAboveMedia bool `json:"show_caption_above_media,omitempty"`
|
|
||||||
HasSpoiler bool `json:"has_spoiler,omitempty"`
|
|
||||||
DisableNotifications bool `json:"disable_notifications,omitempty"`
|
|
||||||
ProtectContent bool `json:"protect_content,omitempty"`
|
|
||||||
AllowPaidBroadcast bool `json:"allow_paid_broadcast,omitempty"`
|
|
||||||
MessageEffectID string `json:"message_effect_id,omitempty"`
|
|
||||||
|
|
||||||
SuggestedPostParameters *SuggestedPostParameters `json:"suggested_post_parameters,omitempty"`
|
|
||||||
ReplyParameters *ReplyParameters `json:"reply_parameters,omitempty"`
|
|
||||||
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (api *Api) SendPhoto(params *SendPhotoP) (*Message, error) {
|
|
||||||
req := NewRequest[Message]("sendPhoto", params)
|
|
||||||
return req.Do(api)
|
|
||||||
}
|
|
||||||
|
|
||||||
type EditMessageTextP struct {
|
|
||||||
BusinessConnectionID string `json:"business_connection_id,omitempty"`
|
|
||||||
ChatID int `json:"chat_id,omitempty"`
|
|
||||||
MessageID int `json:"message_id,omitempty"`
|
|
||||||
InlineMessageID string `json:"inline_message_id,omitempty"`
|
|
||||||
Text string `json:"text"`
|
|
||||||
ParseMode ParseMode `json:"parse_mode,omitempty"`
|
|
||||||
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (api *Api) EditMessageText(params *EditMessageTextP) (*Message, error) {
|
|
||||||
req := NewRequest[Message]("editMessageText", params)
|
|
||||||
return req.Do(api)
|
|
||||||
}
|
|
||||||
|
|
||||||
type EditMessageCaptionP struct {
|
|
||||||
BusinessConnectionID string `json:"business_connection_id,omitempty"`
|
|
||||||
ChatID int `json:"chat_id,omitempty"`
|
|
||||||
MessageID int `json:"message_id,omitempty"`
|
|
||||||
InlineMessageID string `json:"inline_message_id,omitempty"`
|
|
||||||
Caption string `json:"caption"`
|
|
||||||
ParseMode ParseMode `json:"parse_mode,omitempty"`
|
|
||||||
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (api *Api) EditMessageCaption(params *EditMessageCaptionP) (*Message, error) {
|
|
||||||
req := NewRequest[Message]("editMessageCaption", params)
|
|
||||||
return req.Do(api)
|
|
||||||
}
|
|
||||||
|
|
||||||
type DeleteMessageP struct {
|
|
||||||
ChatID int `json:"chat_id"`
|
|
||||||
MessageID int `json:"message_id"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (api *Api) DeleteMessage(params *DeleteMessageP) (bool, error) {
|
|
||||||
req := NewRequest[bool]("deleteMessage", params)
|
|
||||||
ok, err := req.Do(api)
|
|
||||||
if err != nil {
|
|
||||||
return false, err
|
|
||||||
}
|
|
||||||
return *ok, err
|
|
||||||
}
|
|
||||||
|
|
||||||
type AnswerCallbackQueryP struct {
|
|
||||||
CallbackQueryID string `json:"callback_query_id"`
|
|
||||||
Text string `json:"text,omitempty"`
|
|
||||||
ShowAlert bool `json:"show_alert,omitempty"`
|
|
||||||
URL string `json:"url,omitempty"`
|
|
||||||
CacheTime int `json:"cache_time,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (api *Api) AnswerCallbackQuery(params *AnswerCallbackQueryP) (bool, error) {
|
|
||||||
req := NewRequest[bool]("answerCallbackQuery", params)
|
|
||||||
ok, err := req.Do(api)
|
|
||||||
if err != nil {
|
|
||||||
return false, err
|
|
||||||
}
|
|
||||||
return *ok, err
|
|
||||||
}
|
|
||||||
|
|
||||||
type GetFileP struct {
|
|
||||||
FileId string `json:"file_id"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (api *Api) GetFile(params *GetFileP) (*File, error) {
|
|
||||||
req := NewRequest[File]("getFile", params)
|
|
||||||
return req.Do(api)
|
|
||||||
}
|
|
||||||
|
|
||||||
type SendChatActionP struct {
|
|
||||||
BusinessConnectionID string `json:"business_connection_id,omitempty"`
|
|
||||||
ChatID int `json:"chat_id"`
|
|
||||||
MessageThreadID int `json:"message_thread_id,omitempty"`
|
|
||||||
Action ChatActions `json:"action"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (api *Api) SendChatAction(params SendChatActionP) (bool, error) {
|
|
||||||
req := NewRequest[bool]("sendChatAction", params)
|
|
||||||
res, err := req.Do(api)
|
|
||||||
if err != nil {
|
|
||||||
return false, err
|
|
||||||
}
|
|
||||||
return *res, err
|
|
||||||
}
|
|
||||||
|
|
||||||
type SetMessageReactionP struct {
|
|
||||||
ChatId int `json:"chat_id"`
|
|
||||||
MessageId int `json:"message_id"`
|
|
||||||
IsBig bool `json:"is_big,omitempty"`
|
|
||||||
}
|
|
||||||
type SetMessageReactionEmojiP struct {
|
|
||||||
SetMessageReactionP
|
|
||||||
Reaction []ReactionTypeEmoji `json:"reaction"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (api *Api) SetMessageReactionEmoji(params SetMessageReactionEmojiP) (bool, error) {
|
|
||||||
req := NewRequest[bool]("setMessageReaction", params)
|
|
||||||
res, err := req.Do(api)
|
|
||||||
if err != nil {
|
|
||||||
return false, err
|
|
||||||
}
|
|
||||||
return *res, err
|
|
||||||
}
|
|
||||||
|
|
||||||
type SetMessageReactionCustomEmojiP struct {
|
|
||||||
SetMessageReactionP
|
|
||||||
Reaction []ReactionTypeCustomEmoji `json:"reaction"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (api *Api) SetMessageReactionCustom(params SetMessageReactionCustomEmojiP) (bool, error) {
|
|
||||||
req := NewRequest[bool]("setMessageReaction", params)
|
|
||||||
res, err := req.Do(api)
|
|
||||||
if err != nil {
|
|
||||||
return false, err
|
|
||||||
}
|
|
||||||
return *res, err
|
|
||||||
}
|
|
||||||
|
|
||||||
type SetMessageReactionPaidP struct {
|
|
||||||
SetMessageReactionP
|
|
||||||
}
|
|
||||||
|
|
||||||
func (api *Api) SetMessageReactionPaid(params SetMessageReactionPaidP) (bool, error) {
|
|
||||||
req := NewRequest[bool]("setMessageReaction", params)
|
|
||||||
res, err := req.Do(api)
|
|
||||||
if err != nil {
|
|
||||||
return false, err
|
|
||||||
}
|
|
||||||
return *res, err
|
|
||||||
}
|
}
|
||||||
|
|||||||
377
msg_context.go
377
msg_context.go
@@ -1,210 +1,415 @@
|
|||||||
|
// Package laniakea provides a high-level context-based API for handling Telegram
|
||||||
|
// bot interactions, including message responses, callback queries, inline keyboards,
|
||||||
|
// localization, and message drafting. It wraps tgapi and adds convenience methods
|
||||||
|
// with built-in rate limiting, error handling, and i18n support.
|
||||||
|
//
|
||||||
|
// The core type is MsgContext, which encapsulates the state of a Telegram update
|
||||||
|
// and provides methods to respond, edit, delete, and translate messages.
|
||||||
|
//
|
||||||
|
// # Markdown Safety Warning
|
||||||
|
//
|
||||||
|
// All methods that accept MarkdownV2 formatting (e.g., AnswerMarkdown, EditCallbackfMarkdown)
|
||||||
|
// require that user-provided text be escaped using laniakea.EscapeMarkdownV2().
|
||||||
|
// Failure to escape user input may result in Telegram API errors, malformed messages,
|
||||||
|
// or security issues.
|
||||||
|
//
|
||||||
|
// Example:
|
||||||
|
//
|
||||||
|
// text := laniakea.EscapeMarkdownV2(userInput)
|
||||||
|
// ctx.AnswerMarkdown("You said: " + text)
|
||||||
package laniakea
|
package laniakea
|
||||||
|
|
||||||
import "fmt"
|
import (
|
||||||
|
"context"
|
||||||
|
"fmt"
|
||||||
|
|
||||||
|
"git.nix13.pw/scuroneko/laniakea/tgapi"
|
||||||
|
"git.nix13.pw/scuroneko/slog"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgContext holds the context for handling a Telegram message or callback query.
|
||||||
|
// It provides methods to respond, edit, delete, and translate messages, as well as
|
||||||
|
// manage inline keyboards and message drafts.
|
||||||
type MsgContext struct {
|
type MsgContext struct {
|
||||||
Bot *Bot
|
Api *tgapi.API
|
||||||
Api *Api
|
Msg *tgapi.Message
|
||||||
|
Update tgapi.Update
|
||||||
Msg *Message
|
From *tgapi.User
|
||||||
Update *Update
|
|
||||||
From *User
|
|
||||||
CallbackMsgId int
|
CallbackMsgId int
|
||||||
CallbackQueryId string
|
CallbackQueryId string
|
||||||
FromID int
|
FromID int
|
||||||
Prefix string
|
Prefix string
|
||||||
Text string
|
Text string
|
||||||
Args []string
|
Args []string
|
||||||
|
|
||||||
|
errorTemplate string
|
||||||
|
botLogger *slog.Logger
|
||||||
|
l10n *L10n
|
||||||
|
draftProvider *DraftProvider
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// AnswerMessage represents a message sent or edited via MsgContext.
|
||||||
|
// It holds metadata to allow further editing or deletion.
|
||||||
type AnswerMessage struct {
|
type AnswerMessage struct {
|
||||||
MessageID int
|
MessageID int
|
||||||
Text string
|
Text string
|
||||||
IsMedia bool
|
IsMedia bool
|
||||||
Keyboard *InlineKeyboard
|
ctx *MsgContext // internal back-reference
|
||||||
ctx *MsgContext
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ctx *MsgContext) edit(messageId int, text string, keyboard *InlineKeyboard) *AnswerMessage {
|
// edit is an internal helper to edit a message's text with optional keyboard and parse mode.
|
||||||
params := &EditMessageTextP{
|
// Used by Edit, EditMarkdown, EditCallback, etc.
|
||||||
|
func (ctx *MsgContext) edit(messageId int, text string, keyboard *InlineKeyboard, parseMode tgapi.ParseMode) *AnswerMessage {
|
||||||
|
params := tgapi.EditMessageTextP{
|
||||||
MessageID: messageId,
|
MessageID: messageId,
|
||||||
ChatID: ctx.Msg.Chat.ID,
|
ChatID: ctx.Msg.Chat.ID,
|
||||||
Text: text,
|
Text: text,
|
||||||
ParseMode: ParseMD,
|
ParseMode: parseMode,
|
||||||
}
|
}
|
||||||
if keyboard != nil {
|
if keyboard != nil {
|
||||||
params.ReplyMarkup = keyboard.Get()
|
params.ReplyMarkup = keyboard.Get()
|
||||||
}
|
}
|
||||||
msg, err := ctx.Api.EditMessageText(params)
|
msg, _, err := ctx.Api.EditMessageText(params)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.Api.logger.Errorln(err)
|
ctx.botLogger.Errorln(err)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
return &AnswerMessage{
|
return &AnswerMessage{
|
||||||
MessageID: msg.MessageID, ctx: ctx, Text: text, IsMedia: false,
|
MessageID: msg.MessageID, ctx: ctx, Text: text, IsMedia: false,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Edit replaces the text of the message without changing the keyboard or parse mode.
|
||||||
|
// Uses ParseNone (plain text).
|
||||||
func (m *AnswerMessage) Edit(text string) *AnswerMessage {
|
func (m *AnswerMessage) Edit(text string) *AnswerMessage {
|
||||||
return m.ctx.edit(m.MessageID, text, nil)
|
return m.ctx.edit(m.MessageID, text, nil, tgapi.ParseNone)
|
||||||
}
|
}
|
||||||
func (ctx *MsgContext) EditCallback(text string, keyboard *InlineKeyboard) *AnswerMessage {
|
|
||||||
|
// EditMarkdown replaces the text of the message using MarkdownV2 formatting.
|
||||||
|
//
|
||||||
|
// ⚠️ WARNING: User input must be escaped with laniakea.EscapeMarkdownV2() before passing here.
|
||||||
|
// Unescaped input may cause Telegram API errors or broken formatting.
|
||||||
|
func (m *AnswerMessage) EditMarkdown(text string) *AnswerMessage {
|
||||||
|
return m.ctx.edit(m.MessageID, text, nil, tgapi.ParseMDV2)
|
||||||
|
}
|
||||||
|
|
||||||
|
// editCallback is an internal helper to edit the message associated with a callback query.
|
||||||
|
// Returns nil if CallbackMsgId is 0 (not a callback context).
|
||||||
|
func (ctx *MsgContext) editCallback(text string, keyboard *InlineKeyboard, parseMode tgapi.ParseMode) *AnswerMessage {
|
||||||
if ctx.CallbackMsgId == 0 {
|
if ctx.CallbackMsgId == 0 {
|
||||||
ctx.Api.logger.Errorln("Can't edit non-callback update message")
|
ctx.botLogger.Errorln("Can't edit non-callback update message")
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
return ctx.edit(ctx.CallbackMsgId, text, keyboard, parseMode)
|
||||||
return ctx.edit(ctx.CallbackMsgId, text, keyboard)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// EditCallback edits the callback message using plain text (ParseNone).
|
||||||
|
func (ctx *MsgContext) EditCallback(text string, keyboard *InlineKeyboard) *AnswerMessage {
|
||||||
|
return ctx.editCallback(text, keyboard, tgapi.ParseNone)
|
||||||
|
}
|
||||||
|
|
||||||
|
// EditCallbackMarkdown edits the callback message using MarkdownV2.
|
||||||
|
//
|
||||||
|
// ⚠️ WARNING: User input must be escaped with laniakea.EscapeMarkdownV2() before passing here.
|
||||||
|
func (ctx *MsgContext) EditCallbackMarkdown(text string, keyboard *InlineKeyboard) *AnswerMessage {
|
||||||
|
return ctx.editCallback(text, keyboard, tgapi.ParseMDV2)
|
||||||
|
}
|
||||||
|
|
||||||
|
// EditCallbackf formats a string using fmt.Sprintf and edits the callback message with plain text.
|
||||||
func (ctx *MsgContext) EditCallbackf(format string, keyboard *InlineKeyboard, args ...any) *AnswerMessage {
|
func (ctx *MsgContext) EditCallbackf(format string, keyboard *InlineKeyboard, args ...any) *AnswerMessage {
|
||||||
return ctx.EditCallback(fmt.Sprintf(format, args...), keyboard)
|
return ctx.editCallback(fmt.Sprintf(format, args...), keyboard, tgapi.ParseNone)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ctx *MsgContext) editPhotoText(messageId int, text string, kb *InlineKeyboard) *AnswerMessage {
|
// EditCallbackfMarkdown formats a string using fmt.Sprintf and edits the callback message with MarkdownV2.
|
||||||
params := &EditMessageCaptionP{
|
//
|
||||||
|
// ⚠️ WARNING: User input must be escaped with laniakea.EscapeMarkdownV2() before passing here.
|
||||||
|
func (ctx *MsgContext) EditCallbackfMarkdown(format string, keyboard *InlineKeyboard, args ...any) *AnswerMessage {
|
||||||
|
return ctx.editCallback(fmt.Sprintf(format, args...), keyboard, tgapi.ParseMDV2)
|
||||||
|
}
|
||||||
|
|
||||||
|
// editPhotoText edits the caption of a photo/video message.
|
||||||
|
// Returns nil if messageId is 0.
|
||||||
|
func (ctx *MsgContext) editPhotoText(messageId int, text string, kb *InlineKeyboard, parseMode tgapi.ParseMode) *AnswerMessage {
|
||||||
|
if messageId == 0 {
|
||||||
|
ctx.botLogger.Errorln("Can't edit caption message, message ID zero")
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
params := tgapi.EditMessageCaptionP{
|
||||||
ChatID: ctx.Msg.Chat.ID,
|
ChatID: ctx.Msg.Chat.ID,
|
||||||
MessageID: messageId,
|
MessageID: messageId,
|
||||||
Caption: text,
|
Caption: text,
|
||||||
ParseMode: ParseMD,
|
ParseMode: parseMode,
|
||||||
}
|
}
|
||||||
if kb != nil {
|
if kb != nil {
|
||||||
params.ReplyMarkup = kb.Get()
|
params.ReplyMarkup = kb.Get()
|
||||||
}
|
}
|
||||||
msg, err := ctx.Api.EditMessageCaption(params)
|
|
||||||
|
msg, _, err := ctx.Api.EditMessageCaption(params)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.Api.logger.Errorln(err)
|
ctx.botLogger.Errorln(err)
|
||||||
}
|
}
|
||||||
return &AnswerMessage{
|
return &AnswerMessage{
|
||||||
MessageID: msg.MessageID, ctx: ctx, Text: text, IsMedia: true,
|
MessageID: msg.MessageID, ctx: ctx, Text: text, IsMedia: true,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// EditCaption edits the caption of a media message using plain text.
|
||||||
func (m *AnswerMessage) EditCaption(text string) *AnswerMessage {
|
func (m *AnswerMessage) EditCaption(text string) *AnswerMessage {
|
||||||
if m.MessageID == 0 {
|
return m.ctx.editPhotoText(m.MessageID, text, nil, tgapi.ParseNone)
|
||||||
m.ctx.Api.logger.Errorln("Can't edit caption message, message id is zero")
|
|
||||||
return m
|
|
||||||
}
|
|
||||||
return m.ctx.editPhotoText(m.MessageID, text, nil)
|
|
||||||
}
|
|
||||||
func (m *AnswerMessage) EditCaptionKeyboard(text string, kb *InlineKeyboard) *AnswerMessage {
|
|
||||||
return m.ctx.editPhotoText(m.MessageID, text, kb)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ctx *MsgContext) answer(text string, keyboard *InlineKeyboard) *AnswerMessage {
|
// EditCaptionMarkdown edits the caption of a media message using MarkdownV2.
|
||||||
params := &SendMessageP{
|
//
|
||||||
|
// ⚠️ WARNING: User input must be escaped with laniakea.EscapeMarkdownV2() before passing here.
|
||||||
|
func (m *AnswerMessage) EditCaptionMarkdown(text string) *AnswerMessage {
|
||||||
|
return m.ctx.editPhotoText(m.MessageID, text, nil, tgapi.ParseMDV2)
|
||||||
|
}
|
||||||
|
|
||||||
|
// EditCaptionKeyboard edits the caption of a media message with a new inline keyboard (plain text).
|
||||||
|
func (m *AnswerMessage) EditCaptionKeyboard(text string, kb *InlineKeyboard) *AnswerMessage {
|
||||||
|
return m.ctx.editPhotoText(m.MessageID, text, kb, tgapi.ParseNone)
|
||||||
|
}
|
||||||
|
|
||||||
|
// EditCaptionKeyboardMarkdown edits the caption of a media message with a new inline keyboard using MarkdownV2.
|
||||||
|
//
|
||||||
|
// ⚠️ WARNING: User input must be escaped with laniakea.EscapeMarkdownV2() before passing here.
|
||||||
|
func (m *AnswerMessage) EditCaptionKeyboardMarkdown(text string, kb *InlineKeyboard) *AnswerMessage {
|
||||||
|
return m.ctx.editPhotoText(m.MessageID, text, kb, tgapi.ParseMDV2)
|
||||||
|
}
|
||||||
|
|
||||||
|
// answer sends a new message with optional keyboard and parse mode.
|
||||||
|
// Uses API limiter to respect Telegram rate limits per chat.
|
||||||
|
func (ctx *MsgContext) answer(text string, keyboard *InlineKeyboard, parseMode tgapi.ParseMode) *AnswerMessage {
|
||||||
|
params := tgapi.SendMessageP{
|
||||||
ChatID: ctx.Msg.Chat.ID,
|
ChatID: ctx.Msg.Chat.ID,
|
||||||
Text: text,
|
Text: text,
|
||||||
ParseMode: ParseMD,
|
ParseMode: parseMode,
|
||||||
}
|
}
|
||||||
if keyboard != nil {
|
if keyboard != nil {
|
||||||
params.ReplyMarkup = keyboard.Get()
|
params.ReplyMarkup = keyboard.Get()
|
||||||
}
|
}
|
||||||
|
if ctx.Msg.MessageThreadID > 0 {
|
||||||
|
params.MessageThreadID = ctx.Msg.MessageThreadID
|
||||||
|
}
|
||||||
|
if ctx.Msg.DirectMessageTopic != nil {
|
||||||
|
params.DirectMessagesTopicID = ctx.Msg.DirectMessageTopic.TopicID
|
||||||
|
}
|
||||||
|
|
||||||
|
cont := context.Background()
|
||||||
|
if err := ctx.Api.Limiter.Wait(cont, ctx.Msg.Chat.ID); err != nil {
|
||||||
|
ctx.botLogger.Errorln(err)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
msg, err := ctx.Api.SendMessage(params)
|
msg, err := ctx.Api.SendMessage(params)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.Api.logger.Errorln(err)
|
ctx.botLogger.Errorln(err)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
return &AnswerMessage{
|
return &AnswerMessage{
|
||||||
MessageID: msg.MessageID, ctx: ctx, IsMedia: false, Text: text,
|
MessageID: msg.MessageID, ctx: ctx, IsMedia: false, Text: text,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Answer sends a plain text message (ParseNone).
|
||||||
func (ctx *MsgContext) Answer(text string) *AnswerMessage {
|
func (ctx *MsgContext) Answer(text string) *AnswerMessage {
|
||||||
return ctx.answer(text, nil)
|
return ctx.answer(text, nil, tgapi.ParseNone)
|
||||||
}
|
|
||||||
func (ctx *MsgContext) Answerf(template string, args ...any) *AnswerMessage {
|
|
||||||
return ctx.answer(fmt.Sprintf(template, args...), nil)
|
|
||||||
}
|
|
||||||
func (ctx *MsgContext) Keyboard(text string, kb *InlineKeyboard) *AnswerMessage {
|
|
||||||
return ctx.answer(text, kb)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ctx *MsgContext) answerPhoto(photoId, text string, kb *InlineKeyboard) *AnswerMessage {
|
// AnswerMarkdown sends a message using MarkdownV2 formatting.
|
||||||
params := &SendPhotoP{
|
//
|
||||||
|
// ⚠️ WARNING: User input must be escaped with laniakea.EscapeMarkdownV2() before passing here.
|
||||||
|
func (ctx *MsgContext) AnswerMarkdown(text string) *AnswerMessage {
|
||||||
|
return ctx.answer(text, nil, tgapi.ParseMDV2)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Answerf formats a string using fmt.Sprintf and sends it as a plain text message.
|
||||||
|
func (ctx *MsgContext) Answerf(template string, args ...any) *AnswerMessage {
|
||||||
|
return ctx.answer(fmt.Sprintf(template, args...), nil, tgapi.ParseNone)
|
||||||
|
}
|
||||||
|
|
||||||
|
// AnswerfMarkdown formats a string using fmt.Sprintf and sends it using MarkdownV2.
|
||||||
|
//
|
||||||
|
// ⚠️ WARNING: User input must be escaped with laniakea.EscapeMarkdownV2() before passing here.
|
||||||
|
func (ctx *MsgContext) AnswerfMarkdown(template string, args ...any) *AnswerMessage {
|
||||||
|
return ctx.answer(fmt.Sprintf(template, args...), nil, tgapi.ParseMDV2)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Keyboard sends a message with an inline keyboard (plain text).
|
||||||
|
func (ctx *MsgContext) Keyboard(text string, kb *InlineKeyboard) *AnswerMessage {
|
||||||
|
return ctx.answer(text, kb, tgapi.ParseNone)
|
||||||
|
}
|
||||||
|
|
||||||
|
// KeyboardMarkdown sends a message with an inline keyboard using MarkdownV2.
|
||||||
|
//
|
||||||
|
// ⚠️ WARNING: User input must be escaped with laniakea.EscapeMarkdownV2() before passing here.
|
||||||
|
func (ctx *MsgContext) KeyboardMarkdown(text string, keyboard *InlineKeyboard) *AnswerMessage {
|
||||||
|
return ctx.answer(text, keyboard, tgapi.ParseMDV2)
|
||||||
|
}
|
||||||
|
|
||||||
|
// answerPhoto sends a photo with optional caption and keyboard.
|
||||||
|
func (ctx *MsgContext) answerPhoto(photoId, text string, kb *InlineKeyboard, parseMode tgapi.ParseMode) *AnswerMessage {
|
||||||
|
params := tgapi.SendPhotoP{
|
||||||
ChatID: ctx.Msg.Chat.ID,
|
ChatID: ctx.Msg.Chat.ID,
|
||||||
Caption: text,
|
Caption: text,
|
||||||
ParseMode: ParseMD,
|
ParseMode: parseMode,
|
||||||
Photo: photoId,
|
Photo: photoId,
|
||||||
}
|
}
|
||||||
if kb != nil {
|
if kb != nil {
|
||||||
params.ReplyMarkup = kb.Get()
|
params.ReplyMarkup = kb.Get()
|
||||||
}
|
}
|
||||||
|
if ctx.Msg.MessageThreadID > 0 {
|
||||||
|
params.MessageThreadID = ctx.Msg.MessageThreadID
|
||||||
|
}
|
||||||
|
|
||||||
msg, err := ctx.Api.SendPhoto(params)
|
msg, err := ctx.Api.SendPhoto(params)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.Api.logger.Errorln(err)
|
ctx.botLogger.Errorln(err)
|
||||||
return &AnswerMessage{
|
return nil
|
||||||
ctx: ctx, Text: text, IsMedia: true,
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return &AnswerMessage{
|
return &AnswerMessage{
|
||||||
MessageID: msg.MessageID, ctx: ctx, Text: text, IsMedia: true,
|
MessageID: msg.MessageID, ctx: ctx, Text: text, IsMedia: true,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// AnswerPhoto sends a photo with plain text caption.
|
||||||
func (ctx *MsgContext) AnswerPhoto(photoId, text string) *AnswerMessage {
|
func (ctx *MsgContext) AnswerPhoto(photoId, text string) *AnswerMessage {
|
||||||
return ctx.answerPhoto(photoId, text, nil)
|
return ctx.answerPhoto(photoId, text, nil, tgapi.ParseNone)
|
||||||
}
|
|
||||||
func (ctx *MsgContext) AnswerPhotoKeyboard(photoId, text string, kb *InlineKeyboard) *AnswerMessage {
|
|
||||||
return ctx.answerPhoto(photoId, text, kb)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// AnswerPhotoMarkdown sends a photo with MarkdownV2 caption.
|
||||||
|
//
|
||||||
|
// ⚠️ WARNING: User input must be escaped with laniakea.EscapeMarkdownV2() before passing here.
|
||||||
|
func (ctx *MsgContext) AnswerPhotoMarkdown(photoId, text string) *AnswerMessage {
|
||||||
|
return ctx.answerPhoto(photoId, text, nil, tgapi.ParseMDV2)
|
||||||
|
}
|
||||||
|
|
||||||
|
// AnswerPhotoKeyboard sends a photo with caption and inline keyboard (plain text).
|
||||||
|
func (ctx *MsgContext) AnswerPhotoKeyboard(photoId, text string, kb *InlineKeyboard) *AnswerMessage {
|
||||||
|
return ctx.answerPhoto(photoId, text, kb, tgapi.ParseNone)
|
||||||
|
}
|
||||||
|
|
||||||
|
// AnswerPhotoKeyboardMarkdown sends a photo with caption and inline keyboard using MarkdownV2.
|
||||||
|
//
|
||||||
|
// ⚠️ WARNING: User input must be escaped with laniakea.EscapeMarkdownV2() before passing here.
|
||||||
|
func (ctx *MsgContext) AnswerPhotoKeyboardMarkdown(photoId, text string, kb *InlineKeyboard) *AnswerMessage {
|
||||||
|
return ctx.answerPhoto(photoId, text, kb, tgapi.ParseMDV2)
|
||||||
|
}
|
||||||
|
|
||||||
|
// AnswerPhotof formats a string and sends it as a photo caption (plain text).
|
||||||
|
func (ctx *MsgContext) AnswerPhotof(photoId, template string, args ...any) *AnswerMessage {
|
||||||
|
return ctx.answerPhoto(photoId, fmt.Sprintf(template, args...), nil, tgapi.ParseNone)
|
||||||
|
}
|
||||||
|
|
||||||
|
// AnswerPhotofMarkdown formats a string and sends it as a photo caption using MarkdownV2.
|
||||||
|
//
|
||||||
|
// ⚠️ WARNING: User input must be escaped with laniakea.EscapeMarkdownV2() before passing here.
|
||||||
|
func (ctx *MsgContext) AnswerPhotofMarkdown(photoId, template string, args ...any) *AnswerMessage {
|
||||||
|
return ctx.answerPhoto(photoId, fmt.Sprintf(template, args...), nil, tgapi.ParseMDV2)
|
||||||
|
}
|
||||||
|
|
||||||
|
// delete removes a message by ID.
|
||||||
func (ctx *MsgContext) delete(messageId int) {
|
func (ctx *MsgContext) delete(messageId int) {
|
||||||
_, err := ctx.Api.DeleteMessage(&DeleteMessageP{
|
_, err := ctx.Api.DeleteMessage(tgapi.DeleteMessageP{
|
||||||
ChatID: ctx.Msg.Chat.ID,
|
ChatID: ctx.Msg.Chat.ID,
|
||||||
MessageID: messageId,
|
MessageID: messageId,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.Api.logger.Errorln(err)
|
ctx.botLogger.Errorln(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
func (m *AnswerMessage) Delete() {
|
|
||||||
m.ctx.delete(m.MessageID)
|
|
||||||
}
|
|
||||||
func (ctx *MsgContext) CallbackDelete() {
|
|
||||||
ctx.delete(ctx.CallbackMsgId)
|
|
||||||
}
|
|
||||||
|
|
||||||
|
// Delete removes the message associated with this AnswerMessage.
|
||||||
|
func (m *AnswerMessage) Delete() { m.ctx.delete(m.MessageID) }
|
||||||
|
|
||||||
|
// CallbackDelete deletes the message that triggered the callback query.
|
||||||
|
func (ctx *MsgContext) CallbackDelete() { ctx.delete(ctx.CallbackMsgId) }
|
||||||
|
|
||||||
|
// answerCallbackQuery sends a response to a callback query (optional text/alert/url).
|
||||||
|
// Does nothing if CallbackQueryId is empty.
|
||||||
func (ctx *MsgContext) answerCallbackQuery(url, text string, showAlert bool) {
|
func (ctx *MsgContext) answerCallbackQuery(url, text string, showAlert bool) {
|
||||||
if len(ctx.CallbackQueryId) == 0 {
|
if len(ctx.CallbackQueryId) == 0 {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
_, err := ctx.Api.AnswerCallbackQuery(&AnswerCallbackQueryP{
|
_, err := ctx.Api.AnswerCallbackQuery(tgapi.AnswerCallbackQueryP{
|
||||||
CallbackQueryID: ctx.CallbackQueryId,
|
CallbackQueryID: ctx.CallbackQueryId,
|
||||||
Text: text, ShowAlert: showAlert, URL: url,
|
Text: text, ShowAlert: showAlert, URL: url,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.Api.logger.Errorln(err)
|
ctx.botLogger.Errorln(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
func (ctx *MsgContext) AnswerCbQuery() {
|
|
||||||
ctx.answerCallbackQuery("", "", false)
|
|
||||||
}
|
|
||||||
func (ctx *MsgContext) AnswerCbQueryText(text string) {
|
|
||||||
ctx.answerCallbackQuery("", text, false)
|
|
||||||
}
|
|
||||||
func (ctx *MsgContext) AnswerCbQueryAlert(text string) {
|
|
||||||
ctx.answerCallbackQuery("", text, true)
|
|
||||||
}
|
|
||||||
func (ctx *MsgContext) AnswerCbQueryUrl(u string) {
|
|
||||||
ctx.answerCallbackQuery(u, "", false)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (ctx *MsgContext) SendAction(action ChatActions) {
|
// AnswerCbQuery answers the callback query with no text or alert.
|
||||||
_, err := ctx.Api.SendChatAction(SendChatActionP{
|
func (ctx *MsgContext) AnswerCbQuery() { ctx.answerCallbackQuery("", "", false) }
|
||||||
|
|
||||||
|
// AnswerCbQueryText answers the callback query with a text notification.
|
||||||
|
func (ctx *MsgContext) AnswerCbQueryText(text string) { ctx.answerCallbackQuery("", text, false) }
|
||||||
|
|
||||||
|
// AnswerCbQueryAlert answers the callback query with a user-visible alert.
|
||||||
|
func (ctx *MsgContext) AnswerCbQueryAlert(text string) { ctx.answerCallbackQuery("", text, true) }
|
||||||
|
|
||||||
|
// AnswerCbQueryUrl answers the callback query with a URL redirect.
|
||||||
|
func (ctx *MsgContext) AnswerCbQueryUrl(u string) { ctx.answerCallbackQuery(u, "", false) }
|
||||||
|
|
||||||
|
// SendAction sends a chat action (typing, uploading_photo, etc.) to indicate bot activity.
|
||||||
|
func (ctx *MsgContext) SendAction(action tgapi.ChatActionType) {
|
||||||
|
params := tgapi.SendChatActionP{
|
||||||
ChatID: ctx.Msg.Chat.ID, Action: action,
|
ChatID: ctx.Msg.Chat.ID, Action: action,
|
||||||
})
|
}
|
||||||
|
if ctx.Msg.MessageThreadID > 0 {
|
||||||
|
params.MessageThreadID = ctx.Msg.MessageThreadID
|
||||||
|
}
|
||||||
|
_, err := ctx.Api.SendChatAction(params)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.Api.logger.Errorln(err)
|
ctx.botLogger.Errorln(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// error sends an error message to the user and logs it.
|
||||||
|
// Uses errorTemplate to format the message.
|
||||||
|
// For callbacks: sends as callback answer (no alert).
|
||||||
|
// For regular messages: sends as plain text.
|
||||||
func (ctx *MsgContext) error(err error) {
|
func (ctx *MsgContext) error(err error) {
|
||||||
text := fmt.Sprintf(ctx.Bot.errorTemplate, EscapeMarkdown(err.Error()))
|
text := fmt.Sprintf(ctx.errorTemplate, err.Error())
|
||||||
|
|
||||||
if ctx.CallbackQueryId != "" {
|
if ctx.CallbackQueryId != "" {
|
||||||
ctx.answerCallbackQuery("", text, false)
|
ctx.answerCallbackQuery("", text, false)
|
||||||
} else {
|
} else {
|
||||||
ctx.answer(text, nil)
|
ctx.answer(text, nil, tgapi.ParseNone)
|
||||||
}
|
}
|
||||||
ctx.Bot.logger.Errorln(err)
|
ctx.botLogger.Errorln(err)
|
||||||
}
|
}
|
||||||
func (ctx *MsgContext) Error(err error) {
|
|
||||||
ctx.error(err)
|
// Error is an alias for error().
|
||||||
|
func (ctx *MsgContext) Error(err error) { ctx.error(err) }
|
||||||
|
|
||||||
|
func (ctx *MsgContext) newDraft(parseMode tgapi.ParseMode) *Draft {
|
||||||
|
c := context.Background()
|
||||||
|
if err := ctx.Api.Limiter.Wait(c, ctx.Msg.Chat.ID); err != nil {
|
||||||
|
ctx.botLogger.Errorln(err)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
draft := ctx.draftProvider.NewDraft(parseMode).SetChat(ctx.Msg.Chat.ID, ctx.Msg.MessageThreadID)
|
||||||
|
return draft
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewDraft creates a new message draft associated with the current chat.
|
||||||
|
// Uses the API limiter to avoid rate limiting.
|
||||||
|
func (ctx *MsgContext) NewDraft() *Draft {
|
||||||
|
return ctx.newDraft(tgapi.ParseNone)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ctx *MsgContext) NewDraftMarkdown() *Draft {
|
||||||
|
return ctx.newDraft(tgapi.ParseMDV2)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Translate looks up a key in the current user's language.
|
||||||
|
// Falls back to the bot's default language if user's language is unknown or unsupported.
|
||||||
|
func (ctx *MsgContext) Translate(key string) string {
|
||||||
|
if ctx.From == nil {
|
||||||
|
return key
|
||||||
|
}
|
||||||
|
lang := Val(ctx.From.LanguageCode, ctx.l10n.GetFallbackLanguage())
|
||||||
|
return ctx.l10n.Translate(lang, key)
|
||||||
}
|
}
|
||||||
|
|||||||
373
plugins.go
373
plugins.go
@@ -1,84 +1,267 @@
|
|||||||
|
// Package laniakea provides a structured system for defining and executing
|
||||||
|
// bot commands and payloads with middleware support, argument validation,
|
||||||
|
// and plugin-based organization.
|
||||||
|
//
|
||||||
|
// The core concepts are:
|
||||||
|
// - Command: A named bot command with arguments, description, and executor.
|
||||||
|
// - Plugin: A collection of commands and payloads, with shared middlewares.
|
||||||
|
// - Middleware: Interceptors that can validate, modify, or block execution.
|
||||||
|
// - CommandArg: Type-safe argument definitions with regex validation.
|
||||||
|
//
|
||||||
|
// This system is designed to be used with MsgContext from the laniakea package
|
||||||
|
// to handle Telegram bot interactions in a modular, type-safe way.
|
||||||
package laniakea
|
package laniakea
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"log"
|
"errors"
|
||||||
|
"regexp"
|
||||||
|
|
||||||
"git.nix13.pw/scuroneko/extypes"
|
"git.nix13.pw/scuroneko/extypes"
|
||||||
)
|
)
|
||||||
|
|
||||||
type CommandExecutor func(ctx *MsgContext, dbContext *DatabaseContext)
|
// CommandValueType defines the expected type of a command argument.
|
||||||
|
type CommandValueType string
|
||||||
|
|
||||||
type PluginBuilder struct {
|
const (
|
||||||
name string
|
// CommandValueStringType expects any non-empty string.
|
||||||
commands map[string]*CommandExecutor
|
CommandValueStringType CommandValueType = "string"
|
||||||
payloads map[string]*CommandExecutor
|
// CommandValueIntType expects a decimal integer (digits only).
|
||||||
updateListener *CommandExecutor
|
CommandValueIntType CommandValueType = "int"
|
||||||
middlewares extypes.Slice[*PluginMiddleware]
|
// CommandValueBoolType is reserved for future use (not implemented).
|
||||||
|
CommandValueBoolType CommandValueType = "bool"
|
||||||
|
// CommandValueAnyType accepts any input without validation.
|
||||||
|
CommandValueAnyType CommandValueType = "any"
|
||||||
|
)
|
||||||
|
|
||||||
|
// CommandRegexInt matches one or more digits.
|
||||||
|
var CommandRegexInt = regexp.MustCompile(`\d+`)
|
||||||
|
|
||||||
|
// CommandRegexString matches any non-empty string.
|
||||||
|
var CommandRegexString = regexp.MustCompile(".+")
|
||||||
|
|
||||||
|
// ErrCmdArgCountMismatch is returned when the number of provided arguments
|
||||||
|
// is less than the number of required arguments.
|
||||||
|
var ErrCmdArgCountMismatch = errors.New("command arg count mismatch")
|
||||||
|
|
||||||
|
// ErrCmdArgRegexpMismatch is returned when an argument fails regex validation.
|
||||||
|
var ErrCmdArgRegexpMismatch = errors.New("command arg regexp mismatch")
|
||||||
|
|
||||||
|
// CommandArg defines a single argument for a command, including type, regex,
|
||||||
|
// and whether it is required.
|
||||||
|
type CommandArg struct {
|
||||||
|
valueType CommandValueType // Type of expected value
|
||||||
|
text string // Human-readable description (not used in validation)
|
||||||
|
regex *regexp.Regexp // Regex used to validate input
|
||||||
|
required bool // Whether this argument must be provided
|
||||||
}
|
}
|
||||||
|
|
||||||
type Plugin struct {
|
// NewCommandArg creates a new CommandArg with the given text and type.
|
||||||
Name string
|
// Uses a default regex based on the type (string or int).
|
||||||
Commands map[string]*CommandExecutor
|
// For CommandValueAnyType, no validation is performed.
|
||||||
Payloads map[string]*CommandExecutor
|
func NewCommandArg(text string, valueType CommandValueType) *CommandArg {
|
||||||
UpdateListener *CommandExecutor
|
regex := CommandRegexString
|
||||||
Middlewares extypes.Slice[*PluginMiddleware]
|
switch valueType {
|
||||||
|
case CommandValueIntType:
|
||||||
|
regex = CommandRegexInt
|
||||||
|
case CommandValueAnyType:
|
||||||
|
regex = nil // Skip validation
|
||||||
|
}
|
||||||
|
return &CommandArg{valueType, text, regex, false}
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewPlugin(name string) *PluginBuilder {
|
// SetRequired marks this argument as required.
|
||||||
return &PluginBuilder{
|
// Returns the receiver for method chaining.
|
||||||
name: name,
|
func (c *CommandArg) SetRequired() *CommandArg {
|
||||||
commands: make(map[string]*CommandExecutor),
|
c.required = true
|
||||||
payloads: make(map[string]*CommandExecutor),
|
return c
|
||||||
|
}
|
||||||
|
|
||||||
|
// CommandExecutor is the function type that executes a command.
|
||||||
|
// It receives the message context and a database context (generic).
|
||||||
|
type CommandExecutor[T DbContext] func(ctx *MsgContext, dbContext *T)
|
||||||
|
|
||||||
|
// Command represents a bot command with arguments, description, and executor.
|
||||||
|
// Can be registered in a Plugin and optionally skipped from auto-generation.
|
||||||
|
type Command[T DbContext] struct {
|
||||||
|
command string // The command trigger (e.g., "/start")
|
||||||
|
description string // Human-readable description for help
|
||||||
|
exec CommandExecutor[T] // Function to execute when command is triggered
|
||||||
|
args extypes.Slice[CommandArg] // List of expected arguments
|
||||||
|
middlewares extypes.Slice[Middleware[T]] // Optional middleware chain
|
||||||
|
skipAutoCmd bool // If true, this command won't be auto-added to help menus
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewCommand creates a new Command with the given executor, command string, and arguments.
|
||||||
|
// The command string should not include the leading slash (e.g., "start", not "/start").
|
||||||
|
func NewCommand[T any](exec CommandExecutor[T], command string, args ...CommandArg) *Command[T] {
|
||||||
|
return &Command[T]{command, "", exec, extypes.Slice[CommandArg](args), make(extypes.Slice[Middleware[T]], 0), false}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Use adds a middleware to the command's execution chain.
|
||||||
|
// Middlewares are executed in the order they are added.
|
||||||
|
func (c *Command[T]) Use(m Middleware[T]) *Command[T] {
|
||||||
|
c.middlewares = c.middlewares.Push(m)
|
||||||
|
return c
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetDescription sets the human-readable description of the command.
|
||||||
|
func (c *Command[T]) SetDescription(desc string) *Command[T] {
|
||||||
|
c.description = desc
|
||||||
|
return c
|
||||||
|
}
|
||||||
|
|
||||||
|
// SkipCommandAutoGen marks this command to be excluded from auto-generated help menus.
|
||||||
|
func (c *Command[T]) SkipCommandAutoGen() *Command[T] {
|
||||||
|
c.skipAutoCmd = true
|
||||||
|
return c
|
||||||
|
}
|
||||||
|
|
||||||
|
// validateArgs checks if the provided arguments match the command's requirements.
|
||||||
|
// Returns ErrCmdArgCountMismatch if too few arguments are provided.
|
||||||
|
// Returns ErrCmdArgRegexpMismatch if any argument fails regex validation.
|
||||||
|
func (c *Command[T]) validateArgs(args []string) error {
|
||||||
|
// Count required args
|
||||||
|
requiredCount := c.args.Filter(func(a CommandArg) bool { return a.required }).Len()
|
||||||
|
if len(args) < requiredCount {
|
||||||
|
return ErrCmdArgCountMismatch
|
||||||
|
}
|
||||||
|
|
||||||
|
// Validate each argument against its regex
|
||||||
|
for i, arg := range args {
|
||||||
|
if i >= c.args.Len() {
|
||||||
|
// Extra arguments beyond defined args are ignored
|
||||||
|
break
|
||||||
|
}
|
||||||
|
cmdArg := c.args.Get(i)
|
||||||
|
if cmdArg.regex == nil {
|
||||||
|
continue // Skip validation for CommandValueAnyType
|
||||||
|
}
|
||||||
|
if !cmdArg.regex.MatchString(arg) {
|
||||||
|
return ErrCmdArgRegexpMismatch
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// Plugin represents a collection of commands and payloads (e.g., callback handlers),
|
||||||
|
// with shared middleware and configuration.
|
||||||
|
type Plugin[T DbContext] struct {
|
||||||
|
name string // Name of the plugin (e.g., "admin", "user")
|
||||||
|
commands map[string]Command[T] // Registered commands (triggered by message)
|
||||||
|
payloads map[string]Command[T] // Registered payloads (triggered by callback data)
|
||||||
|
middlewares extypes.Slice[Middleware[T]] // Shared middlewares for all commands/payloads
|
||||||
|
skipAutoCmd bool // If true, all commands in this plugin are excluded from auto-help
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewPlugin creates a new Plugin with the given name.
|
||||||
|
func NewPlugin[T DbContext](name string) *Plugin[T] {
|
||||||
|
return &Plugin[T]{
|
||||||
|
name, make(map[string]Command[T]),
|
||||||
|
make(map[string]Command[T]), extypes.Slice[Middleware[T]]{}, false,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *PluginBuilder) Command(f CommandExecutor, cmd ...string) *PluginBuilder {
|
// AddCommand registers a command in the plugin.
|
||||||
for _, c := range cmd {
|
// The command's .command field is used as the key.
|
||||||
p.commands[c] = &f
|
func (p *Plugin[T]) AddCommand(command *Command[T]) *Plugin[T] {
|
||||||
}
|
p.commands[command.command] = *command
|
||||||
return p
|
return p
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *PluginBuilder) Payload(f CommandExecutor, payloads ...string) *PluginBuilder {
|
// NewCommand creates and immediately adds a new command to the plugin.
|
||||||
for _, payload := range payloads {
|
// Returns the created command for further configuration.
|
||||||
p.payloads[payload] = &f
|
func (p *Plugin[T]) NewCommand(exec CommandExecutor[T], command string, args ...CommandArg) *Command[T] {
|
||||||
}
|
cmd := NewCommand(exec, command, args...)
|
||||||
|
p.AddCommand(cmd)
|
||||||
|
return cmd
|
||||||
|
}
|
||||||
|
|
||||||
|
// AddPayload registers a payload (e.g., callback query data) in the plugin.
|
||||||
|
// Payloads are triggered by inline button callback_data, not by message text.
|
||||||
|
func (p *Plugin[T]) AddPayload(command *Command[T]) *Plugin[T] {
|
||||||
|
p.payloads[command.command] = *command
|
||||||
return p
|
return p
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *PluginBuilder) UpdateListener(listener CommandExecutor) *PluginBuilder {
|
// AddMiddleware adds a middleware to the plugin's global middleware chain.
|
||||||
p.updateListener = &listener
|
// Middlewares are executed before any command or payload.
|
||||||
return p
|
func (p *Plugin[T]) AddMiddleware(middleware Middleware[T]) *Plugin[T] {
|
||||||
}
|
|
||||||
|
|
||||||
func (p *PluginBuilder) Middleware(middleware *PluginMiddleware) *PluginBuilder {
|
|
||||||
p.middlewares = p.middlewares.Push(middleware)
|
p.middlewares = p.middlewares.Push(middleware)
|
||||||
return p
|
return p
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *PluginBuilder) Build() Plugin {
|
// SkipCommandAutoGen marks the entire plugin to be excluded from auto-generated help menus.
|
||||||
if len(p.commands) == 0 && len(p.payloads) == 0 {
|
func (p *Plugin[T]) SkipCommandAutoGen() *Plugin[T] {
|
||||||
log.Printf("no command or payloads for %s", p.name)
|
p.skipAutoCmd = true
|
||||||
|
return p
|
||||||
|
}
|
||||||
|
|
||||||
|
// executeCmd finds and executes a command by its trigger string.
|
||||||
|
// Validates arguments and runs middlewares before executor.
|
||||||
|
// On error, sends an error message to the user via ctx.error().
|
||||||
|
func (p *Plugin[T]) executeCmd(cmd string, ctx *MsgContext, dbContext *T) {
|
||||||
|
command, exists := p.commands[cmd]
|
||||||
|
if !exists {
|
||||||
|
ctx.error(errors.New("command not found"))
|
||||||
|
return
|
||||||
}
|
}
|
||||||
return Plugin{
|
|
||||||
Name: p.name,
|
if err := command.validateArgs(ctx.Args); err != nil {
|
||||||
Commands: p.commands,
|
ctx.error(err)
|
||||||
Payloads: p.payloads,
|
return
|
||||||
UpdateListener: p.updateListener,
|
|
||||||
Middlewares: p.middlewares,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Run plugin middlewares
|
||||||
|
if !p.executeMiddlewares(ctx, dbContext) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// Run command-specific middlewares
|
||||||
|
for _, m := range command.middlewares {
|
||||||
|
if !m.Execute(ctx, dbContext) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Execute command
|
||||||
|
command.exec(ctx, dbContext)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *Plugin) Execute(cmd string, ctx *MsgContext, dbContext *DatabaseContext) {
|
// executePayload finds and executes a payload by its callback_data string.
|
||||||
(*p.Commands[cmd])(ctx, dbContext)
|
// Validates arguments and runs middlewares before executor.
|
||||||
|
// On error, sends an error message to the user via ctx.error().
|
||||||
|
func (p *Plugin[T]) executePayload(payload string, ctx *MsgContext, dbContext *T) {
|
||||||
|
command, exists := p.payloads[payload]
|
||||||
|
if !exists {
|
||||||
|
ctx.error(errors.New("payload not found"))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := command.validateArgs(ctx.Args); err != nil {
|
||||||
|
ctx.error(err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// Run plugin middlewares
|
||||||
|
if !p.executeMiddlewares(ctx, dbContext) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// Run command-specific middlewares
|
||||||
|
for _, m := range command.middlewares {
|
||||||
|
if !m.Execute(ctx, dbContext) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Execute payload
|
||||||
|
command.exec(ctx, dbContext)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *Plugin) ExecutePayload(payload string, ctx *MsgContext, dbContext *DatabaseContext) {
|
// executeMiddlewares runs all plugin middlewares in order.
|
||||||
(*p.Payloads[payload])(ctx, dbContext)
|
// Returns false if any middleware returns false (blocks execution).
|
||||||
}
|
func (p *Plugin[T]) executeMiddlewares(ctx *MsgContext, db *T) bool {
|
||||||
|
for _, m := range p.middlewares {
|
||||||
func (p *Plugin) executeMiddlewares(ctx *MsgContext, db *DatabaseContext) bool {
|
|
||||||
for _, m := range p.Middlewares {
|
|
||||||
if !m.Execute(ctx, db) {
|
if !m.Execute(ctx, db) {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
@@ -86,80 +269,42 @@ func (p *Plugin) executeMiddlewares(ctx *MsgContext, db *DatabaseContext) bool {
|
|||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
type Middleware struct {
|
// MiddlewareExecutor is the function type for middleware logic.
|
||||||
Name string
|
// Returns true to continue execution, false to block it.
|
||||||
Executor CommandExecutor
|
// If async, return value is ignored.
|
||||||
Order int
|
type MiddlewareExecutor[T DbContext] func(ctx *MsgContext, db *T) bool
|
||||||
Async bool
|
|
||||||
}
|
// Middleware represents a reusable execution interceptor.
|
||||||
type MiddlewareBuilder struct {
|
// Can be synchronous (blocking) or asynchronous (non-blocking).
|
||||||
name string
|
type Middleware[T DbContext] struct {
|
||||||
executor CommandExecutor
|
name string // Human-readable name for logging/debugging
|
||||||
order int
|
executor MiddlewareExecutor[T] // Function to execute
|
||||||
async bool
|
order int // Optional sort order (not used yet)
|
||||||
|
async bool // If true, runs in goroutine and doesn't block
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewMiddleware(name string, executor CommandExecutor) *MiddlewareBuilder {
|
// NewMiddleware creates a new synchronous middleware.
|
||||||
return &MiddlewareBuilder{name: name, executor: executor, order: 0, async: false}
|
func NewMiddleware[T DbContext](name string, executor MiddlewareExecutor[T]) *Middleware[T] {
|
||||||
|
return &Middleware[T]{name, executor, 0, false}
|
||||||
}
|
}
|
||||||
func (m *MiddlewareBuilder) SetName(name string) *MiddlewareBuilder {
|
|
||||||
m.name = name
|
// SetOrder sets the execution order (currently ignored).
|
||||||
return m
|
func (m *Middleware[T]) SetOrder(order int) *Middleware[T] {
|
||||||
}
|
|
||||||
func (m *MiddlewareBuilder) SetExecutor(executor CommandExecutor) *MiddlewareBuilder {
|
|
||||||
m.executor = executor
|
|
||||||
return m
|
|
||||||
}
|
|
||||||
func (m *MiddlewareBuilder) SetOrder(order int) *MiddlewareBuilder {
|
|
||||||
m.order = order
|
m.order = order
|
||||||
return m
|
return m
|
||||||
}
|
}
|
||||||
func (m *MiddlewareBuilder) SetAsync(async bool) *MiddlewareBuilder {
|
|
||||||
|
// SetAsync marks the middleware to run asynchronously.
|
||||||
|
// Execution continues regardless of its return value.
|
||||||
|
func (m *Middleware[T]) SetAsync(async bool) *Middleware[T] {
|
||||||
m.async = async
|
m.async = async
|
||||||
return m
|
return m
|
||||||
}
|
}
|
||||||
func (m *MiddlewareBuilder) Build() Middleware {
|
|
||||||
return Middleware{
|
|
||||||
Name: m.name,
|
|
||||||
Executor: m.executor,
|
|
||||||
Order: m.order,
|
|
||||||
Async: m.async,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
func (m Middleware) Execute(ctx *MsgContext, db *DatabaseContext) {
|
|
||||||
if m.Async {
|
|
||||||
go m.Executor(ctx, db)
|
|
||||||
} else {
|
|
||||||
m.Execute(ctx, db)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
type PluginMiddlewareExecutor func(ctx *MsgContext, db *DatabaseContext) bool
|
// Execute runs the middleware.
|
||||||
|
// If async, runs in a goroutine and returns true immediately.
|
||||||
// PluginMiddleware
|
// Otherwise, returns the result of the executor.
|
||||||
// When async, returned value ignored
|
func (m *Middleware[T]) Execute(ctx *MsgContext, db *T) bool {
|
||||||
type PluginMiddleware struct {
|
|
||||||
executor PluginMiddlewareExecutor
|
|
||||||
order int
|
|
||||||
async bool
|
|
||||||
}
|
|
||||||
|
|
||||||
func NewPluginMiddleware(executor PluginMiddlewareExecutor) *PluginMiddleware {
|
|
||||||
return &PluginMiddleware{
|
|
||||||
executor: executor,
|
|
||||||
order: 0,
|
|
||||||
async: false,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
func (m *PluginMiddleware) SetOrder(order int) *PluginMiddleware {
|
|
||||||
m.order = order
|
|
||||||
return m
|
|
||||||
}
|
|
||||||
func (m *PluginMiddleware) SetAsync(async bool) *PluginMiddleware {
|
|
||||||
m.async = async
|
|
||||||
return m
|
|
||||||
}
|
|
||||||
func (m *PluginMiddleware) Execute(ctx *MsgContext, db *DatabaseContext) bool {
|
|
||||||
if m.async {
|
if m.async {
|
||||||
go m.executor(ctx, db)
|
go m.executor(ctx, db)
|
||||||
return true
|
return true
|
||||||
|
|||||||
169
runners.go
169
runners.go
@@ -1,85 +1,144 @@
|
|||||||
|
// Package laniakea provides a system for managing background and one-time
|
||||||
|
// runner functions that operate on a Bot instance, with support for
|
||||||
|
// asynchronous execution, timeouts, and lifecycle control.
|
||||||
|
//
|
||||||
|
// Runners are used for periodic tasks (e.g., cleanup, stats updates) or
|
||||||
|
// one-time initialization logic. They are executed via Bot.ExecRunners().
|
||||||
|
//
|
||||||
|
// Important: Runners are not thread-safe for concurrent modification.
|
||||||
|
// Builder methods (Onetime, Async, Timeout) must be called sequentially
|
||||||
|
// and only before Execute().
|
||||||
package laniakea
|
package laniakea
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
type RunnerFn func(*Bot) error
|
// RunnerFn is the function type for a runner. It receives a pointer to
|
||||||
type RunnerBuilder struct {
|
// the Bot and returns an error if execution fails.
|
||||||
name string
|
type RunnerFn[T DbContext] func(*Bot[T]) error
|
||||||
onetime bool
|
|
||||||
async bool
|
// Runner represents a configurable background or one-time task to be
|
||||||
timeout time.Duration
|
// executed by a Bot.
|
||||||
fn RunnerFn
|
//
|
||||||
}
|
// Runners are configured using builder methods: Onetime(), Async(), Timeout().
|
||||||
type Runner struct {
|
// Once Execute() is called, the Runner should not be modified.
|
||||||
Name string
|
//
|
||||||
Onetime bool
|
// Execution semantics:
|
||||||
Async bool
|
// - onetime=true, async=false: Run once synchronously (blocks).
|
||||||
Timeout time.Duration
|
// - onetime=true, async=true: Run once in a goroutine (non-blocking).
|
||||||
Fn RunnerFn
|
// - onetime=false, async=true: Run repeatedly in a goroutine with timeout.
|
||||||
|
// - onetime=false, async=false: Invalid configuration — ignored with warning.
|
||||||
|
type Runner[T DbContext] struct {
|
||||||
|
name string // Human-readable name for logging
|
||||||
|
onetime bool // If true, runs once; if false, runs periodically
|
||||||
|
async bool // If true, runs in a goroutine; else, runs synchronously
|
||||||
|
timeout time.Duration // Duration to wait between periodic executions (ignored if onetime=true)
|
||||||
|
fn RunnerFn[T] // The function to execute
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewRunner(name string, fn RunnerFn) *RunnerBuilder {
|
// NewRunner creates a new Runner with the given name and function.
|
||||||
return &RunnerBuilder{
|
// By default, the Runner is configured as async=true (non-blocking).
|
||||||
name: name, fn: fn, async: true,
|
//
|
||||||
}
|
// Builder methods (Onetime, Async, Timeout) can be chained to customize behavior.
|
||||||
}
|
// DO NOT call builder methods concurrently or after Execute().
|
||||||
func (b *RunnerBuilder) Onetime(onetime bool) *RunnerBuilder {
|
func NewRunner[T DbContext](name string, fn RunnerFn[T]) *Runner[T] {
|
||||||
b.onetime = onetime
|
return &Runner[T]{
|
||||||
return b
|
name: name,
|
||||||
}
|
fn: fn,
|
||||||
func (b *RunnerBuilder) Async(async bool) *RunnerBuilder {
|
async: true, // Default: run asynchronously
|
||||||
b.async = async
|
timeout: 0, // Default: no timeout (ignored if onetime=true)
|
||||||
return b
|
|
||||||
}
|
|
||||||
func (b *RunnerBuilder) Timeout(timeout time.Duration) *RunnerBuilder {
|
|
||||||
b.timeout = timeout
|
|
||||||
return b
|
|
||||||
}
|
|
||||||
func (b *RunnerBuilder) Build() Runner {
|
|
||||||
return Runner{
|
|
||||||
Name: b.name, Onetime: b.onetime, Async: b.async, Fn: b.fn, Timeout: b.timeout,
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (b *Bot) ExecRunners() {
|
// Onetime sets whether the runner executes once or repeatedly.
|
||||||
for _, runner := range b.runners {
|
// If true, the runner runs only once.
|
||||||
if !runner.Onetime && !runner.Async {
|
// If false, the runner runs in a loop with the configured timeout.
|
||||||
b.logger.Warnf("Runner %s not onetime, but sync\n", runner.Name)
|
func (r *Runner[T]) Onetime(onetime bool) *Runner[T] {
|
||||||
|
r.onetime = onetime
|
||||||
|
return r
|
||||||
|
}
|
||||||
|
|
||||||
|
// Async sets whether the runner executes synchronously or asynchronously.
|
||||||
|
// If true, the runner runs in a goroutine (non-blocking).
|
||||||
|
// If false, the runner blocks the caller during execution.
|
||||||
|
//
|
||||||
|
// Note: If onetime=false and async=false, the runner will be skipped with a warning.
|
||||||
|
func (r *Runner[T]) Async(async bool) *Runner[T] {
|
||||||
|
r.async = async
|
||||||
|
return r
|
||||||
|
}
|
||||||
|
|
||||||
|
// Timeout sets the duration to wait between repeated executions for
|
||||||
|
// non-onetime runners.
|
||||||
|
//
|
||||||
|
// If onetime=true, this value is ignored.
|
||||||
|
// If onetime=false and async=true, this timeout determines the sleep interval
|
||||||
|
// between loop iterations.
|
||||||
|
//
|
||||||
|
// A zero value (time.Duration(0)) is allowed but may trigger a warning
|
||||||
|
// if used with a background (non-onetime) async runner.
|
||||||
|
func (r *Runner[T]) Timeout(timeout time.Duration) *Runner[T] {
|
||||||
|
r.timeout = timeout
|
||||||
|
return r
|
||||||
|
}
|
||||||
|
|
||||||
|
// ExecRunners executes all runners registered on the Bot.
|
||||||
|
//
|
||||||
|
// It logs warnings for misconfigured runners:
|
||||||
|
// - Sync, non-onetime runners are skipped (invalid configuration).
|
||||||
|
// - Background (non-onetime, async) runners without a timeout trigger a warning.
|
||||||
|
//
|
||||||
|
// Execution logic:
|
||||||
|
// - onetime + async: Runs once in a goroutine.
|
||||||
|
// - onetime + sync: Runs once synchronously; warns if slower than 2 seconds.
|
||||||
|
// - !onetime + async: Runs in an infinite loop with timeout between iterations.
|
||||||
|
// - !onetime + sync: Skipped with warning.
|
||||||
|
//
|
||||||
|
// This method is typically called once during bot startup.
|
||||||
|
func (bot *Bot[T]) ExecRunners() {
|
||||||
|
bot.logger.Infoln("Executing runners...")
|
||||||
|
for _, runner := range bot.runners {
|
||||||
|
// Validate configuration
|
||||||
|
if !runner.onetime && !runner.async {
|
||||||
|
bot.logger.Warnf("Runner %s not onetime, but sync — skipping\n", runner.name)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if !runner.Onetime && runner.Async && runner.Timeout == (time.Second*0) {
|
if !runner.onetime && runner.async && runner.timeout == 0 {
|
||||||
b.logger.Warnf("Background runner \"%s\" should have timeout", runner.Name)
|
bot.logger.Warnf("Background runner \"%s\" has no timeout — may cause tight loop\n", runner.name)
|
||||||
}
|
}
|
||||||
|
|
||||||
if runner.Async && runner.Onetime {
|
if runner.onetime && runner.async {
|
||||||
go func() {
|
// One-time async: fire and forget
|
||||||
err := runner.Fn(b)
|
go func(r Runner[T]) {
|
||||||
|
err := r.fn(bot)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
b.logger.Warnf("Runner %s failed: %s\n", runner.Name, err)
|
bot.logger.Warnf("Runner %s failed: %s\n", r.name, err)
|
||||||
}
|
}
|
||||||
}()
|
}(runner)
|
||||||
} else if !runner.Async && runner.Onetime {
|
} else if runner.onetime && !runner.async {
|
||||||
|
// One-time sync: block until done
|
||||||
t := time.Now()
|
t := time.Now()
|
||||||
err := runner.Fn(b)
|
err := runner.fn(bot)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
b.logger.Warnf("Runner %s failed: %s\n", runner.Name, err)
|
bot.logger.Warnf("Runner %s failed: %s\n", runner.name, err)
|
||||||
}
|
}
|
||||||
elapsed := time.Since(t)
|
elapsed := time.Since(t)
|
||||||
if elapsed > time.Second*2 {
|
if elapsed > time.Second*2 {
|
||||||
b.logger.Warnf("Runner %s too slow. Elapsed time %s>=2s", runner.Name, elapsed)
|
bot.logger.Warnf("Runner %s too slow. Elapsed time %v >= 2s\n", runner.name, elapsed)
|
||||||
}
|
}
|
||||||
} else if !runner.Onetime {
|
} else if !runner.onetime && runner.async {
|
||||||
go func() {
|
// Background loop: periodic execution
|
||||||
|
go func(r Runner[T]) {
|
||||||
for {
|
for {
|
||||||
err := runner.Fn(b)
|
err := r.fn(bot)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
b.logger.Warnf("Runner %s failed: %s\n", runner.Name, err)
|
bot.logger.Warnf("Runner %s failed: %s\n", r.name, err)
|
||||||
}
|
}
|
||||||
time.Sleep(runner.Timeout)
|
time.Sleep(r.timeout)
|
||||||
}
|
}
|
||||||
}()
|
}(runner)
|
||||||
}
|
}
|
||||||
|
// Note: !onetime && !async is already skipped above
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
332
tgapi/api.go
Normal file
332
tgapi/api.go
Normal file
@@ -0,0 +1,332 @@
|
|||||||
|
package tgapi
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"context"
|
||||||
|
"encoding/json"
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
"net/http"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"git.nix13.pw/scuroneko/laniakea/utils"
|
||||||
|
"git.nix13.pw/scuroneko/slog"
|
||||||
|
)
|
||||||
|
|
||||||
|
// APIOpts holds configuration options for initializing the Telegram API client.
|
||||||
|
// Use the provided setter methods to build options — do not construct directly.
|
||||||
|
type APIOpts struct {
|
||||||
|
token string
|
||||||
|
client *http.Client
|
||||||
|
useTestServer bool
|
||||||
|
apiUrl string
|
||||||
|
|
||||||
|
limiter *utils.RateLimiter
|
||||||
|
dropOverflowLimit bool
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewAPIOpts creates a new APIOpts with default values.
|
||||||
|
// Use setter methods to customize behavior.
|
||||||
|
func NewAPIOpts(token string) *APIOpts {
|
||||||
|
return &APIOpts{
|
||||||
|
token: token,
|
||||||
|
client: nil,
|
||||||
|
useTestServer: false,
|
||||||
|
apiUrl: "https://api.telegram.org",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetHTTPClient sets a custom HTTP client. Use this for timeouts, proxies, or custom transport.
|
||||||
|
// If not set, a default client with 45s timeout is used.
|
||||||
|
func (opts *APIOpts) SetHTTPClient(client *http.Client) *APIOpts {
|
||||||
|
if client != nil {
|
||||||
|
opts.client = client
|
||||||
|
}
|
||||||
|
return opts
|
||||||
|
}
|
||||||
|
|
||||||
|
// UseTestServer enables use of Telegram's test server (https://api.test.telegram.org).
|
||||||
|
// Only for development/testing.
|
||||||
|
func (opts *APIOpts) UseTestServer(use bool) *APIOpts {
|
||||||
|
opts.useTestServer = use
|
||||||
|
return opts
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetAPIUrl overrides the default Telegram API URL.
|
||||||
|
// Useful for self-hosted bots or proxies.
|
||||||
|
func (opts *APIOpts) SetAPIUrl(apiUrl string) *APIOpts {
|
||||||
|
if apiUrl != "" {
|
||||||
|
opts.apiUrl = apiUrl
|
||||||
|
}
|
||||||
|
return opts
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetLimiter sets a rate limiter to enforce Telegram's API limits.
|
||||||
|
// Recommended: use utils.NewRateLimiter() for correct per-chat and global throttling.
|
||||||
|
func (opts *APIOpts) SetLimiter(limiter *utils.RateLimiter) *APIOpts {
|
||||||
|
opts.limiter = limiter
|
||||||
|
return opts
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetLimiterDrop enables "drop mode" for rate limiting.
|
||||||
|
// If true, requests exceeding limits return ErrDropOverflow immediately.
|
||||||
|
// If false, requests block until capacity is available.
|
||||||
|
func (opts *APIOpts) SetLimiterDrop(b bool) *APIOpts {
|
||||||
|
opts.dropOverflowLimit = b
|
||||||
|
return opts
|
||||||
|
}
|
||||||
|
|
||||||
|
// API is the main Telegram Bot API client.
|
||||||
|
// It manages HTTP requests, rate limiting, retries, and connection pooling.
|
||||||
|
type API struct {
|
||||||
|
token string
|
||||||
|
client *http.Client
|
||||||
|
logger *slog.Logger
|
||||||
|
useTestServer bool
|
||||||
|
apiUrl string
|
||||||
|
|
||||||
|
pool *workerPool
|
||||||
|
Limiter *utils.RateLimiter
|
||||||
|
dropOverflowLimit bool
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewAPI creates a new API client from options.
|
||||||
|
// Always call CloseApi() when done to release resources.
|
||||||
|
func NewAPI(opts *APIOpts) *API {
|
||||||
|
l := slog.CreateLogger().Level(utils.GetLoggerLevel()).Prefix("API")
|
||||||
|
l.AddWriter(l.CreateJsonStdoutWriter())
|
||||||
|
|
||||||
|
client := opts.client
|
||||||
|
if client == nil {
|
||||||
|
client = &http.Client{Timeout: time.Second * 45}
|
||||||
|
}
|
||||||
|
|
||||||
|
pool := newWorkerPool(16, 256)
|
||||||
|
pool.start(context.Background())
|
||||||
|
|
||||||
|
return &API{
|
||||||
|
token: opts.token,
|
||||||
|
client: client,
|
||||||
|
logger: l,
|
||||||
|
useTestServer: opts.useTestServer,
|
||||||
|
apiUrl: opts.apiUrl,
|
||||||
|
pool: pool,
|
||||||
|
Limiter: opts.limiter,
|
||||||
|
dropOverflowLimit: opts.dropOverflowLimit,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// CloseApi shuts down the internal worker pool and closes the logger.
|
||||||
|
// Must be called to avoid resource leaks.
|
||||||
|
func (api *API) CloseApi() error {
|
||||||
|
api.pool.stop()
|
||||||
|
return api.logger.Close()
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetLogger returns the internal logger for custom logging.
|
||||||
|
func (api *API) GetLogger() *slog.Logger {
|
||||||
|
return api.logger
|
||||||
|
}
|
||||||
|
|
||||||
|
// ResponseParameters contains Telegram API response metadata (e.g., retry_after, migrate_to_chat_id).
|
||||||
|
type ResponseParameters struct {
|
||||||
|
MigrateToChatID *int64 `json:"migrate_to_chat_id,omitempty"`
|
||||||
|
RetryAfter *int `json:"retry_after,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// ApiResponse is the standard Telegram Bot API response structure.
|
||||||
|
// Generic over Result type R.
|
||||||
|
type ApiResponse[R any] struct {
|
||||||
|
Ok bool `json:"ok"`
|
||||||
|
Description string `json:"description,omitempty"`
|
||||||
|
Result R `json:"result,omitempty"`
|
||||||
|
ErrorCode int `json:"error_code,omitempty"`
|
||||||
|
Parameters *ResponseParameters `json:"parameters,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// TelegramRequest is an internal helper struct.
|
||||||
|
// DO NOT USE NewRequest or NewRequestWithChatID — they are unsafe and discouraged.
|
||||||
|
// Instead, use explicit methods like SendMessage, GetUpdates, etc.
|
||||||
|
//
|
||||||
|
// Why? Because using generics with arbitrary types P and R leads to:
|
||||||
|
// - No compile-time validation of parameters
|
||||||
|
// - No IDE autocompletion
|
||||||
|
// - Runtime panics on malformed JSON
|
||||||
|
// - Hard-to-debug errors
|
||||||
|
//
|
||||||
|
// Recommended: Define specific methods for each Telegram method (see below).
|
||||||
|
type TelegramRequest[R, P any] struct {
|
||||||
|
method string
|
||||||
|
params P
|
||||||
|
chatId int64
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewRequest and NewRequestWithChatID are DEPRECATED.
|
||||||
|
// They encourage unsafe, untyped usage and bypass Go's type safety.
|
||||||
|
// Instead, define explicit, type-safe methods for each Telegram API endpoint.
|
||||||
|
//
|
||||||
|
// Example:
|
||||||
|
//
|
||||||
|
// func (api *API) SendMessage(ctx context.Context, chatID int64, text string) (Message, error) { ... }
|
||||||
|
//
|
||||||
|
// This provides:
|
||||||
|
//
|
||||||
|
// ✅ Compile-time validation
|
||||||
|
// ✅ IDE autocompletion
|
||||||
|
// ✅ Clear API surface
|
||||||
|
// ✅ Better error messages
|
||||||
|
//
|
||||||
|
// DO NOT use these constructors in production code.
|
||||||
|
// This can be used ONLY for testing or if you NEED method, that wasn't added as function.
|
||||||
|
func NewRequest[R, P any](method string, params P) TelegramRequest[R, P] {
|
||||||
|
return TelegramRequest[R, P]{method, params, 0}
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewRequestWithChatID[R, P any](method string, params P, chatId int64) TelegramRequest[R, P] {
|
||||||
|
return TelegramRequest[R, P]{method, params, chatId}
|
||||||
|
}
|
||||||
|
|
||||||
|
// doRequest performs a single HTTP request to Telegram API.
|
||||||
|
// Handles rate limiting, retries on 429, and parses responses.
|
||||||
|
// Must be called within a worker pool context if using DoWithContext.
|
||||||
|
func (r TelegramRequest[R, P]) doRequest(ctx context.Context, api *API) (R, error) {
|
||||||
|
var zero R
|
||||||
|
|
||||||
|
data, err := json.Marshal(r.params)
|
||||||
|
if err != nil {
|
||||||
|
return zero, fmt.Errorf("failed to marshal request: %w", err)
|
||||||
|
}
|
||||||
|
buf := bytes.NewBuffer(data)
|
||||||
|
|
||||||
|
methodPrefix := ""
|
||||||
|
if api.useTestServer {
|
||||||
|
methodPrefix = "/test"
|
||||||
|
}
|
||||||
|
url := fmt.Sprintf("%s/bot%s%s/%s", api.apiUrl, api.token, methodPrefix, r.method)
|
||||||
|
|
||||||
|
req, err := http.NewRequestWithContext(ctx, "POST", url, buf)
|
||||||
|
if err != nil {
|
||||||
|
return zero, fmt.Errorf("failed to create request: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
req.Header.Set("Content-Type", "application/json")
|
||||||
|
req.Header.Set("Accept", "application/json")
|
||||||
|
req.Header.Set("User-Agent", fmt.Sprintf("Laniakea/%s", utils.VersionString))
|
||||||
|
req.Header.Set("Accept-Encoding", "gzip")
|
||||||
|
req.ContentLength = int64(len(data))
|
||||||
|
|
||||||
|
for {
|
||||||
|
// Apply rate limiting before making the request
|
||||||
|
if api.Limiter != nil {
|
||||||
|
if err := api.Limiter.Check(ctx, api.dropOverflowLimit, r.chatId); err != nil {
|
||||||
|
return zero, err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
api.logger.Debugln("REQ", url, string(data))
|
||||||
|
|
||||||
|
resp, err := api.client.Do(req)
|
||||||
|
if err != nil {
|
||||||
|
return zero, fmt.Errorf("HTTP request failed: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
data, err = readBody(resp.Body)
|
||||||
|
_ = resp.Body.Close() // ensure body is closed
|
||||||
|
if err != nil {
|
||||||
|
return zero, fmt.Errorf("failed to read response body: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
api.logger.Debugln("RES", r.method, string(data))
|
||||||
|
|
||||||
|
response, err := parseBody[R](data)
|
||||||
|
if err != nil {
|
||||||
|
return zero, fmt.Errorf("failed to parse response: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if !response.Ok {
|
||||||
|
// Handle rate limiting (429)
|
||||||
|
if response.ErrorCode == 429 && response.Parameters != nil && response.Parameters.RetryAfter != nil {
|
||||||
|
after := *response.Parameters.RetryAfter
|
||||||
|
api.logger.Warnf("Rate limited by Telegram, retry after %d seconds (chat: %d)", after, r.chatId)
|
||||||
|
|
||||||
|
// Apply cooldown to global or chat-specific limiter
|
||||||
|
if r.chatId > 0 {
|
||||||
|
api.Limiter.SetChatLock(r.chatId, after)
|
||||||
|
} else {
|
||||||
|
api.Limiter.SetGlobalLock(after)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Wait and retry
|
||||||
|
select {
|
||||||
|
case <-ctx.Done():
|
||||||
|
return zero, ctx.Err()
|
||||||
|
case <-time.After(time.Duration(after) * time.Second):
|
||||||
|
continue // retry request
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Other API errors
|
||||||
|
return zero, fmt.Errorf("[%d] %s", response.ErrorCode, response.Description)
|
||||||
|
}
|
||||||
|
|
||||||
|
return response.Result, nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// DoWithContext executes the request asynchronously via the worker pool.
|
||||||
|
// Returns result or error via channel. Respects context cancellation.
|
||||||
|
func (r TelegramRequest[R, P]) DoWithContext(ctx context.Context, api *API) (R, error) {
|
||||||
|
var zero R
|
||||||
|
|
||||||
|
resultChan, err := api.pool.submit(ctx, func(ctx context.Context) (any, error) {
|
||||||
|
return r.doRequest(ctx, api)
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
return zero, err
|
||||||
|
}
|
||||||
|
|
||||||
|
select {
|
||||||
|
case <-ctx.Done():
|
||||||
|
return zero, ctx.Err()
|
||||||
|
case res := <-resultChan:
|
||||||
|
if res.err != nil {
|
||||||
|
return zero, res.err
|
||||||
|
}
|
||||||
|
if val, ok := res.value.(R); ok {
|
||||||
|
return val, nil
|
||||||
|
}
|
||||||
|
return zero, ErrPoolUnexpected
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Do executes the request synchronously with a background context.
|
||||||
|
// Use only for simple, non-critical calls.
|
||||||
|
func (r TelegramRequest[R, P]) Do(api *API) (R, error) {
|
||||||
|
return r.DoWithContext(context.Background(), api)
|
||||||
|
}
|
||||||
|
|
||||||
|
// readBody reads and limits response body to prevent memory exhaustion.
|
||||||
|
// Telegram responses are typically small (<1MB), but we cap at 10MB.
|
||||||
|
func readBody(body io.ReadCloser) ([]byte, error) {
|
||||||
|
reader := io.LimitReader(body, 10<<20) // 10 MB
|
||||||
|
return io.ReadAll(reader)
|
||||||
|
}
|
||||||
|
|
||||||
|
// parseBody unmarshals Telegram API response and returns structured result.
|
||||||
|
// Returns ErrRateLimit internally if error_code == 429 — caller must handle via response.Ok check.
|
||||||
|
func parseBody[R any](data []byte) (ApiResponse[R], error) {
|
||||||
|
var resp ApiResponse[R]
|
||||||
|
err := json.Unmarshal(data, &resp)
|
||||||
|
if err != nil {
|
||||||
|
return resp, fmt.Errorf("failed to unmarshal JSON: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if !resp.Ok {
|
||||||
|
if resp.ErrorCode == 429 {
|
||||||
|
return resp, ErrRateLimit // internal use only
|
||||||
|
}
|
||||||
|
return resp, fmt.Errorf("[%d] %s", resp.ErrorCode, resp.Description)
|
||||||
|
}
|
||||||
|
|
||||||
|
return resp, nil
|
||||||
|
}
|
||||||
246
tgapi/attachments_methods.go
Normal file
246
tgapi/attachments_methods.go
Normal file
@@ -0,0 +1,246 @@
|
|||||||
|
package tgapi
|
||||||
|
|
||||||
|
type SendPhotoP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id,omitempty"`
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageThreadID int `json:"message_thread_id,omitempty"`
|
||||||
|
DirectMessagesTopicID int `json:"direct_messages_topic_id,omitempty"`
|
||||||
|
|
||||||
|
Photo string `json:"photo"`
|
||||||
|
Caption string `json:"caption,omitempty"`
|
||||||
|
ParseMode ParseMode `json:"parse_mode,omitempty"`
|
||||||
|
CaptionEntities []MessageEntity `json:"caption_entities,omitempty"`
|
||||||
|
|
||||||
|
ShowCaptionAboveMedia bool `json:"show_caption_above_media,omitempty"`
|
||||||
|
HasSpoiler bool `json:"has_spoiler,omitempty"`
|
||||||
|
DisableNotifications bool `json:"disable_notifications,omitempty"`
|
||||||
|
ProtectContent bool `json:"protect_content,omitempty"`
|
||||||
|
AllowPaidBroadcast bool `json:"allow_paid_broadcast,omitempty"`
|
||||||
|
MessageEffectID string `json:"message_effect_id,omitempty"`
|
||||||
|
|
||||||
|
SuggestedPostParameters *SuggestedPostParameters `json:"suggested_post_parameters,omitempty"`
|
||||||
|
ReplyParameters *ReplyParameters `json:"reply_parameters,omitempty"`
|
||||||
|
ReplyMarkup *ReplyMarkup `json:"reply_markup,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SendPhoto(params SendPhotoP) (Message, error) {
|
||||||
|
req := NewRequestWithChatID[Message]("sendPhoto", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SendAudioP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id,omitempty"`
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageThreadID int `json:"message_thread_id,omitempty"`
|
||||||
|
DirectMessagesTopicID int `json:"direct_messages_topic_id,omitempty"`
|
||||||
|
|
||||||
|
Audio string `json:"audio"`
|
||||||
|
Caption string `json:"caption,omitempty"`
|
||||||
|
ParseMode ParseMode `json:"parse_mode,omitempty"`
|
||||||
|
CaptionEntities []MessageEntity `json:"caption_entities,omitempty"`
|
||||||
|
Duration int `json:"duration,omitempty"`
|
||||||
|
Performer string `json:"performer,omitempty"`
|
||||||
|
Title string `json:"title,omitempty"`
|
||||||
|
|
||||||
|
DisableNotification bool `json:"disable_notification,omitempty"`
|
||||||
|
ProtectContent bool `json:"protect_content,omitempty"`
|
||||||
|
AllowPaidBroadcast bool `json:"allow_paid_broadcast,omitempty"`
|
||||||
|
MessageEffectID string `json:"message_effect_id,omitempty"`
|
||||||
|
|
||||||
|
SuggestedPostParameters *SuggestedPostParameters `json:"suggested_post_parameters,omitempty"`
|
||||||
|
ReplyParameters *ReplyParameters `json:"reply_parameters,omitempty"`
|
||||||
|
ReplyMarkup *ReplyMarkup `json:"reply_markup,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SendAudio(params SendAudioP) (Message, error) {
|
||||||
|
req := NewRequestWithChatID[Message]("sendAudio", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SendDocumentP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id,omitempty"`
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageThreadID int `json:"message_thread_id,omitempty"`
|
||||||
|
DirectMessagesTopicID int `json:"direct_messages_topic_id,omitempty"`
|
||||||
|
|
||||||
|
Document string `json:"document"`
|
||||||
|
Caption string `json:"caption,omitempty"`
|
||||||
|
ParseMode ParseMode `json:"parse_mode,omitempty"`
|
||||||
|
CaptionEntities []MessageEntity `json:"caption_entities,omitempty"`
|
||||||
|
|
||||||
|
DisableNotification bool `json:"disable_notification,omitempty"`
|
||||||
|
ProtectContent bool `json:"protect_content,omitempty"`
|
||||||
|
AllowPaidBroadcast bool `json:"allow_paid_broadcast,omitempty"`
|
||||||
|
MessageEffectID string `json:"message_effect_id,omitempty"`
|
||||||
|
|
||||||
|
SuggestedPostParameters *SuggestedPostParameters `json:"suggested_post_parameters,omitempty"`
|
||||||
|
ReplyParameters *ReplyParameters `json:"reply_parameters,omitempty"`
|
||||||
|
ReplyMarkup *ReplyMarkup `json:"reply_markup,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SendDocument(params SendDocumentP) (Message, error) {
|
||||||
|
req := NewRequestWithChatID[Message]("sendDocument", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SendVideoP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id,omitempty"`
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageThreadID int `json:"message_thread_id,omitempty"`
|
||||||
|
DirectMessagesTopicID int `json:"direct_messages_topic_id,omitempty"`
|
||||||
|
|
||||||
|
Video string `json:"video"`
|
||||||
|
Duration int `json:"duration,omitempty"`
|
||||||
|
Width int `json:"width,omitempty"`
|
||||||
|
Height int `json:"height,omitempty"`
|
||||||
|
Cover int `json:"cover,omitempty"`
|
||||||
|
|
||||||
|
StartTimestamp int `json:"start_timestamp,omitempty"`
|
||||||
|
Caption string `json:"caption,omitempty"`
|
||||||
|
ParseMode ParseMode `json:"parse_mode,omitempty"`
|
||||||
|
CaptionEntities []MessageEntity `json:"caption_entities,omitempty"`
|
||||||
|
|
||||||
|
ShowCaptionAboveMedia bool `json:"show_caption_above_media,omitempty"`
|
||||||
|
HasSpoiler bool `json:"has_spoiler,omitempty"`
|
||||||
|
SupportsStreaming bool `json:"supports_streaming,omitempty"`
|
||||||
|
DisableNotification bool `json:"disable_notification,omitempty"`
|
||||||
|
ProtectContent bool `json:"protect_content,omitempty"`
|
||||||
|
AllowPaidBroadcast bool `json:"allow_paid_broadcast,omitempty"`
|
||||||
|
MessageEffectID string `json:"message_effect_id,omitempty"`
|
||||||
|
|
||||||
|
SuggestedPostParameters *SuggestedPostParameters `json:"suggested_post_parameters,omitempty"`
|
||||||
|
ReplyParameters *ReplyParameters `json:"reply_parameters,omitempty"`
|
||||||
|
ReplyMarkup *ReplyMarkup `json:"reply_markup,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SendVideo(params SendVideoP) (Message, error) {
|
||||||
|
req := NewRequestWithChatID[Message]("sendVideo", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SendAnimationP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id,omitempty"`
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageThreadID int `json:"message_thread_id,omitempty"`
|
||||||
|
DirectMessagesTopicID int `json:"direct_messages_topic_id,omitempty"`
|
||||||
|
|
||||||
|
Animation string `json:"animation"`
|
||||||
|
Duration int `json:"duration,omitempty"`
|
||||||
|
Width int `json:"width,omitempty"`
|
||||||
|
Height int `json:"height,omitempty"`
|
||||||
|
|
||||||
|
Caption string `json:"caption,omitempty"`
|
||||||
|
ParseMode ParseMode `json:"parse_mode,omitempty"`
|
||||||
|
CaptionEntities []MessageEntity `json:"caption_entities,omitempty"`
|
||||||
|
ShowCaptionAboveMedia bool `json:"show_caption_above_media,omitempty"`
|
||||||
|
HasSpoiler bool `json:"has_spoiler,omitempty"`
|
||||||
|
DisableNotification bool `json:"disable_notification,omitempty"`
|
||||||
|
ProtectContent bool `json:"protect_content,omitempty"`
|
||||||
|
AllowPaidBroadcast bool `json:"allow_paid_broadcast,omitempty"`
|
||||||
|
MessageEffectID string `json:"message_effect_id,omitempty"`
|
||||||
|
|
||||||
|
SuggestedPostParameters *SuggestedPostParameters `json:"suggested_post_parameters,omitempty"`
|
||||||
|
ReplyParameters *ReplyParameters `json:"reply_parameters,omitempty"`
|
||||||
|
ReplyMarkup *ReplyMarkup `json:"reply_markup,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SendAnimation(params SendAnimationP) (Message, error) {
|
||||||
|
req := NewRequestWithChatID[Message]("sendAnimation", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SendVoiceP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id,omitempty"`
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageThreadID int `json:"message_thread_id,omitempty"`
|
||||||
|
DirectMessagesTopicID int `json:"direct_messages_topic_id,omitempty"`
|
||||||
|
|
||||||
|
Voice string `json:"voice"`
|
||||||
|
Caption string `json:"caption,omitempty"`
|
||||||
|
ParseMode ParseMode `json:"parse_mode,omitempty"`
|
||||||
|
CaptionEntities []MessageEntity `json:"caption_entities,omitempty"`
|
||||||
|
Duration int `json:"duration,omitempty"`
|
||||||
|
DisableNotification bool `json:"disable_notification,omitempty"`
|
||||||
|
ProtectContent bool `json:"protect_content,omitempty"`
|
||||||
|
AllowPaidBroadcast bool `json:"allow_paid_broadcast,omitempty"`
|
||||||
|
MessageEffectID string `json:"message_effect_id,omitempty"`
|
||||||
|
|
||||||
|
SuggestedPostParameters *SuggestedPostParameters `json:"suggested_post_parameters,omitempty"`
|
||||||
|
ReplyParameters *ReplyParameters `json:"reply_parameters,omitempty"`
|
||||||
|
ReplyMarkup *ReplyMarkup `json:"reply_markup,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SendVoice(params *SendVoiceP) (Message, error) {
|
||||||
|
req := NewRequestWithChatID[Message]("sendVoice", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SendVideoNoteP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id,omitempty"`
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageThreadID int `json:"message_thread_id,omitempty"`
|
||||||
|
DirectMessagesTopicID int `json:"direct_messages_topic_id,omitempty"`
|
||||||
|
|
||||||
|
VideoNote string `json:"video_note"`
|
||||||
|
Duration int `json:"duration,omitempty"`
|
||||||
|
Length int `json:"length,omitempty"`
|
||||||
|
DisableNotification bool `json:"disable_notification,omitempty"`
|
||||||
|
ProtectContent bool `json:"protect_content,omitempty"`
|
||||||
|
AllowPaidBroadcast bool `json:"allow_paid_broadcast,omitempty"`
|
||||||
|
MessageEffectID string `json:"message_effect_id,omitempty"`
|
||||||
|
|
||||||
|
SuggestedPostParameters *SuggestedPostParameters `json:"suggested_post_parameters,omitempty"`
|
||||||
|
ReplyParameters *ReplyParameters `json:"reply_parameters,omitempty"`
|
||||||
|
ReplyMarkup *ReplyMarkup `json:"reply_markup,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SendVideoNote(params SendVideoNoteP) (Message, error) {
|
||||||
|
req := NewRequestWithChatID[Message]("sendVideoNote", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SendPaidMediaP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id,omitempty"`
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageThreadID int `json:"message_thread_id,omitempty"`
|
||||||
|
DirectMessagesTopicID int `json:"direct_messages_topic_id,omitempty"`
|
||||||
|
StarCount int `json:"star_count,omitempty"`
|
||||||
|
|
||||||
|
Media []InputPaidMedia `json:"media"`
|
||||||
|
Payload string `json:"payload,omitempty"`
|
||||||
|
Caption string `json:"caption,omitempty"`
|
||||||
|
ParseMode ParseMode `json:"parse_mode,omitempty"`
|
||||||
|
CaptionEntities []MessageEntity `json:"caption_entities,omitempty"`
|
||||||
|
ShowCaptionAboveMedia bool `json:"show_caption_above_media,omitempty"`
|
||||||
|
DisableNotification bool `json:"disable_notification,omitempty"`
|
||||||
|
ProtectContent bool `json:"protect_content,omitempty"`
|
||||||
|
AllowPaidBroadcast bool `json:"allow_paid_broadcast,omitempty"`
|
||||||
|
|
||||||
|
SuggestedPostParameters *SuggestedPostParameters `json:"suggested_post_parameters,omitempty"`
|
||||||
|
ReplyParameters *ReplyParameters `json:"reply_parameters,omitempty"`
|
||||||
|
ReplyMarkup *ReplyMarkup `json:"reply_markup,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SendPaidMedia(params SendPaidMediaP) (Message, error) {
|
||||||
|
req := NewRequestWithChatID[Message]("sendPaidMedia", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SendMediaGroupP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id,omitempty"`
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageThreadID int `json:"message_thread_id,omitempty"`
|
||||||
|
DirectMessagesTopicID int `json:"direct_messages_topic_id,omitempty"`
|
||||||
|
|
||||||
|
Media []InputMedia `json:"media"`
|
||||||
|
DisableNotification bool `json:"disable_notification,omitempty"`
|
||||||
|
ProtectContent bool `json:"protect_content,omitempty"`
|
||||||
|
AllowPaidBroadcast bool `json:"allow_paid_broadcast,omitempty"`
|
||||||
|
MessageEffectID string `json:"message_effect_id,omitempty"`
|
||||||
|
ReplyParameters *ReplyParameters `json:"reply_parameters,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SendMediaGroup(params SendMediaGroupP) (Message, error) {
|
||||||
|
req := NewRequestWithChatID[Message]("sendMediaGroup", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
59
tgapi/attachments_types.go
Normal file
59
tgapi/attachments_types.go
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
package tgapi
|
||||||
|
|
||||||
|
type InputMedia struct {
|
||||||
|
Type InputMediaType `json:"type"`
|
||||||
|
Media string `json:"media"`
|
||||||
|
|
||||||
|
Caption *string `json:"caption,omitempty"`
|
||||||
|
ParseMode *ParseMode `json:"parse_mode,omitempty"`
|
||||||
|
CaptionEntities []MessageEntity `json:"caption_entities,omitempty"`
|
||||||
|
ShowCaptionAboveMedia *bool `json:"show_caption_above_media,omitempty"`
|
||||||
|
HasSpoiler *bool `json:"has_spoiler,omitempty"`
|
||||||
|
|
||||||
|
Cover *string `json:"cover"`
|
||||||
|
StartTimestamp *int `json:"start_timestamp"`
|
||||||
|
Width *int `json:"width,omitempty"`
|
||||||
|
Height *int `json:"height,omitempty"`
|
||||||
|
Duration *int `json:"duration,omitempty"`
|
||||||
|
SupportsStreaming *bool `json:"supports_streaming,omitempty"`
|
||||||
|
|
||||||
|
Performer *string `json:"performer,omitempty"`
|
||||||
|
Title *string `json:"title,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type InputMediaType string
|
||||||
|
|
||||||
|
const (
|
||||||
|
InputMediaTypeAnimation InputMediaType = "animation"
|
||||||
|
InputMediaTypeDocument InputMediaType = "document"
|
||||||
|
InputMediaTypePhoto InputMediaType = "photo"
|
||||||
|
InputMediaTypeVideo InputMediaType = "video"
|
||||||
|
InputMediaTypeAudio InputMediaType = "audio"
|
||||||
|
)
|
||||||
|
|
||||||
|
type InputPaidMediaType string
|
||||||
|
|
||||||
|
const (
|
||||||
|
InputPaidMediaTypeVideo InputPaidMediaType = "video"
|
||||||
|
InputPaidMediaTypePhoto InputPaidMediaType = "photo"
|
||||||
|
)
|
||||||
|
|
||||||
|
type InputPaidMedia struct {
|
||||||
|
Type InputPaidMediaType `json:"type"`
|
||||||
|
Media string `json:"media"`
|
||||||
|
|
||||||
|
Cover string `json:"cover"`
|
||||||
|
StartTimestamp int64 `json:"start_timestamp"`
|
||||||
|
Width int `json:"width"`
|
||||||
|
Height int `json:"height"`
|
||||||
|
Duration int `json:"duration"`
|
||||||
|
SupportsStreaming bool `json:"supports_streaming"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type PhotoSize struct {
|
||||||
|
FileID string `json:"file_id"`
|
||||||
|
FileUniqueID string `json:"file_unique_id"`
|
||||||
|
Width int `json:"width"`
|
||||||
|
Height int `json:"height"`
|
||||||
|
FileSize int `json:"file_size,omitempty"`
|
||||||
|
}
|
||||||
174
tgapi/bot_methods.go
Normal file
174
tgapi/bot_methods.go
Normal file
@@ -0,0 +1,174 @@
|
|||||||
|
package tgapi
|
||||||
|
|
||||||
|
type SetMyCommandsP struct {
|
||||||
|
Commands []BotCommand `json:"commands"`
|
||||||
|
Scope *BotCommandScope `json:"scope,omitempty"`
|
||||||
|
Language string `json:"language_code,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SetMyCommands(params SetMyCommandsP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("setMyCommands", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type DeleteMyCommandsP struct {
|
||||||
|
Scope *BotCommandScope `json:"scope,omitempty"`
|
||||||
|
Language string `json:"language_code,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) DeleteMyCommands(params DeleteMyCommandsP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("deleteMyCommands", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type GetMyCommands struct {
|
||||||
|
Scope *BotCommandScope `json:"scope,omitempty"`
|
||||||
|
Language string `json:"language_code,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) GetMyCommands(params GetMyCommands) ([]BotCommand, error) {
|
||||||
|
req := NewRequest[[]BotCommand]("getMyCommands", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SetMyName struct {
|
||||||
|
Name string `json:"name"`
|
||||||
|
Language string `json:"language_code,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SetMyName(params SetMyName) (bool, error) {
|
||||||
|
req := NewRequest[bool]("setMyName", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type GetMyName struct {
|
||||||
|
Language string `json:"language_code,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) GetMyName(params GetMyName) (BotName, error) {
|
||||||
|
req := NewRequest[BotName]("getMyName", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SetMyDescription struct {
|
||||||
|
Description string `json:"description"`
|
||||||
|
Language string `json:"language_code,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SetMyDescription(params SetMyDescription) (bool, error) {
|
||||||
|
req := NewRequest[bool]("setMyDescription", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type GetMyDescription struct {
|
||||||
|
Language string `json:"language_code,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) GetMyDescription(params GetMyDescription) (BotDescription, error) {
|
||||||
|
req := NewRequest[BotDescription]("getMyDescription", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SetMyShortDescription struct {
|
||||||
|
ShortDescription string `json:"short_description,omitempty"`
|
||||||
|
Language string `json:"language_code,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SetMyShortDescription(params SetMyShortDescription) (bool, error) {
|
||||||
|
req := NewRequest[bool]("setMyShortDescription", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type GetMyShortDescription struct {
|
||||||
|
Language string `json:"language_code,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) GetMyShortDescription(params GetMyShortDescription) (BotShortDescription, error) {
|
||||||
|
req := NewRequest[BotShortDescription]("getMyShortDescription", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SetMyProfilePhotoP struct {
|
||||||
|
Photo InputProfilePhoto `json:"photo"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SetMyProfilePhoto(params SetMyProfilePhotoP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("setMyProfilePhoto", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
func (api *API) RemoveMyProfilePhoto() (bool, error) {
|
||||||
|
req := NewRequest[bool]("removeMyProfilePhoto", NoParams)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SetChatMenuButtonP struct {
|
||||||
|
ChatID int `json:"chat_id"`
|
||||||
|
MenuButton MenuButtonType `json:"menu_button"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SetChatMenuButton(params SetChatMenuButtonP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("setChatMenuButton", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type GetChatMenuButtonP struct {
|
||||||
|
ChatID int `json:"chat_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) GetChatMenuButton(params GetChatMenuButtonP) (BaseMenuButton, error) {
|
||||||
|
req := NewRequest[BaseMenuButton]("getChatMenuButton", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SetMyDefaultAdministratorRightsP struct {
|
||||||
|
Rights *ChatAdministratorRights `json:"rights"`
|
||||||
|
ForChannels bool `json:"for_channels"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SetMyDefaultAdministratorRights(params SetMyDefaultAdministratorRightsP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("setMyDefaultAdministratorRights", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type GetMyDefaultAdministratorRightsP struct {
|
||||||
|
ForChannels bool `json:"for_channels"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) GetMyDefaultAdministratorRights(params GetMyDefaultAdministratorRightsP) (ChatAdministratorRights, error) {
|
||||||
|
req := NewRequest[ChatAdministratorRights]("getMyDefaultAdministratorRights", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) GetAvailableGifts() (Gifts, error) {
|
||||||
|
req := NewRequest[Gifts]("getAvailableGifts", NoParams)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SendGiftP struct {
|
||||||
|
UserID int `json:"user_id,omitempty"`
|
||||||
|
ChatID int `json:"chat_id,omitempty"`
|
||||||
|
GiftID string `json:"gift_id"`
|
||||||
|
PayForUpgrade bool `json:"pay_for_upgrade"`
|
||||||
|
Text string `json:"text"`
|
||||||
|
TextParseMode ParseMode `json:"text_parse_mode,omitempty"`
|
||||||
|
TextEntities []MessageEntity `json:"text_entities,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SendGift(params SendGiftP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("sendGift", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type GiftPremiumSubscriptionP struct {
|
||||||
|
UserID int `json:"user_id"`
|
||||||
|
MonthCount int `json:"month_count"`
|
||||||
|
StarCount int `json:"star_count"`
|
||||||
|
Text string `json:"text,omitempty"`
|
||||||
|
TextParseMode ParseMode `json:"text_parse_mode,omitempty"`
|
||||||
|
TextEntities []MessageEntity `json:"text_entities,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) GiftPremiumSubscription(params GiftPremiumSubscriptionP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("giftPremiumSubscription", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
64
tgapi/bot_types.go
Normal file
64
tgapi/bot_types.go
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
package tgapi
|
||||||
|
|
||||||
|
type BotCommand struct {
|
||||||
|
Command string `json:"command"`
|
||||||
|
Description string `json:"description"`
|
||||||
|
}
|
||||||
|
type BotCommandScopeType string
|
||||||
|
|
||||||
|
const (
|
||||||
|
BotCommandScopeDefaultType BotCommandScopeType = "default"
|
||||||
|
BotCommandScopePrivateType BotCommandScopeType = "all_private_chats"
|
||||||
|
BotCommandScopeGroupType BotCommandScopeType = "all_group_chats"
|
||||||
|
BotCommandScopeAllChatAdministratorsType BotCommandScopeType = "all_chat_administrators"
|
||||||
|
BotCommandScopeChatType BotCommandScopeType = "chat"
|
||||||
|
BotCommandScopeChatAdministratorsType BotCommandScopeType = "chat_administrators"
|
||||||
|
BotCommandScopeChatMemberType BotCommandScopeType = "chat_member"
|
||||||
|
)
|
||||||
|
|
||||||
|
type BotCommandScope struct {
|
||||||
|
Type BotCommandScopeType `json:"type"`
|
||||||
|
ChatID *int `json:"chat_id,omitempty"`
|
||||||
|
UserID *int `json:"user_id,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type BotName struct {
|
||||||
|
Name string `json:"name"`
|
||||||
|
}
|
||||||
|
type BotDescription struct {
|
||||||
|
Description string `json:"description"`
|
||||||
|
}
|
||||||
|
type BotShortDescription struct {
|
||||||
|
ShortDescription string `json:"short_description"`
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
InputProfilePhotoStaticType InputProfilePhotoType = "static"
|
||||||
|
InputProfilePhotoAnimatedType InputProfilePhotoType = "animated"
|
||||||
|
)
|
||||||
|
|
||||||
|
type InputProfilePhotoType string
|
||||||
|
type InputProfilePhoto struct {
|
||||||
|
Type InputProfilePhotoType `json:"type"`
|
||||||
|
|
||||||
|
// Static
|
||||||
|
Photo *string `json:"photo,omitempty"`
|
||||||
|
|
||||||
|
// Animated
|
||||||
|
Animation *string `json:"animation,omitempty"`
|
||||||
|
MainFrameTimestamp *float64 `json:"main_frame_timestamp,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
MenuButtonCommandsType MenuButtonType = "commands"
|
||||||
|
MenuButtonWebAppType MenuButtonType = "web_app"
|
||||||
|
MenuButtonDefaultType MenuButtonType = "default"
|
||||||
|
)
|
||||||
|
|
||||||
|
type MenuButtonType string
|
||||||
|
type BaseMenuButton struct {
|
||||||
|
Type MenuButtonType `json:"type"`
|
||||||
|
// WebApp
|
||||||
|
Text string `json:"text"`
|
||||||
|
WebApp WebAppInfo `json:"web_app"`
|
||||||
|
}
|
||||||
258
tgapi/business_methods.go
Normal file
258
tgapi/business_methods.go
Normal file
@@ -0,0 +1,258 @@
|
|||||||
|
package tgapi
|
||||||
|
|
||||||
|
type VerifyUserP struct {
|
||||||
|
UserID int `json:"user_id"`
|
||||||
|
CustomDescription string `json:"custom_description,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) VerifyUser(params VerifyUserP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("verifyUser", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type VerifyChatP struct {
|
||||||
|
ChatID int `json:"chat_id"`
|
||||||
|
CustomDescription string `json:"custom_description,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) VerifyChat(params VerifyChatP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("verifyChat", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type RemoveUserVerificationP struct {
|
||||||
|
UserID int `json:"user_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) RemoveUserVerification(params RemoveUserVerificationP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("removeUserVerification", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type RemoveChatVerificationP struct {
|
||||||
|
ChatID int `json:"chat_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) RemoveChatVerification(params RemoveChatVerificationP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("removeChatVerification", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type ReadBusinessMessageP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id"`
|
||||||
|
ChatID int `json:"chat_id"`
|
||||||
|
MessageID int `json:"message_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) ReadBusinessMessage(params ReadBusinessMessageP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("readBusinessMessage", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type DeleteBusinessMessageP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id"`
|
||||||
|
MessageIDs []int `json:"message_ids"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) DeleteBusinessMessage(params DeleteBusinessMessageP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("deleteBusinessMessage", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SetBusinessAccountNameP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id"`
|
||||||
|
FirstName string `json:"first_name"`
|
||||||
|
LastName string `json:"last_name,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SetBusinessAccountName(params SetBusinessAccountNameP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("setBusinessAccountName", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SetBusinessAccountUsernameP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id"`
|
||||||
|
Username string `json:"username,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SetBusinessAccountUsername(params SetBusinessAccountUsernameP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("setBusinessAccountUsername", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SetBusinessAccountBioP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id"`
|
||||||
|
Bio string `json:"bio,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SetBusinessAccountBio(params SetBusinessAccountBioP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("setBusinessAccountBio", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SetBusinessAccountProfilePhoto struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id"`
|
||||||
|
Photo InputProfilePhoto `json:"photo,omitempty"`
|
||||||
|
IsPublic bool `json:"is_public,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SetBusinessAccountProfilePhoto(params SetBusinessAccountProfilePhoto) (bool, error) {
|
||||||
|
req := NewRequest[bool]("setBusinessAccountProfilePhoto", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type RemoveBusinessAccountProfilePhotoP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id"`
|
||||||
|
IsPublic bool `json:"is_public,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) RemoveBusinessAccountProfilePhoto(params RemoveBusinessAccountProfilePhotoP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("removeBusinessAccountProfilePhoto", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SetBusinessAccountGiftSettingsP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id"`
|
||||||
|
ShowGiftButton bool `json:"show_gift_button"`
|
||||||
|
AcceptedGiftTypes AcceptedGiftTypes `json:"accepted_gift_types"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SetBusinessAccountGiftSettings(params SetBusinessAccountGiftSettingsP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("setBusinessAccountGiftSettings", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type GetBusinessAccountStarBalanceP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) GetBusinessAccountStarBalance(params GetBusinessAccountStarBalanceP) (StarAmount, error) {
|
||||||
|
req := NewRequest[StarAmount]("getBusinessAccountGiftSettings", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type TransferBusinessAccountStartP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id"`
|
||||||
|
StarCount int `json:"star_count"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) TransferBusinessAccountStart(params TransferBusinessAccountStartP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("transferBusinessAccountStart", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type GetBusinessAccountGiftsP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id"`
|
||||||
|
ExcludeUnsaved bool `json:"exclude_unsaved,omitempty"`
|
||||||
|
ExcludeSaved bool `json:"exclude_saved,omitempty"`
|
||||||
|
ExcludeUnlimited bool `json:"exclude_unlimited,omitempty"`
|
||||||
|
ExcludeLimitedUpgradable bool `json:"exclude_limited_upgradable,omitempty"`
|
||||||
|
ExcludeLimitedNonUpgradable bool `json:"exclude_limited_non_upgradable,omitempty"`
|
||||||
|
ExcludeUnique bool `json:"exclude_unique,omitempty"`
|
||||||
|
ExcludeFromBlockchain bool `json:"exclude_from_blockchain,omitempty"`
|
||||||
|
SortByPrice bool `json:"sort_by_price,omitempty"`
|
||||||
|
Offset string `json:"offset,omitempty"`
|
||||||
|
Limit int `json:"limit,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) GetBusinessAccountGifts(params GetBusinessAccountGiftsP) (OwnedGifts, error) {
|
||||||
|
req := NewRequest[OwnedGifts]("getBusinessAccountGifts", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type ConvertGiftToStarsP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id"`
|
||||||
|
OwnedGiftID string `json:"owned_gift_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) ConvertGiftToStars(params ConvertGiftToStarsP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("convertGiftToStars", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type UpgradeGiftP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id"`
|
||||||
|
OwnedGiftID string `json:"owned_gift_id"`
|
||||||
|
KeepOriginalDetails bool `json:"keep_original_details,omitempty"`
|
||||||
|
StarCount int `json:"star_count,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) UpgradeGift(params UpgradeGiftP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("upgradeGift", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type TransferGiftP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id"`
|
||||||
|
OwnedGiftID string `json:"owned_gift_id"`
|
||||||
|
NewOwnerChatID int `json:"new_owner_chat_id"`
|
||||||
|
StarCount int `json:"star_count,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) TransferGift(params TransferGiftP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("transferGift", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type PostStoryP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id"`
|
||||||
|
Content InputStoryContent `json:"content"`
|
||||||
|
ActivePeriod int `json:"active_period"`
|
||||||
|
|
||||||
|
Caption string `json:"caption,omitempty"`
|
||||||
|
ParseMode ParseMode `json:"parse_mode,omitempty"`
|
||||||
|
CaptionEntities []MessageEntity `json:"caption_entities,omitempty"`
|
||||||
|
Areas []StoryArea `json:"areas"`
|
||||||
|
|
||||||
|
PostToChatPage bool `json:"post_to_chat_page,omitempty"`
|
||||||
|
ProtectContent bool `json:"protect_content,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) PostStoryPhoto(params PostStoryP) (Story, error) {
|
||||||
|
req := NewRequest[Story]("postStory", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
func (api *API) PostStoryVideo(params PostStoryP) (Story, error) {
|
||||||
|
req := NewRequest[Story]("postStory", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type RepostStoryP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id"`
|
||||||
|
FromChatID int `json:"from_chat_id"`
|
||||||
|
FromStoryID int `json:"from_story_id"`
|
||||||
|
ActivePeriod int `json:"active_period"`
|
||||||
|
PostToChatPage bool `json:"post_to_chat_page,omitempty"`
|
||||||
|
ProtectContent bool `json:"protect_content,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) RepostStory(params RepostStoryP) (Story, error) {
|
||||||
|
req := NewRequest[Story]("repostStory", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type EditStoryP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id"`
|
||||||
|
StoryID int `json:"story_id"`
|
||||||
|
Content InputStoryContent `json:"content"`
|
||||||
|
|
||||||
|
Caption string `json:"caption,omitempty"`
|
||||||
|
ParseMode ParseMode `json:"parse_mode,omitempty"`
|
||||||
|
CaptionEntities []MessageEntity `json:"caption_entities,omitempty"`
|
||||||
|
Areas []StoryArea `json:"areas,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) EditStory(params EditStoryP) (Story, error) {
|
||||||
|
req := NewRequest[Story]("editStory", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type DeleteStoryP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id"`
|
||||||
|
StoryID int `json:"story_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) DeleteStory(params DeleteStoryP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("deleteStory", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
104
tgapi/business_types.go
Normal file
104
tgapi/business_types.go
Normal file
@@ -0,0 +1,104 @@
|
|||||||
|
package tgapi
|
||||||
|
|
||||||
|
type BusinessIntro struct {
|
||||||
|
Title string `json:"title,omitempty"`
|
||||||
|
Message string `json:"message,omitempty"`
|
||||||
|
Sticker *Sticker `json:"sticker,omitempty"`
|
||||||
|
}
|
||||||
|
type BusinessLocation struct {
|
||||||
|
Address string `json:"address"`
|
||||||
|
Location *Location `json:"location,omitempty"`
|
||||||
|
}
|
||||||
|
type BusinessOpeningHoursInterval struct {
|
||||||
|
OpeningMinute int `json:"opening_minute"`
|
||||||
|
ClosingMinute int `json:"closing_minute"`
|
||||||
|
}
|
||||||
|
type BusinessOpeningHours struct {
|
||||||
|
TimeZoneName string `json:"time_zone_name"`
|
||||||
|
OpeningHours []Birthdate `json:"opening_hours"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type BusinessBotRights struct {
|
||||||
|
CanReply *bool `json:"can_reply,omitempty"`
|
||||||
|
CanReadMessages *bool `json:"can_read_messages,omitempty"`
|
||||||
|
CanDeleteSentMessages *bool `json:"can_delete_sent_messages,omitempty"`
|
||||||
|
CanDeleteAllMessages *bool `json:"can_delete_all_messages,omitempty"`
|
||||||
|
CanEditName *bool `json:"can_edit_name,omitempty"`
|
||||||
|
CanEditBio *bool `json:"can_edit_bio,omitempty"`
|
||||||
|
CanEditProfilePhoto *bool `json:"can_edit_profile_photo,omitempty"`
|
||||||
|
CanEditUsername *bool `json:"can_edit_username,omitempty"`
|
||||||
|
CanChangeGiftSettings *bool `json:"can_change_gift_settings,omitempty"`
|
||||||
|
CanViewGiftsAndStars *bool `json:"can_view_gifts_and_stars,omitempty"`
|
||||||
|
CanConvertGiftsToStars *bool `json:"can_convert_gifts_to_stars,omitempty"`
|
||||||
|
CanTransferAndUpgradeGifts *bool `json:"can_transfer_and_upgrade_gifts,omitempty"`
|
||||||
|
CanTransferStars *bool `json:"can_transfer_stars,omitempty"`
|
||||||
|
CanManageStories *bool `json:"can_manage_stories,omitempty"`
|
||||||
|
}
|
||||||
|
type BusinessConnection struct {
|
||||||
|
ID string `json:"id"`
|
||||||
|
User User `json:"user"`
|
||||||
|
UserChatID int `json:"user_chat_id"`
|
||||||
|
Date int `json:"date"`
|
||||||
|
Rights *BusinessBotRights `json:"rights,omitempty"`
|
||||||
|
IsEnabled bool `json:"id_enabled"`
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
InputStoryContentPhotoType InputStoryContentType = "photo"
|
||||||
|
InputStoryContentVideoType InputStoryContentType = "video"
|
||||||
|
)
|
||||||
|
|
||||||
|
type InputStoryContentType string
|
||||||
|
type InputStoryContent struct {
|
||||||
|
Type InputStoryContentType `json:"type"`
|
||||||
|
// Photo
|
||||||
|
Photo *string `json:"photo,omitempty"`
|
||||||
|
|
||||||
|
// Video
|
||||||
|
Video *string `json:"video,omitempty"`
|
||||||
|
Duration *float64 `json:"duration,omitempty"`
|
||||||
|
CoverFrameTimestamp *float64 `json:"cover_frame_timestamp,omitempty"`
|
||||||
|
IsAnimation *bool `json:"is_animation,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type StoryAreaPosition struct {
|
||||||
|
XPercentage float64 `json:"x_percentage"`
|
||||||
|
YPercentage float64 `json:"y_percentage"`
|
||||||
|
WidthPercentage float64 `json:"width_percentage"`
|
||||||
|
HeightPercentage float64 `json:"height_percentage"`
|
||||||
|
RotationAngle float64 `json:"rotation_angle"`
|
||||||
|
CornerRadiusPercentage float64 `json:"corner_radius_percentage"`
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
StoryAreaTypeLocationType StoryAreaTypeType = "location"
|
||||||
|
StoryAreaTypeReactionType StoryAreaTypeType = "suggested_reaction"
|
||||||
|
StoryAreaTypeLinkType StoryAreaTypeType = "link"
|
||||||
|
StoryAreaTypeWeatherType StoryAreaTypeType = "weather"
|
||||||
|
StoryAreaTypeUniqueGiftType StoryAreaTypeType = "unique_gift"
|
||||||
|
)
|
||||||
|
|
||||||
|
type StoryAreaTypeType string
|
||||||
|
type StoryAreaType struct {
|
||||||
|
Type StoryAreaTypeType `json:"type"`
|
||||||
|
|
||||||
|
Latitude *float64 `json:"latitude,omitempty"`
|
||||||
|
Longitude *float64 `json:"longitude,omitempty"`
|
||||||
|
Address *LocationAddress `json:"address,omitempty"`
|
||||||
|
|
||||||
|
ReactionType *ReactionType `json:"reaction_type,omitempty"`
|
||||||
|
IsDark *bool `json:"is_dark,omitempty"`
|
||||||
|
IsFlipped *bool `json:"is_flipped,omitempty"`
|
||||||
|
|
||||||
|
URL *string `json:"url,omitempty"`
|
||||||
|
|
||||||
|
Temperature *float64 `json:"temperature,omitempty"`
|
||||||
|
Emoji *string `json:"emoji"`
|
||||||
|
BackgroundColor *int `json:"background_color"`
|
||||||
|
|
||||||
|
Name *string `json:"name,omitempty"`
|
||||||
|
}
|
||||||
|
type StoryArea struct {
|
||||||
|
Position StoryAreaPosition `json:"position"`
|
||||||
|
Type StoryAreaType `json:"type"`
|
||||||
|
}
|
||||||
370
tgapi/chat_methods.go
Normal file
370
tgapi/chat_methods.go
Normal file
@@ -0,0 +1,370 @@
|
|||||||
|
package tgapi
|
||||||
|
|
||||||
|
type BanChatMemberP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
UserID int `json:"user_id"`
|
||||||
|
UntilDate int `json:"until_date,omitempty"`
|
||||||
|
RevokeMessages bool `json:"revoke_messages,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) BanChatMember(params BanChatMemberP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("banChatMember", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type UnbanChatMemberP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
UserID int `json:"user_id"`
|
||||||
|
OnlyIfBanned bool `json:"only_if_banned"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) UnbanChatMember(params UnbanChatMemberP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("unbanChatMember", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type RestrictChatMemberP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
UserID int `json:"user_id"`
|
||||||
|
Permissions ChatPermissions `json:"permissions"`
|
||||||
|
UseIndependentChatPermissions bool `json:"use_independent_chat_permissions,omitempty"`
|
||||||
|
UntilDate int `json:"until_date,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) RestrictChatMember(params RestrictChatMemberP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("restrictChatMember", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type PromoteChatMember struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
UserID int `json:"user_id"`
|
||||||
|
IsAnonymous bool `json:"is_anonymous,omitempty"`
|
||||||
|
|
||||||
|
CanManageChat bool `json:"can_manage_chat,omitempty"`
|
||||||
|
CanDeleteMessages bool `json:"can_delete_messages,omitempty"`
|
||||||
|
CanManageVideoChats bool `json:"can_manage_video_chats,omitempty"`
|
||||||
|
CanRestrictMembers bool `json:"can_restrict_members,omitempty"`
|
||||||
|
CanPromoteMembers bool `json:"can_promote_members,omitempty"`
|
||||||
|
CanChangeInfo bool `json:"can_change_info,omitempty"`
|
||||||
|
CanInviteUsers bool `json:"can_invite_users,omitempty"`
|
||||||
|
CanPostStories bool `json:"can_post_stories,omitempty"`
|
||||||
|
CanEditStories bool `json:"can_edit_stories,omitempty"`
|
||||||
|
CanDeleteStories bool `json:"can_delete_stories,omitempty"`
|
||||||
|
CanPostMessages bool `json:"can_post_messages,omitempty"`
|
||||||
|
CanEditMessages bool `json:"can_edit_messages,omitempty"`
|
||||||
|
CanPinMessages bool `json:"can_pin_messages,omitempty"`
|
||||||
|
CanManageTopics bool `json:"can_manage_topics,omitempty"`
|
||||||
|
CanManageDirectMessages bool `json:"can_manage_direct_messages,omitempty"`
|
||||||
|
CanManageTags bool `json:"can_manage_tags,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) PromoteChatMember(params PromoteChatMember) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("promoteChatMember", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SetChatAdministratorCustomTitleP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
UserID int `json:"user_id"`
|
||||||
|
CustomTitle string `json:"custom_title"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SetChatAdministratorCustomTitle(params SetChatAdministratorCustomTitleP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("setChatAdministratorCustomTitle", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SetChatMemberTagP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
UserID int `json:"user_id"`
|
||||||
|
Tag string `json:"tag,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SetChatMemberTag(params SetChatMemberTagP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("setChatMemberTag", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type BanChatSenderChatP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
SenderChatID int64 `json:"sender_chat_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) BanChatSenderChat(params BanChatSenderChatP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("banChatSenderChat", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type UnbanChatSenderChatP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
SenderChatID int64 `json:"sender_chat_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) UnbanChatSenderChat(params BanChatSenderChatP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("unbanChatSenderChat", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SetChatPermissionsP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
Permissions ChatPermissions `json:"permissions"`
|
||||||
|
UseIndependentChatPermissions bool `json:"use_independent_chat_permissions,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SetChatPermissions(params SetChatPermissionsP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("setChatPermissions", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type ExportChatInviteLinkP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) ExportChatInviteLink(params ExportChatInviteLinkP) (string, error) {
|
||||||
|
req := NewRequestWithChatID[string]("exportChatInviteLink", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type CreateChatInviteLinkP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
Name *string `json:"name,omitempty"`
|
||||||
|
ExpireDate int `json:"expire_date,omitempty"`
|
||||||
|
MemberLimit int `json:"member_limit,omitempty"`
|
||||||
|
CreatesJoinRequest int `json:"creates_join_request,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) CreateChatInviteLink(params CreateChatInviteLinkP) (ChatInviteLink, error) {
|
||||||
|
req := NewRequestWithChatID[ChatInviteLink]("createChatInviteLink", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type EditChatInviteLinkP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
InviteLink string `json:"invite_link"`
|
||||||
|
|
||||||
|
Name string `json:"name,omitempty"`
|
||||||
|
ExpireDate int `json:"expire_date,omitempty"`
|
||||||
|
MemberLimit int `json:"member_limit,omitempty"`
|
||||||
|
CreatesJoinRequest int `json:"creates_join_request,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) EditChatInviteLink(params EditChatInviteLinkP) (ChatInviteLink, error) {
|
||||||
|
req := NewRequestWithChatID[ChatInviteLink]("editChatInviteLink", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type CreateChatSubscriptionInviteLinkP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
Name string `json:"name,omitempty"`
|
||||||
|
SubscriptionPeriod int `json:"subscription_period,omitempty"`
|
||||||
|
SubscriptionPrice int `json:"subscription_price,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) CreateChatSubscriptionInviteLink(params CreateChatSubscriptionInviteLinkP) (ChatInviteLink, error) {
|
||||||
|
req := NewRequestWithChatID[ChatInviteLink]("createChatSubscriptionInviteLink", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type EditChatSubscriptionInviteLinkP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
InviteLink string `json:"invite_link"`
|
||||||
|
Name string `json:"name,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) EditChatSubscriptionInviteLink(params EditChatSubscriptionInviteLinkP) (ChatInviteLink, error) {
|
||||||
|
req := NewRequestWithChatID[ChatInviteLink]("editChatSubscriptionInviteLink", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type RevokeChatInviteLinkP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
InviteLink string `json:"invite_link"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) RevokeChatInviteLink(params RevokeChatInviteLinkP) (ChatInviteLink, error) {
|
||||||
|
req := NewRequestWithChatID[ChatInviteLink]("revokeChatInviteLink", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type ApproveChatJoinRequestP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
UserID int `json:"user_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) ApproveChatJoinRequest(params ApproveChatJoinRequestP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("approveChatJoinRequest", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type DeclineChatJoinRequestP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
UserID int `json:"user_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) DeclineChatJoinRequest(params DeclineChatJoinRequestP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("declineChatJoinRequest", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SetChatPhoto() {
|
||||||
|
uploader := NewUploader(api)
|
||||||
|
defer func() {
|
||||||
|
_ = uploader.Close()
|
||||||
|
}()
|
||||||
|
}
|
||||||
|
|
||||||
|
type DeleteChatPhotoP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) DeleteChatPhoto(params DeleteChatPhotoP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("deleteChatPhoto", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SetChatTitleP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
Title string `json:"title"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SetChatTitle(params SetChatTitleP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("setChatTitle", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SetChatDescriptionP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
Description string `json:"description"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SetChatDescription(params SetChatDescriptionP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("setChatDescription", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type PinChatMessageP struct {
|
||||||
|
BusinessConnectionID *string `json:"business_connection_id,omitempty"`
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageID int `json:"message_id"`
|
||||||
|
DisableNotification bool `json:"disable_notification,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) PinChatMessage(params PinChatMessageP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("pinChatMessage", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type UnpinChatMessageP struct {
|
||||||
|
BusinessConnectionID *string `json:"business_connection_id,omitempty"`
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageID int `json:"message_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) UnpinChatMessage(params UnpinChatMessageP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("unpinChatMessage", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type UnpinAllChatMessagesP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) UnpinAllChatMessages(params UnpinAllChatMessagesP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("unpinAllChatMessages", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type LeaveChatP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) LeaveChat(params LeaveChatP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("leaveChatP", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type GetChatP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) GetChatP(params GetChatP) (ChatFullInfo, error) {
|
||||||
|
req := NewRequestWithChatID[ChatFullInfo]("getChatP", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type GetChatAdministratorsP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) GetChatAdministrators(params GetChatAdministratorsP) ([]ChatMember, error) {
|
||||||
|
req := NewRequestWithChatID[[]ChatMember]("getChatAdministrators", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type GetChatMembersCountP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) GetChatMemberCount(params GetChatMembersCountP) (int, error) {
|
||||||
|
req := NewRequestWithChatID[int]("getChatMemberCount", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type GetChatMemberP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
UserID int `json:"user_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) GetChatMember(params GetChatMemberP) (ChatMember, error) {
|
||||||
|
req := NewRequestWithChatID[ChatMember]("getChatMember", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SetChatStickerSetP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
StickerSetName string `json:"sticker_set_name"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SetChatStickerSet(params SetChatStickerSetP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("setChatStickerSet", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type DeleteChatStickerSetP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) DeleteChatStickerSet(params DeleteChatStickerSetP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("deleteChatStickerSet", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type GetUserChatBoostsP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
UserID int `json:"user_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) GetUserChatBoosts(params GetUserChatBoostsP) (UserChatBoosts, error) {
|
||||||
|
req := NewRequestWithChatID[UserChatBoosts]("getUserChatBoosts", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type GetChatGiftsP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
ExcludeUnsaved bool `json:"exclude_unsaved,omitempty"`
|
||||||
|
ExcludeSaved bool `json:"exclude_saved,omitempty"`
|
||||||
|
ExcludeUnlimited bool `json:"exclude_unlimited,omitempty"`
|
||||||
|
ExcludeLimitedUpgradable bool `json:"exclude_limited_upgradable,omitempty"`
|
||||||
|
ExcludeLimitedNonUpgradable bool `json:"exclude_limited_non_upgradable,omitempty"`
|
||||||
|
ExcludeUnique bool `json:"exclude_unique,omitempty"`
|
||||||
|
ExcludeFromBlockchain bool `json:"exclude_from_blockchain,omitempty"`
|
||||||
|
SortByPrice bool `json:"sort_by_price,omitempty"`
|
||||||
|
Offset string `json:"offset,omitempty"`
|
||||||
|
Limit int `json:"limit,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) GetChatGifts(params GetChatGiftsP) (OwnedGifts, error) {
|
||||||
|
req := NewRequestWithChatID[OwnedGifts]("getChatGifts", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
235
tgapi/chat_types.go
Normal file
235
tgapi/chat_types.go
Normal file
@@ -0,0 +1,235 @@
|
|||||||
|
package tgapi
|
||||||
|
|
||||||
|
type Chat struct {
|
||||||
|
ID int64 `json:"id"`
|
||||||
|
Type string `json:"type"`
|
||||||
|
Title *string `json:"title,omitempty"`
|
||||||
|
Username *string `json:"username,omitempty"`
|
||||||
|
FirstName *string `json:"first_name,omitempty"`
|
||||||
|
LastName *string `json:"last_name,omitempty"`
|
||||||
|
IsForum *bool `json:"is_forum,omitempty"`
|
||||||
|
IsDirectMessages *bool `json:"is_direct_messages,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type ChatType string
|
||||||
|
|
||||||
|
const (
|
||||||
|
ChatTypePrivate ChatType = "private"
|
||||||
|
ChatTypeGroup ChatType = "group"
|
||||||
|
ChatTypeSupergroup ChatType = "supergroup"
|
||||||
|
ChatTypeChannel ChatType = "channel"
|
||||||
|
)
|
||||||
|
|
||||||
|
type ChatFullInfo struct {
|
||||||
|
ID int `json:"id"`
|
||||||
|
Type ChatType `json:"type"`
|
||||||
|
Title string `json:"title"`
|
||||||
|
Username string `json:"username"`
|
||||||
|
FirstName string `json:"first_name"`
|
||||||
|
LastName string `json:"last_name"`
|
||||||
|
IsForum bool `json:"is_forum"`
|
||||||
|
IsDirectMessages bool `json:"is_direct_messages"`
|
||||||
|
AccentColorID int `json:"accent_color_id"`
|
||||||
|
MaxReactionCount int `json:"max_reaction_count"`
|
||||||
|
Photo *ChatPhoto `json:"photo,omitempty"`
|
||||||
|
ActiveUsernames []string `json:"active_usernames,omitempty"`
|
||||||
|
Birthdate *Birthdate `json:"birthdate,omitempty"`
|
||||||
|
|
||||||
|
BusinessIntro *BusinessIntro `json:"business_intro,omitempty"`
|
||||||
|
BusinessLocation *BusinessLocation `json:"business_location,omitempty"`
|
||||||
|
BusinessOpeningHours *BusinessOpeningHours `json:"business_opening_hours,omitempty"`
|
||||||
|
|
||||||
|
PersonalChat *Chat `json:"personal_chat,omitempty"`
|
||||||
|
ParentChat *Chat `json:"parent_chat,omitempty"`
|
||||||
|
|
||||||
|
AvailableReaction []ReactionType `json:"available_reaction,omitempty"`
|
||||||
|
|
||||||
|
BackgroundCustomEmojiID *string `json:"background_custom_emoji_id,omitempty"`
|
||||||
|
ProfileAccentColorID *int `json:"profile_accent_color_id,omitempty"`
|
||||||
|
ProfileBackgroundCustomEmojiID *string `json:"profile_background_custom_emoji_id,omitempty"`
|
||||||
|
EmojiStatusCustomEmojiID *string `json:"emoji_status_custom_emoji_id,omitempty"`
|
||||||
|
EmojiStatusExpirationDate *int `json:"emoji_status_expiration_date,omitempty"`
|
||||||
|
|
||||||
|
Bio *string `json:"bio,omitempty"`
|
||||||
|
HasPrivateForwards *bool `json:"has_private_forwards,omitempty"`
|
||||||
|
HasRestrictedVoiceAndVideoMessages *bool `json:"has_restricted_voice_and_video_messages,omitempty"`
|
||||||
|
JoinToSendMessages *bool `json:"join_to_send_messages,omitempty"`
|
||||||
|
JoinByRequest *bool `json:"join_by_request,omitempty"`
|
||||||
|
|
||||||
|
Description *string `json:"description,omitempty"`
|
||||||
|
InviteLink *string `json:"invite_link,omitempty"`
|
||||||
|
PinnedMessage *Message `json:"pinned_message,omitempty"`
|
||||||
|
Permissions *ChatPermissions `json:"permissions,omitempty"`
|
||||||
|
AcceptedGiftTypes *AcceptedGiftTypes `json:"accepted_gift_types,omitempty"`
|
||||||
|
|
||||||
|
CanSendPaidMedia *bool `json:"can_send_paid_media,omitempty"`
|
||||||
|
SlowModeDelay *int `json:"slow_mode_delay,omitempty"`
|
||||||
|
UnrestrictedBoostCount *int `json:"unrestricted_boost_count,omitempty"`
|
||||||
|
MessageAutoDeleteTime *int `json:"message_auto_delete_time,omitempty"`
|
||||||
|
HasAggressiveAntiSpamEnabled *bool `json:"has_aggressive_anti_spam_enabled,omitempty"`
|
||||||
|
HasHiddenMembers *bool `json:"has_hidden_members,omitempty"`
|
||||||
|
HasProtectedContent *bool `json:"has_protected_content,omitempty"`
|
||||||
|
HasVisibleHistory *bool `json:"has_visible_history,omitempty"`
|
||||||
|
StickerSetName *string `json:"sticker_set_name,omitempty"`
|
||||||
|
CanSetStickerSet *bool `json:"can_set_sticker_set,omitempty"`
|
||||||
|
CustomEmojiStickerSetName *string `json:"custom_emoji_sticker_set_name,omitempty"`
|
||||||
|
LinkedChatID *int `json:"linked_chat_id,omitempty"`
|
||||||
|
|
||||||
|
Location *ChatLocation `json:"location,omitempty"`
|
||||||
|
Rating *UserRating `json:"rating,omitempty"`
|
||||||
|
FirstProfileAudio *Audio `json:"first_profile_audio,omitempty"`
|
||||||
|
UniqueGiftColors *UniqueGiftColors `json:"unique_gift_colors,omitempty"`
|
||||||
|
PaidMessageStarCount *int `json:"paid_message_star_count,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type ChatPhoto struct {
|
||||||
|
SmallFileID string `json:"small_file_id"`
|
||||||
|
SmallFileUniqueID string `json:"small_file_unique_id"`
|
||||||
|
BigFileID string `json:"big_file_id"`
|
||||||
|
BigFileUniqueID string `json:"big_file_unique_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type ChatPermissions struct {
|
||||||
|
CanSendMessages bool `json:"can_send_messages"`
|
||||||
|
CanSendAudios bool `json:"can_send_audios"`
|
||||||
|
CanSendDocuments bool `json:"can_send_documents"`
|
||||||
|
CanSendPhotos bool `json:"can_send_photos"`
|
||||||
|
CanSendVideoNotes bool `json:"can_send_video_notes"`
|
||||||
|
CanSendVoiceNotes bool `json:"can_send_voice_notes"`
|
||||||
|
CanSendPolls bool `json:"can_send_polls"`
|
||||||
|
CanSendOtherMessages bool `json:"can_send_other_messages"`
|
||||||
|
CanAddWebPagePreview bool `json:"can_add_web_page_preview"`
|
||||||
|
CatEditTag bool `json:"cat_edit_tag"`
|
||||||
|
CanChangeInfo bool `json:"can_change_info"`
|
||||||
|
CanInviteUsers bool `json:"can_invite_users"`
|
||||||
|
CanPinMessages bool `json:"can_pin_messages"`
|
||||||
|
CanManageTopics bool `json:"can_manage_topics"`
|
||||||
|
}
|
||||||
|
type ChatLocation struct {
|
||||||
|
Location Location `json:"location"`
|
||||||
|
Address string `json:"address"`
|
||||||
|
}
|
||||||
|
type ChatInviteLink struct {
|
||||||
|
InviteLink string `json:"invite_link"`
|
||||||
|
Creator User `json:"creator"`
|
||||||
|
CreateJoinRequest bool `json:"create_join_request"`
|
||||||
|
IsPrimary bool `json:"is_primary"`
|
||||||
|
IsRevoked bool `json:"is_revoked"`
|
||||||
|
|
||||||
|
Name *string `json:"name,omitempty"`
|
||||||
|
ExpireDate *int `json:"expire_date,omitempty"`
|
||||||
|
MemberLimit *int `json:"member_limit,omitempty"`
|
||||||
|
PendingJoinRequestCount *int `json:"pending_join_request_count,omitempty"`
|
||||||
|
SubscriptionPeriod *int `json:"subscription_period,omitempty"`
|
||||||
|
SubscriptionPrice *int `json:"subscription_price,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type ChatMemberStatusType string
|
||||||
|
|
||||||
|
const (
|
||||||
|
ChatMemberStatusOwner ChatMemberStatusType = "owner"
|
||||||
|
ChatMemberStatusAdministrator ChatMemberStatusType = "administrator"
|
||||||
|
ChatMemberStatusMember ChatMemberStatusType = "member"
|
||||||
|
ChatMemberStatusRestricted ChatMemberStatusType = "restricted"
|
||||||
|
ChatMemberStatusLeft ChatMemberStatusType = "left"
|
||||||
|
ChatMemberStatusBanned ChatMemberStatusType = "kicked"
|
||||||
|
)
|
||||||
|
|
||||||
|
type ChatMember struct {
|
||||||
|
Status ChatMemberStatusType `json:"status"`
|
||||||
|
User User `json:"user"`
|
||||||
|
Tag string `json:"tag,omitempty"`
|
||||||
|
|
||||||
|
// Owner
|
||||||
|
IsAnonymous *bool `json:"is_anonymous"`
|
||||||
|
CustomTitle *string `json:"custom_title,omitempty"`
|
||||||
|
|
||||||
|
// Administrator
|
||||||
|
CanBeEdited *bool `json:"can_be_edited,omitempty"`
|
||||||
|
CanManageChat *bool `json:"can_manage_chat,omitempty"`
|
||||||
|
CanDeleteMessages *bool `json:"can_delete_messages,omitempty"`
|
||||||
|
CanManageVideoChats *bool `json:"can_manage_video_chats,omitempty"`
|
||||||
|
CanRestrictMembers *bool `json:"can_restrict_members,omitempty"`
|
||||||
|
CanPromoteMembers *bool `json:"can_promote_members,omitempty"`
|
||||||
|
CanChangeInfo *bool `json:"can_change_info,omitempty"`
|
||||||
|
CanInviteUsers *bool `json:"can_invite_users,omitempty"`
|
||||||
|
CanPostStories *bool `json:"can_post_stories,omitempty"`
|
||||||
|
CanEditStories *bool `json:"can_edit_stories,omitempty"`
|
||||||
|
CanDeleteStories *bool `json:"can_delete_stories,omitempty"`
|
||||||
|
|
||||||
|
CanPostMessages *bool `json:"can_post_messages,omitempty"`
|
||||||
|
CanEditMessages *bool `json:"can_edit_messages,omitempty"`
|
||||||
|
CanPinMessages *bool `json:"can_pin_messages,omitempty"`
|
||||||
|
CanManageTopics *bool `json:"can_manage_topics,omitempty"`
|
||||||
|
CanManageDirectMessages *bool `json:"can_manage_direct_messages,omitempty"`
|
||||||
|
CanManageTags *bool `json:"can_manage_tags,omitempty"`
|
||||||
|
|
||||||
|
// Member
|
||||||
|
UntilDate *int `json:"until_date,omitempty"`
|
||||||
|
|
||||||
|
// Restricted
|
||||||
|
IsMember *bool `json:"is_member,omitempty"`
|
||||||
|
CanSendMessages *bool `json:"can_send_messages,omitempty"`
|
||||||
|
CanSendAudios *bool `json:"can_send_audios,omitempty"`
|
||||||
|
CanSendDocuments *bool `json:"can_send_documents,omitempty"`
|
||||||
|
CanSendVideos *bool `json:"can_send_videos,omitempty"`
|
||||||
|
CanSendVideoNotes *bool `json:"can_send_video_notes,omitempty"`
|
||||||
|
CanSendVoiceNotes *bool `json:"can_send_voice_notes,omitempty"`
|
||||||
|
CanSendPolls *bool `json:"can_send_polls,omitempty"`
|
||||||
|
CanSendOtherMessages *bool `json:"can_send_other_messages,omitempty"`
|
||||||
|
CanAddWebPagePreview *bool `json:"can_add_web_page_preview,omitempty"`
|
||||||
|
CanEditTag *bool `json:"can_edit_tag,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type ChatBoostSource struct {
|
||||||
|
Source string `json:"source"`
|
||||||
|
User User `json:"user"`
|
||||||
|
|
||||||
|
// Giveaway
|
||||||
|
GiveawayMessageID *int `json:"giveaway_message_id,omitempty"`
|
||||||
|
PrizeStarCount *int `json:"prize_star_count,omitempty"`
|
||||||
|
IsUnclaimed *bool `json:"is_unclaimed,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type ChatBoost struct {
|
||||||
|
BoostID int `json:"boost_id"`
|
||||||
|
AddDate int `json:"add_date"`
|
||||||
|
ExpirationDate int `json:"expiration_date"`
|
||||||
|
Source ChatBoostSource `json:"source"`
|
||||||
|
}
|
||||||
|
type UserChatBoosts struct {
|
||||||
|
Boosts []ChatBoost `json:"boosts"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type ChatAdministratorRights struct {
|
||||||
|
IsAnonymous bool `json:"is_anonymous"`
|
||||||
|
CanManageChat bool `json:"can_manage_chat"`
|
||||||
|
CanDeleteMessages bool `json:"can_delete_messages"`
|
||||||
|
CanManageVideoChats bool `json:"can_manage_video_chats"`
|
||||||
|
CanRestrictMembers bool `json:"can_restrict_members"`
|
||||||
|
CanPromoteMembers bool `json:"can_promote_members"`
|
||||||
|
CanChangeInfo bool `json:"can_change_info"`
|
||||||
|
CanInviteUsers bool `json:"can_invite_users"`
|
||||||
|
CanPostStories bool `json:"can_post_stories"`
|
||||||
|
CanEditStories bool `json:"can_edit_stories"`
|
||||||
|
CanDeleteStories bool `json:"can_delete_stories"`
|
||||||
|
|
||||||
|
CanPostMessages *bool `json:"can_post_messages,omitempty"`
|
||||||
|
CanEditMessages *bool `json:"can_edit_messages,omitempty"`
|
||||||
|
CanPinMessages *bool `json:"can_pin_messages,omitempty"`
|
||||||
|
CanManageTopics *bool `json:"can_manage_topics,omitempty"`
|
||||||
|
CanManageDirectMessages *bool `json:"can_manage_direct_messages,omitempty"`
|
||||||
|
CanManageTags *bool `json:"can_manage_tags,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type ChatBoostUpdated struct {
|
||||||
|
Chat Chat `json:"chat"`
|
||||||
|
Boost ChatBoost `json:"boost"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type ChatBoostRemoved struct {
|
||||||
|
Chat Chat `json:"chat"`
|
||||||
|
BoostID string `json:"boost_id"`
|
||||||
|
RemoveDate int `json:"remove_date"`
|
||||||
|
Source ChatBoostSource `json:"source"`
|
||||||
|
}
|
||||||
7
tgapi/errors.go
Normal file
7
tgapi/errors.go
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
package tgapi
|
||||||
|
|
||||||
|
import "errors"
|
||||||
|
|
||||||
|
var ErrRateLimit = errors.New("rate limit exceeded")
|
||||||
|
var ErrPoolUnexpected = errors.New("unexpected response from pool")
|
||||||
|
var ErrPoolQueueFull = errors.New("worker pool queue full")
|
||||||
86
tgapi/forum_methods.go
Normal file
86
tgapi/forum_methods.go
Normal file
@@ -0,0 +1,86 @@
|
|||||||
|
package tgapi
|
||||||
|
|
||||||
|
type BaseForumTopicP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageThreadID int `json:"message_thread_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) GetForumTopicIconStickers() ([]Sticker, error) {
|
||||||
|
req := NewRequest[[]Sticker]("getForumTopicIconStickers", NoParams)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type CreateForumTopicP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
IconColor ForumTopicIconColor `json:"icon_color"`
|
||||||
|
IconCustomEmojiID string `json:"icon_custom_emoji_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) CreateForumTopic(params CreateForumTopicP) (ForumTopic, error) {
|
||||||
|
req := NewRequestWithChatID[ForumTopic]("createForumTopic", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type EditForumTopicP struct {
|
||||||
|
BaseForumTopicP
|
||||||
|
Name string `json:"name"`
|
||||||
|
IconCustomEmojiID string `json:"icon_custom_emoji_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) EditForumTopic(params EditForumTopicP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("editForumTopic", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) CloseForumTopic(params BaseForumTopicP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("closeForumTopic", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
func (api *API) ReopenForumTopic(params BaseForumTopicP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("reopenForumTopic", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
func (api *API) DeleteForumTopic(params BaseForumTopicP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("deleteForumTopic", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
func (api *API) UnpinAllForumTopicMessages(params BaseForumTopicP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("unpinAllForumTopicMessages", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type BaseGeneralForumTopicP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type EditGeneralForumTopicP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) EditGeneralForumTopic(params EditGeneralForumTopicP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("editGeneralForumTopic", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) CloseGeneralForumTopic(params BaseGeneralForumTopicP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("closeGeneralForumTopic", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
func (api *API) ReopenGeneralForumTopic(params BaseGeneralForumTopicP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("reopenGeneralForumTopic", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
func (api *API) HideGeneralForumTopic(params BaseGeneralForumTopicP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("hideGeneralForumTopic", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
func (api *API) UnhideGeneralForumTopic(params BaseGeneralForumTopicP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("unhideGeneralForumTopic", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
func (api *API) UnpinAllGeneralForumTopicMessages(params BaseGeneralForumTopicP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("unpinAllGeneralForumTopicMessages", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
15
tgapi/forum_types.go
Normal file
15
tgapi/forum_types.go
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
package tgapi
|
||||||
|
|
||||||
|
type ForumTopic struct {
|
||||||
|
MessageThreadID int `json:"message_thread_id"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
IconColor int `json:"icon_color"`
|
||||||
|
IconCustomEmojiID string `json:"icon_custom_emoji_id,omitempty"`
|
||||||
|
IsNameImplicit bool `json:"is_name_implicit,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type ForumTopicIconColor int
|
||||||
|
|
||||||
|
const (
|
||||||
|
ForumTopicIconColorBlue ForumTopicIconColor = 7322096
|
||||||
|
)
|
||||||
528
tgapi/messages_methods.go
Normal file
528
tgapi/messages_methods.go
Normal file
@@ -0,0 +1,528 @@
|
|||||||
|
package tgapi
|
||||||
|
|
||||||
|
type SendMessageP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id,omitempty"`
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageThreadID int `json:"message_thread_id,omitempty"`
|
||||||
|
DirectMessagesTopicID int64 `json:"direct_messages_topic_id,omitempty"`
|
||||||
|
|
||||||
|
Text string `json:"text"`
|
||||||
|
ParseMode ParseMode `json:"parse_mode,omitempty"`
|
||||||
|
Entities []MessageEntity `json:"entities,omitempty"`
|
||||||
|
LinkPreviewOptions *LinkPreviewOptions `json:"link_preview_options,omitempty"`
|
||||||
|
DisableNotifications bool `json:"disable_notifications,omitempty"`
|
||||||
|
ProtectContent bool `json:"protect_content,omitempty"`
|
||||||
|
AllowPaidBroadcast bool `json:"allow_paid_broadcast,omitempty"`
|
||||||
|
MessageEffectID string `json:"message_effect_id,omitempty"`
|
||||||
|
|
||||||
|
SuggestedPostParameters *SuggestedPostParameters `json:"suggested_post_parameters,omitempty"`
|
||||||
|
ReplyParameters *ReplyParameters `json:"reply_parameters,omitempty"`
|
||||||
|
ReplyMarkup *ReplyMarkup `json:"reply_markup,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SendMessage(params SendMessageP) (Message, error) {
|
||||||
|
req := NewRequestWithChatID[Message, SendMessageP]("sendMessage", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type ForwardMessageP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageThreadID int `json:"message_thread_id,omitempty"`
|
||||||
|
DirectMessagesTopicID int `json:"direct_messages_topic_id,omitempty"`
|
||||||
|
|
||||||
|
MessageID int `json:"message_id,omitempty"`
|
||||||
|
FromChatID int64 `json:"from_chat_id,omitempty"`
|
||||||
|
VideoStartTimestamp int `json:"video_start_timestamp,omitempty"`
|
||||||
|
DisableNotification bool `json:"disable_notification,omitempty"`
|
||||||
|
ProtectContent bool `json:"protect_content,omitempty"`
|
||||||
|
|
||||||
|
MessageEffectID string `json:"message_effect_id,omitempty"`
|
||||||
|
SuggestedPostParameters *SuggestedPostParameters `json:"suggested_post_parameters,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) ForwardMessage(params ForwardMessageP) (Message, error) {
|
||||||
|
req := NewRequestWithChatID[Message]("forwardMessage", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type ForwardMessagesP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageThreadID int `json:"message_thread_id,omitempty"`
|
||||||
|
DirectMessagesTopicID int `json:"direct_messages_topic_id,omitempty"`
|
||||||
|
|
||||||
|
FromChatID int64 `json:"from_chat_id,omitempty"`
|
||||||
|
MessageIDs []int `json:"message_ids,omitempty"`
|
||||||
|
DisableNotification bool `json:"disable_notification,omitempty"`
|
||||||
|
ProtectContent bool `json:"protect_content,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) ForwardMessages(params ForwardMessagesP) ([]int, error) {
|
||||||
|
req := NewRequestWithChatID[[]int]("forwardMessages", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type CopyMessageP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageThreadID int `json:"message_thread_id,omitempty"`
|
||||||
|
DirectMessagesTopicID int `json:"direct_messages_topic_id,omitempty"`
|
||||||
|
|
||||||
|
FromChatID int64 `json:"from_chat_id"`
|
||||||
|
MessageID int `json:"message_id"`
|
||||||
|
VideoStartTimestamp int `json:"video_start_timestamp,omitempty"`
|
||||||
|
Caption string `json:"caption,omitempty"`
|
||||||
|
ParseMode ParseMode `json:"parse_mode,omitempty"`
|
||||||
|
|
||||||
|
CaptionEntities []MessageEntity `json:"caption_entities,omitempty"`
|
||||||
|
ShowCaptionAboveMedia bool `json:"show_caption_above_media,omitempty"`
|
||||||
|
DisableNotification bool `json:"disable_notification,omitempty"`
|
||||||
|
ProtectContent bool `json:"protect_content,omitempty"`
|
||||||
|
AllowPaidBroadcast bool `json:"allow_paid_broadcast,omitempty"`
|
||||||
|
MessageEffectID string `json:"message_effect_id,omitempty"`
|
||||||
|
|
||||||
|
SuggestedPostParameters *SuggestedPostParameters `json:"suggested_post_parameters,omitempty"`
|
||||||
|
ReplyParameters *ReplyParameters `json:"reply_parameters,omitempty"`
|
||||||
|
ReplyMarkup *ReplyMarkup `json:"reply_markup,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) CopyMessage(params CopyMessageP) (int, error) {
|
||||||
|
req := NewRequestWithChatID[int]("copyMessage", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type CopyMessagesP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageThreadID int `json:"message_thread_id,omitempty"`
|
||||||
|
DirectMessagesTopicID int `json:"direct_messages_topic_id,omitempty"`
|
||||||
|
|
||||||
|
FromChatID int64 `json:"from_chat_id,omitempty"`
|
||||||
|
MessageIDs []int `json:"message_ids,omitempty"`
|
||||||
|
DisableNotification bool `json:"disable_notification,omitempty"`
|
||||||
|
ProtectContent bool `json:"protect_content,omitempty"`
|
||||||
|
RemoveCaption bool `json:"remove_caption,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) CopyMessages(params CopyMessagesP) ([]int, error) {
|
||||||
|
req := NewRequestWithChatID[[]int]("copyMessages", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SendLocationP struct {
|
||||||
|
BusinessConnectionID int `json:"business_connection_id,omitempty"`
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageThreadID int `json:"message_thread_id,omitempty"`
|
||||||
|
DirectMessagesTopicID int `json:"direct_messages_topic_id,omitempty"`
|
||||||
|
|
||||||
|
Latitude float64 `json:"latitude"`
|
||||||
|
Longitude float64 `json:"longitude"`
|
||||||
|
HorizontalAccuracy float64 `json:"horizontal_accuracy,omitempty"`
|
||||||
|
LivePeriod int `json:"live_period,omitempty"`
|
||||||
|
Heading int `json:"heading,omitempty"`
|
||||||
|
ProximityAlertRadius int `json:"proximity_alert_radius,omitempty"`
|
||||||
|
|
||||||
|
DisableNotification bool `json:"disable_notification,omitempty"`
|
||||||
|
ProtectContent bool `json:"protect_content,omitempty"`
|
||||||
|
AllowPaidBroadcast bool `json:"allow_paid_broadcast,omitempty"`
|
||||||
|
MessageEffectID string `json:"message_effect_id,omitempty"`
|
||||||
|
|
||||||
|
SuggestedPostParameters *SuggestedPostParameters `json:"suggested_post_parameters,omitempty"`
|
||||||
|
ReplyParameters *ReplyParameters `json:"reply_parameters,omitempty"`
|
||||||
|
ReplyMarkup *ReplyMarkup `json:"reply_markup,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SendLocation(params SendLocationP) (Message, error) {
|
||||||
|
req := NewRequestWithChatID[Message]("sendLocation", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SendVenueP struct {
|
||||||
|
BusinessConnectionID int `json:"business_connection_id,omitempty"`
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageThreadID int `json:"message_thread_id,omitempty"`
|
||||||
|
DirectMessagesTopicID int `json:"direct_messages_topic_id,omitempty"`
|
||||||
|
|
||||||
|
Latitude float64 `json:"latitude"`
|
||||||
|
Longitude float64 `json:"longitude"`
|
||||||
|
Title string `json:"title"`
|
||||||
|
Address string `json:"address"`
|
||||||
|
FoursquareID string `json:"foursquare_id,omitempty"`
|
||||||
|
FoursquareType string `json:"foursquare_type,omitempty"`
|
||||||
|
GooglePlaceID string `json:"google_place_id,omitempty"`
|
||||||
|
GooglePlaceType string `json:"google_place_type,omitempty"`
|
||||||
|
|
||||||
|
DisableNotification bool `json:"disable_notification,omitempty"`
|
||||||
|
ProtectContent bool `json:"protect_content,omitempty"`
|
||||||
|
AllowPaidBroadcast bool `json:"allow_paid_broadcast,omitempty"`
|
||||||
|
MessageEffectID string `json:"message_effect_id,omitempty"`
|
||||||
|
|
||||||
|
SuggestedPostParameters *SuggestedPostParameters `json:"suggested_post_parameters,omitempty"`
|
||||||
|
ReplyParameters *ReplyParameters `json:"reply_parameters,omitempty"`
|
||||||
|
ReplyMarkup *ReplyMarkup `json:"reply_markup,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SendVenue(params SendVenueP) (Message, error) {
|
||||||
|
req := NewRequestWithChatID[Message]("sendVenue", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SendContactP struct {
|
||||||
|
BusinessConnectionID int `json:"business_connection_id,omitempty"`
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageThreadID int `json:"message_thread_id,omitempty"`
|
||||||
|
DirectMessagesTopicID int `json:"direct_messages_topic_id,omitempty"`
|
||||||
|
|
||||||
|
PhoneNumber string `json:"phone_number"`
|
||||||
|
FirstName string `json:"first_name"`
|
||||||
|
LastName string `json:"last_name,omitempty"`
|
||||||
|
Vcard string `json:"vcard"`
|
||||||
|
|
||||||
|
DisableNotification bool `json:"disable_notification,omitempty"`
|
||||||
|
ProtectContent bool `json:"protect_content,omitempty"`
|
||||||
|
AllowPaidBroadcast bool `json:"allow_paid_broadcast,omitempty"`
|
||||||
|
MessageEffectID string `json:"message_effect_id,omitempty"`
|
||||||
|
|
||||||
|
SuggestedPostParameters *SuggestedPostParameters `json:"suggested_post_parameters,omitempty"`
|
||||||
|
ReplyParameters *ReplyParameters `json:"reply_parameters,omitempty"`
|
||||||
|
ReplyMarkup *ReplyMarkup `json:"reply_markup,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SendContact(params SendContactP) (Message, error) {
|
||||||
|
req := NewRequestWithChatID[Message]("sendContact", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SendPollP struct {
|
||||||
|
BusinessConnectionID int `json:"business_connection_id,omitempty"`
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageThreadID int `json:"message_thread_id,omitempty"`
|
||||||
|
|
||||||
|
Question string `json:"question"`
|
||||||
|
QuestionParseMode ParseMode `json:"question_mode,omitempty"`
|
||||||
|
QuestionEntities []MessageEntity `json:"question_entities,omitempty"`
|
||||||
|
Options []InputPollOption `json:"options"`
|
||||||
|
IsAnonymous bool `json:"is_anonymous,omitempty"`
|
||||||
|
Type PollType `json:"type"`
|
||||||
|
AllowsMultipleAnswers bool `json:"allows_multiple_answers,omitempty"`
|
||||||
|
CorrectOptionID int `json:"correct_option_id,omitempty"`
|
||||||
|
Explanation string `json:"explanation,omitempty"`
|
||||||
|
ExplanationParseMode ParseMode `json:"explanation_parse_mode,omitempty"`
|
||||||
|
ExplanationEntities []MessageEntity `json:"explanation_entities,omitempty"`
|
||||||
|
OpenPeriod int `json:"open_period,omitempty"`
|
||||||
|
CloseDate int `json:"close_date"`
|
||||||
|
IsClosed bool `json:"is_closed,omitempty"`
|
||||||
|
|
||||||
|
DisableNotification bool `json:"disable_notification,omitempty"`
|
||||||
|
ProtectContent bool `json:"protect_content,omitempty"`
|
||||||
|
AllowPaidBroadcast bool `json:"allow_paid_broadcast,omitempty"`
|
||||||
|
MessageEffectID string `json:"message_effect_id,omitempty"`
|
||||||
|
|
||||||
|
ReplyParameters *ReplyParameters `json:"reply_parameters,omitempty"`
|
||||||
|
ReplyMarkup *ReplyMarkup `json:"reply_markup,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SendPoll(params SendPollP) (Message, error) {
|
||||||
|
req := NewRequestWithChatID[Message]("sendPoll", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SendChecklistP struct {
|
||||||
|
BusinessConnectionID int `json:"business_connection_id"`
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
Checklist InputChecklist `json:"checklist"`
|
||||||
|
|
||||||
|
DisableNotification bool `json:"disable_notification,omitempty"`
|
||||||
|
ProtectContent bool `json:"protect_content,omitempty"`
|
||||||
|
MessageEffectID string `json:"message_effect_id,omitempty"`
|
||||||
|
|
||||||
|
ReplyParameters *ReplyParameters `json:"reply_parameters,omitempty"`
|
||||||
|
ReplyMarkup *ReplyMarkup `json:"reply_markup,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SendChecklist(params SendChecklistP) (Message, error) {
|
||||||
|
req := NewRequestWithChatID[Message]("sendChecklist", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SendDiceP struct {
|
||||||
|
BusinessConnectionID int `json:"business_connection_id,omitempty"`
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageThreadID int `json:"message_thread_id,omitempty"`
|
||||||
|
DirectMessagesTopicID int `json:"direct_messages_topic_id,omitempty"`
|
||||||
|
|
||||||
|
Emoji string `json:"emoji,omitempty"`
|
||||||
|
|
||||||
|
DisableNotification bool `json:"disable_notification,omitempty"`
|
||||||
|
ProtectContent bool `json:"protect_content,omitempty"`
|
||||||
|
AllowPaidBroadcast bool `json:"allow_paid_broadcast,omitempty"`
|
||||||
|
MessageEffectID string `json:"message_effect_id,omitempty"`
|
||||||
|
|
||||||
|
SuggestedPostParameters *SuggestedPostParameters `json:"suggested_post_parameters,omitempty"`
|
||||||
|
ReplyParameters *ReplyParameters `json:"reply_parameters,omitempty"`
|
||||||
|
ReplyMarkup *ReplyMarkup `json:"reply_markup,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SendDice(params SendDiceP) (Message, error) {
|
||||||
|
req := NewRequestWithChatID[Message]("sendDice", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SendMessageDraftP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageThreadID int `json:"message_thread_id,omitempty"`
|
||||||
|
DraftID uint64 `json:"draft_id"`
|
||||||
|
Text string `json:"text"`
|
||||||
|
ParseMode ParseMode `json:"parse_mode,omitempty"`
|
||||||
|
Entities []MessageEntity `json:"entities,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SendMessageDraft(params SendMessageDraftP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("sendMessageDraft", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SendChatActionP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id,omitempty"`
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageThreadID int `json:"message_thread_id,omitempty"`
|
||||||
|
Action ChatActionType `json:"action"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SendChatAction(params SendChatActionP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("sendChatAction", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SetMessageReactionP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageId int `json:"message_id"`
|
||||||
|
Reaction []ReactionType `json:"reaction"`
|
||||||
|
IsBig bool `json:"is_big,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SetMessageReaction(params SetMessageReactionP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("setMessageReaction", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Message update methods
|
||||||
|
|
||||||
|
type EditMessageTextP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id,omitempty"`
|
||||||
|
ChatID int64 `json:"chat_id,omitempty"`
|
||||||
|
MessageID int `json:"message_id,omitempty"`
|
||||||
|
InlineMessageID string `json:"inline_message_id,omitempty"`
|
||||||
|
Text string `json:"text"`
|
||||||
|
ParseMode ParseMode `json:"parse_mode,omitempty"`
|
||||||
|
ReplyMarkup *ReplyMarkup `json:"reply_markup,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// EditMessageText If inline message, first return will be zero-valued, and second will boolean
|
||||||
|
// Otherwise, first return will be Message, and second false
|
||||||
|
func (api *API) EditMessageText(params EditMessageTextP) (Message, bool, error) {
|
||||||
|
var zero Message
|
||||||
|
if params.InlineMessageID != "" {
|
||||||
|
req := NewRequestWithChatID[bool]("editMessageText", params, params.ChatID)
|
||||||
|
res, err := req.Do(api)
|
||||||
|
return zero, res, err
|
||||||
|
}
|
||||||
|
req := NewRequestWithChatID[Message]("editMessageText", params, params.ChatID)
|
||||||
|
res, err := req.Do(api)
|
||||||
|
return res, false, err
|
||||||
|
}
|
||||||
|
|
||||||
|
type EditMessageCaptionP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id,omitempty"`
|
||||||
|
ChatID int64 `json:"chat_id,omitempty"`
|
||||||
|
MessageID int `json:"message_id,omitempty"`
|
||||||
|
InlineMessageID string `json:"inline_message_id,omitempty"`
|
||||||
|
Caption string `json:"caption"`
|
||||||
|
ParseMode ParseMode `json:"parse_mode,omitempty"`
|
||||||
|
ReplyMarkup *ReplyMarkup `json:"reply_markup,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// EditMessageCaption If inline message, first return will be zero-valued, and second will boolean
|
||||||
|
// Otherwise, first return will be Message, and second false
|
||||||
|
func (api *API) EditMessageCaption(params EditMessageCaptionP) (Message, bool, error) {
|
||||||
|
var zero Message
|
||||||
|
if params.InlineMessageID != "" {
|
||||||
|
req := NewRequestWithChatID[bool]("editMessageCaption", params, params.ChatID)
|
||||||
|
res, err := req.Do(api)
|
||||||
|
return zero, res, err
|
||||||
|
}
|
||||||
|
req := NewRequestWithChatID[Message]("editMessageCaption", params, params.ChatID)
|
||||||
|
res, err := req.Do(api)
|
||||||
|
return res, false, err
|
||||||
|
}
|
||||||
|
|
||||||
|
type EditMessageMediaP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id,omitempty"`
|
||||||
|
ChatID int64 `json:"chat_id,omitempty"`
|
||||||
|
MessageID int `json:"message_id,omitempty"`
|
||||||
|
InlineMessageID string `json:"inline_message_id,omitempty"`
|
||||||
|
Message InputMedia `json:"message"`
|
||||||
|
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// EditMessageMedia If inline message, first return will be zero-valued, and second will boolean
|
||||||
|
// Otherwise, first return will be Message, and second false
|
||||||
|
func (api *API) EditMessageMedia(params EditMessageMediaP) (Message, bool, error) {
|
||||||
|
var zero Message
|
||||||
|
if params.InlineMessageID != "" {
|
||||||
|
req := NewRequestWithChatID[bool]("editMessageMedia", params, params.ChatID)
|
||||||
|
res, err := req.Do(api)
|
||||||
|
return zero, res, err
|
||||||
|
}
|
||||||
|
req := NewRequestWithChatID[Message]("editMessageMedia", params, params.ChatID)
|
||||||
|
res, err := req.Do(api)
|
||||||
|
return res, false, err
|
||||||
|
}
|
||||||
|
|
||||||
|
type EditMessageLiveLocationP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id,omitempty"`
|
||||||
|
ChatID int64 `json:"chat_id,omitempty"`
|
||||||
|
MessageID int `json:"message_id,omitempty"`
|
||||||
|
InlineMessageID string `json:"inline_message_id,omitempty"`
|
||||||
|
|
||||||
|
Latitude float64 `json:"latitude"`
|
||||||
|
Longitude float64 `json:"longitude"`
|
||||||
|
LivePeriod int `json:"live_period,omitempty"`
|
||||||
|
HorizontalAccuracy float64 `json:"horizontal_accuracy,omitempty"`
|
||||||
|
Heading int `json:"heading,omitempty"`
|
||||||
|
ProximityAlertRadius int `json:"proximity_alert_radius,omitempty"`
|
||||||
|
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// EditMessageLiveLocation If inline message, first return will be zero-valued, and second will boolean
|
||||||
|
// Otherwise, first return will be Message, and second false
|
||||||
|
func (api *API) EditMessageLiveLocation(params EditMessageLiveLocationP) (Message, bool, error) {
|
||||||
|
var zero Message
|
||||||
|
if params.InlineMessageID != "" {
|
||||||
|
req := NewRequestWithChatID[bool]("editMessageLiveLocation", params, params.ChatID)
|
||||||
|
res, err := req.Do(api)
|
||||||
|
return zero, res, err
|
||||||
|
}
|
||||||
|
req := NewRequestWithChatID[Message]("editMessageLiveLocation", params, params.ChatID)
|
||||||
|
res, err := req.Do(api)
|
||||||
|
return res, false, err
|
||||||
|
}
|
||||||
|
|
||||||
|
type StopMessageLiveLocationP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id,omitempty"`
|
||||||
|
ChatID int64 `json:"chat_id,omitempty"`
|
||||||
|
MessageID int `json:"message_id,omitempty"`
|
||||||
|
InlineMessageID string `json:"inline_message_id,omitempty"`
|
||||||
|
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// StopMessageLiveLocation If inline message, first return will be zero-valued, and second will boolean
|
||||||
|
// Otherwise, first return will be Message, and second false
|
||||||
|
func (api *API) StopMessageLiveLocation(params StopMessageLiveLocationP) (Message, bool, error) {
|
||||||
|
var zero Message
|
||||||
|
if params.InlineMessageID != "" {
|
||||||
|
req := NewRequestWithChatID[bool]("stopMessageLiveLocation", params, params.ChatID)
|
||||||
|
res, err := req.Do(api)
|
||||||
|
return zero, res, err
|
||||||
|
}
|
||||||
|
req := NewRequestWithChatID[Message]("stopMessageLiveLocation", params, params.ChatID)
|
||||||
|
res, err := req.Do(api)
|
||||||
|
return res, false, err
|
||||||
|
}
|
||||||
|
|
||||||
|
type EditMessageChecklistP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id"`
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageID int `json:"message_id"`
|
||||||
|
Checklist InputChecklist `json:"checklist"`
|
||||||
|
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) EditMessageChecklist(params EditMessageChecklistP) (Message, error) {
|
||||||
|
req := NewRequestWithChatID[Message]("editMessageChecklist", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type EditMessageReplyMarkupP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id,omitempty"`
|
||||||
|
ChatID int64 `json:"chat_id,omitempty"`
|
||||||
|
MessageID int `json:"message_id,omitempty"`
|
||||||
|
InlineMessageID string `json:"inline_message_id,omitempty"`
|
||||||
|
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) EditMessageReplyMarkup(params EditMessageReplyMarkupP) (Message, bool, error) {
|
||||||
|
var zero Message
|
||||||
|
if params.InlineMessageID != "" {
|
||||||
|
req := NewRequestWithChatID[bool]("editMessageReplyMarkup", params, params.ChatID)
|
||||||
|
res, err := req.Do(api)
|
||||||
|
return zero, res, err
|
||||||
|
}
|
||||||
|
req := NewRequestWithChatID[Message]("editMessageReplyMarkup", params, params.ChatID)
|
||||||
|
res, err := req.Do(api)
|
||||||
|
return res, false, err
|
||||||
|
}
|
||||||
|
|
||||||
|
type StopPollP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id,omitempty"`
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageID int `json:"message_id"`
|
||||||
|
InlineMessageID string `json:"inline_message_id,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) StopPoll(params StopPollP) (Poll, error) {
|
||||||
|
req := NewRequestWithChatID[Poll]("stopPoll", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type ApproveSuggestedPostP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageID int `json:"message_id"`
|
||||||
|
SendDate int `json:"send_date,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) ApproveSuggestedPost(params ApproveSuggestedPostP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("approveSuggestedPost", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type DeclineSuggestedPostP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageID int `json:"message_id"`
|
||||||
|
Comment string `json:"comment,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) DeclineSuggestedPost(params DeclineSuggestedPostP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("declineSuggestedPost", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type DeleteMessageP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageID int `json:"message_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) DeleteMessage(params DeleteMessageP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("deleteMessage", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type DeleteMessagesP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageIDs []int `json:"message_ids"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) DeleteMessages(params DeleteMessagesP) (bool, error) {
|
||||||
|
req := NewRequestWithChatID[bool]("deleteMessages", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type AnswerCallbackQueryP struct {
|
||||||
|
CallbackQueryID string `json:"callback_query_id"`
|
||||||
|
Text string `json:"text,omitempty"`
|
||||||
|
ShowAlert bool `json:"show_alert,omitempty"`
|
||||||
|
URL string `json:"url,omitempty"`
|
||||||
|
CacheTime int `json:"cache_time,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) AnswerCallbackQuery(params AnswerCallbackQueryP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("answerCallbackQuery", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
240
tgapi/messages_types.go
Normal file
240
tgapi/messages_types.go
Normal file
@@ -0,0 +1,240 @@
|
|||||||
|
package tgapi
|
||||||
|
|
||||||
|
import "git.nix13.pw/scuroneko/extypes"
|
||||||
|
|
||||||
|
type MessageReplyMarkup struct {
|
||||||
|
InlineKeyboard [][]InlineKeyboardButton `json:"inline_keyboard"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type DirectMessageTopic struct {
|
||||||
|
TopicID int64 `json:"topic_id"`
|
||||||
|
User *User `json:"user,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type Message struct {
|
||||||
|
MessageID int `json:"message_id"`
|
||||||
|
MessageThreadID int `json:"message_thread_id,omitempty"`
|
||||||
|
DirectMessageTopic *DirectMessageTopic `json:"direct_message_topic,omitempty"`
|
||||||
|
BusinessConnectionId string `json:"business_connection_id,omitempty"`
|
||||||
|
From *User `json:"from,omitempty"`
|
||||||
|
|
||||||
|
SenderChat *Chat `json:"sender_chat,omitempty"`
|
||||||
|
SenderBoostCount int `json:"sender_boost_count,omitempty"`
|
||||||
|
SenderBusinessBot *User `json:"sender_business_bot,omitempty"`
|
||||||
|
SenderTag string `json:"sender_tag,omitempty"`
|
||||||
|
Chat *Chat `json:"chat,omitempty"`
|
||||||
|
|
||||||
|
IsTopicMessage bool `json:"is_topic_message,omitempty"`
|
||||||
|
IsAutomaticForward bool `json:"is_automatic_forward,omitempty"`
|
||||||
|
IsFromOffline bool `json:"is_from_offline,omitempty"`
|
||||||
|
IsPaidPost bool `json:"is_paid_post,omitempty"`
|
||||||
|
MediaGroupId string `json:"media_group_id,omitempty"`
|
||||||
|
AuthorSignature string `json:"author_signature,omitempty"`
|
||||||
|
PaidStarCount int `json:"paid_star_count,omitempty"`
|
||||||
|
ReplyToMessage *Message `json:"reply_to_message,omitempty"`
|
||||||
|
|
||||||
|
Text string `json:"text"`
|
||||||
|
|
||||||
|
Photo extypes.Slice[*PhotoSize] `json:"photo,omitempty"`
|
||||||
|
Caption string `json:"caption,omitempty"`
|
||||||
|
CaptionEntities []MessageEntity `json:"caption_entities,omitempty"`
|
||||||
|
|
||||||
|
Date int `json:"date"`
|
||||||
|
EditDate int `json:"edit_date"`
|
||||||
|
|
||||||
|
ReplyMarkup *MessageReplyMarkup `json:"reply_markup,omitempty"`
|
||||||
|
|
||||||
|
Entities []MessageEntity `json:"entities,omitempty"`
|
||||||
|
LinkPreviewOptions *LinkPreviewOptions `json:"link_preview_options,omitempty"`
|
||||||
|
SuggestedPostInfo *SuggestedPostInfo `json:"suggested_post_info,omitempty"`
|
||||||
|
|
||||||
|
EffectID string `json:"effect_id,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type InaccessibleMessage struct {
|
||||||
|
Chat Chat `json:"chat"`
|
||||||
|
MessageID int `json:"message_id"`
|
||||||
|
Date int `json:"date"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type MaybeInaccessibleMessage interface{ Message | InaccessibleMessage }
|
||||||
|
|
||||||
|
type MessageEntityType string
|
||||||
|
|
||||||
|
const (
|
||||||
|
MessageEntityMention MessageEntityType = "mention"
|
||||||
|
MessageEntityHashtag MessageEntityType = "hashtag"
|
||||||
|
MessageEntityCashtag MessageEntityType = "cashtag"
|
||||||
|
MessageEntityBotCommand MessageEntityType = "bot_command"
|
||||||
|
MessageEntityUrl MessageEntityType = "url"
|
||||||
|
MessageEntityEmail MessageEntityType = "email"
|
||||||
|
MessageEntityPhoneNumber MessageEntityType = "phone_number"
|
||||||
|
MessageEntityBold MessageEntityType = "bold"
|
||||||
|
MessageEntityItalic MessageEntityType = "italic"
|
||||||
|
MessageEntityUnderline MessageEntityType = "underline"
|
||||||
|
MessageEntityStrike MessageEntityType = "strikethrough"
|
||||||
|
MessageEntitySpoiler MessageEntityType = "spoiler"
|
||||||
|
MessageEntityBlockquote MessageEntityType = "blockquote"
|
||||||
|
MessageEntityExpandableBlockquote MessageEntityType = "expandable_blockquote"
|
||||||
|
MessageEntityCode MessageEntityType = "code"
|
||||||
|
MessageEntityPre MessageEntityType = "pre"
|
||||||
|
MessageEntityTextLink MessageEntityType = "text_link"
|
||||||
|
MessageEntityTextMention MessageEntityType = "text_mention"
|
||||||
|
MessageEntityCustomEmoji MessageEntityType = "custom_emoji"
|
||||||
|
MessageEntityDateTime MessageEntityType = "date_time"
|
||||||
|
)
|
||||||
|
|
||||||
|
type MessageEntity struct {
|
||||||
|
Type MessageEntityType `json:"type"`
|
||||||
|
|
||||||
|
Offset int `json:"offset"`
|
||||||
|
Length int `json:"length"`
|
||||||
|
URL string `json:"url,omitempty"`
|
||||||
|
User *User `json:"user,omitempty"`
|
||||||
|
Language string `json:"language,omitempty"`
|
||||||
|
CustomEmojiID string `json:"custom_emoji_id,omitempty"`
|
||||||
|
|
||||||
|
UnixTime int `json:"unix_time,omitempty"`
|
||||||
|
DateTimeFormat string `json:"date_time_format,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type ReplyParameters struct {
|
||||||
|
MessageID int `json:"message_id"`
|
||||||
|
ChatID int `json:"chat_id,omitempty"`
|
||||||
|
|
||||||
|
AllowSendingWithoutReply bool `json:"allow_sending_without_reply,omitempty"`
|
||||||
|
Quote string `json:"quote,omitempty"`
|
||||||
|
QuoteParsingMode string `json:"quote_parsing_mode,omitempty"`
|
||||||
|
QuoteEntities []*MessageEntity `json:"quote_entities,omitempty"`
|
||||||
|
QuotePosition int `json:"quote_position,omitempty"`
|
||||||
|
ChecklistTaskID int `json:"checklist_task_id,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type LinkPreviewOptions struct {
|
||||||
|
IsDisabled bool `json:"is_disabled,omitempty"`
|
||||||
|
URL string `json:"url,omitempty"`
|
||||||
|
PreferSmallMedia bool `json:"prefer_small_media,omitempty"`
|
||||||
|
PreferLargeMedia bool `json:"prefer_large_media,omitempty"`
|
||||||
|
ShowAboveText bool `json:"show_above_text,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type ReplyMarkup struct {
|
||||||
|
InlineKeyboard [][]InlineKeyboardButton `json:"inline_keyboard,omitempty"`
|
||||||
|
|
||||||
|
Keyboard [][]int `json:"keyboard,omitempty"`
|
||||||
|
IsPersistent bool `json:"is_persistent,omitempty"`
|
||||||
|
ResizeKeyboard bool `json:"resize_keyboard,omitempty"`
|
||||||
|
OneTimeKeyboard bool `json:"one_time_keyboard,omitempty"`
|
||||||
|
InputFieldPlaceholder string `json:"input_field_placeholder,omitempty"`
|
||||||
|
Selective bool `json:"selective,omitempty"`
|
||||||
|
|
||||||
|
RemoveKeyboard bool `json:"remove_keyboard,omitempty"`
|
||||||
|
|
||||||
|
ForceReply bool `json:"force_reply,omitempty"`
|
||||||
|
}
|
||||||
|
type InlineKeyboardMarkup struct {
|
||||||
|
InlineKeyboard [][]InlineKeyboardButton `json:"inline_keyboard,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type KeyboardButtonStyle string
|
||||||
|
type InlineKeyboardButton struct {
|
||||||
|
Text string `json:"text"`
|
||||||
|
URL string `json:"url,omitempty"`
|
||||||
|
CallbackData string `json:"callback_data,omitempty"`
|
||||||
|
Style KeyboardButtonStyle `json:"style,omitempty"`
|
||||||
|
IconCustomEmojiID string `json:"icon_custom_emoji_id,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type ReplyKeyboardMarkup struct {
|
||||||
|
Keyboard [][]int `json:"keyboard"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type CallbackQuery struct {
|
||||||
|
ID string `json:"id"`
|
||||||
|
From User `json:"from"`
|
||||||
|
Message Message `json:"message"`
|
||||||
|
|
||||||
|
Data string `json:"data"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type InputPollOption struct {
|
||||||
|
Text string `json:"text"`
|
||||||
|
TextParseMode ParseMode `json:"text_parse_mode,omitempty"`
|
||||||
|
TextEntities []*MessageEntity `json:"text_entities,omitempty"`
|
||||||
|
}
|
||||||
|
type PollType string
|
||||||
|
|
||||||
|
const (
|
||||||
|
PollTypeRegular PollType = "regular"
|
||||||
|
PollTypeQuiz PollType = "quiz"
|
||||||
|
)
|
||||||
|
|
||||||
|
type InputChecklistTask struct {
|
||||||
|
ID int `json:"id"`
|
||||||
|
Text string `json:"text"`
|
||||||
|
ParseMode ParseMode `json:"parse_mode,omitempty"`
|
||||||
|
TextEntities []*MessageEntity `json:"text_entities,omitempty"`
|
||||||
|
}
|
||||||
|
type InputChecklist struct {
|
||||||
|
Title string `json:"title"`
|
||||||
|
ParseMode ParseMode `json:"parse_mode,omitempty"`
|
||||||
|
TitleEntities []*MessageEntity `json:"title_entities,omitempty"`
|
||||||
|
Tasks []InputChecklistTask `json:"tasks"`
|
||||||
|
OtherCanAddTasks bool `json:"other_can_add_tasks,omitempty"`
|
||||||
|
OtherCanMarkTasksAsDone bool `json:"other_can_mark_tasks_as_done,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type ChatActionType string
|
||||||
|
|
||||||
|
const (
|
||||||
|
ChatActionTyping ChatActionType = "typing"
|
||||||
|
ChatActionUploadPhoto ChatActionType = "upload_photo"
|
||||||
|
ChatActionUploadVideo ChatActionType = "upload_video"
|
||||||
|
ChatActionUploadVoice ChatActionType = "upload_voice"
|
||||||
|
ChatActionUploadDocument ChatActionType = "upload_document"
|
||||||
|
ChatActionChooseSticker ChatActionType = "choose_sticker"
|
||||||
|
ChatActionFindLocation ChatActionType = "find_location"
|
||||||
|
ChatActionUploadVideoNone ChatActionType = "upload_video_none"
|
||||||
|
)
|
||||||
|
|
||||||
|
type MessageReactionUpdated struct {
|
||||||
|
Chat *Chat `json:"chat"`
|
||||||
|
MessageID int `json:"message_id"`
|
||||||
|
User *User `json:"user,omitempty"`
|
||||||
|
ActorChat *Chat `json:"actor_chat"`
|
||||||
|
Date int `json:"date"`
|
||||||
|
OldReaction []ReactionType `json:"old_reaction"`
|
||||||
|
NewReaction []ReactionType `json:"new_reaction"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type MessageReactionCountUpdated struct {
|
||||||
|
Chat *Chat `json:"chat"`
|
||||||
|
MessageID int `json:"message_id"`
|
||||||
|
Date int `json:"date"`
|
||||||
|
Reactions []*ReactionCount `json:"reactions"`
|
||||||
|
}
|
||||||
|
type ReactionType struct {
|
||||||
|
Type string `json:"type"`
|
||||||
|
// ReactionTypeEmoji
|
||||||
|
Emoji *string `json:"emoji,omitempty"`
|
||||||
|
// ReactionTypeCustomEmoji
|
||||||
|
CustomEmojiID *string `json:"custom_emoji_id,omitempty"`
|
||||||
|
}
|
||||||
|
type ReactionCount struct {
|
||||||
|
Type ReactionType `json:"type"`
|
||||||
|
TotalCount int `json:"total_count"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type SuggestedPostPrice struct {
|
||||||
|
Currency string `json:"currency"`
|
||||||
|
Amount int `json:"amount"`
|
||||||
|
}
|
||||||
|
type SuggestedPostInfo struct {
|
||||||
|
State string `json:"state"` //State of the suggested post. Currently, it can be one of “pending”, “approved”, “declined”.
|
||||||
|
Price SuggestedPostPrice `json:"price"`
|
||||||
|
SendDate int `json:"send_date"`
|
||||||
|
}
|
||||||
|
type SuggestedPostParameters struct {
|
||||||
|
Price SuggestedPostPrice `json:"price"`
|
||||||
|
SendDate int `json:"send_date"`
|
||||||
|
}
|
||||||
65
tgapi/methods.go
Normal file
65
tgapi/methods.go
Normal file
@@ -0,0 +1,65 @@
|
|||||||
|
package tgapi
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
"net/http"
|
||||||
|
)
|
||||||
|
|
||||||
|
type ParseMode string
|
||||||
|
|
||||||
|
const (
|
||||||
|
ParseMDV2 ParseMode = "MarkdownV2"
|
||||||
|
ParseHTML ParseMode = "HTML"
|
||||||
|
ParseMD ParseMode = "Markdown"
|
||||||
|
ParseNone ParseMode = "None"
|
||||||
|
)
|
||||||
|
|
||||||
|
type EmptyParams struct{}
|
||||||
|
|
||||||
|
var NoParams = EmptyParams{}
|
||||||
|
|
||||||
|
type UpdateParams struct {
|
||||||
|
Offset *int `json:"offset,omitempty"`
|
||||||
|
Limit *int `json:"limit,omitempty"`
|
||||||
|
Timeout *int `json:"timeout,omitempty"`
|
||||||
|
AllowedUpdates []UpdateType `json:"allowed_updates"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) GetMe() (User, error) {
|
||||||
|
req := NewRequest[User, EmptyParams]("getMe", NoParams)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
func (api *API) LogOut() (bool, error) {
|
||||||
|
req := NewRequest[bool, EmptyParams]("logOut", NoParams)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
func (api *API) Close() (bool, error) {
|
||||||
|
req := NewRequest[bool, EmptyParams]("close", NoParams)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
func (api *API) GetUpdates(params UpdateParams) ([]Update, error) {
|
||||||
|
req := NewRequest[[]Update]("getUpdates", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type GetFileP struct {
|
||||||
|
FileId string `json:"file_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) GetFile(params GetFileP) (File, error) {
|
||||||
|
req := NewRequest[File]("getFile", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) GetFileByLink(link string) ([]byte, error) {
|
||||||
|
u := fmt.Sprintf("https://api.telegram.org/file/bot%s/%s", api.token, link)
|
||||||
|
res, err := http.Get(u)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
defer func() {
|
||||||
|
_ = res.Body.Close()
|
||||||
|
}()
|
||||||
|
return io.ReadAll(res.Body)
|
||||||
|
}
|
||||||
142
tgapi/pool.go
Normal file
142
tgapi/pool.go
Normal file
@@ -0,0 +1,142 @@
|
|||||||
|
package tgapi
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"sync"
|
||||||
|
)
|
||||||
|
|
||||||
|
// workerPool — приватная структура, управляющая пулом воркеров.
|
||||||
|
// Внешний код не может создавать или напрямую взаимодействовать с этой структурой.
|
||||||
|
// Используется только через экспортируемые методы newWorkerPool, start, stop, submit.
|
||||||
|
type workerPool struct {
|
||||||
|
taskCh chan requestEnvelope // канал для принятия задач (буферизованный)
|
||||||
|
queueSize int // максимальный размер очереди
|
||||||
|
workers int // количество воркеров (горутин)
|
||||||
|
wg sync.WaitGroup // синхронизирует завершение всех воркеров при остановке
|
||||||
|
quit chan struct{} // канал для сигнала остановки
|
||||||
|
started bool // флаг, указывающий, запущен ли пул
|
||||||
|
startedMu sync.Mutex // мьютекс для безопасного доступа к started
|
||||||
|
}
|
||||||
|
|
||||||
|
// requestEnvelope — приватная структура, инкапсулирующая задачу и канал для результата.
|
||||||
|
// Используется только внутри пакета для передачи задач воркерам.
|
||||||
|
type requestEnvelope struct {
|
||||||
|
doFunc func(context.Context) (any, error) // функция, выполняющая запрос
|
||||||
|
resultCh chan requestResult // канал, через который воркер вернёт результат
|
||||||
|
}
|
||||||
|
|
||||||
|
// requestResult — приватная структура, представляющая результат выполнения задачи.
|
||||||
|
// Внешний код получает его через канал, но не знает структуры — только через <-chan requestResult.
|
||||||
|
type requestResult struct {
|
||||||
|
value any // значение, возвращённое задачей
|
||||||
|
err error // ошибка, если возникла
|
||||||
|
}
|
||||||
|
|
||||||
|
// newWorkerPool создаёт новый пул воркеров с заданным количеством горутин и размером очереди.
|
||||||
|
// Это единственный способ создать workerPool — внешний код не может создать его напрямую.
|
||||||
|
func newWorkerPool(workers int, queueSize int) *workerPool {
|
||||||
|
if workers <= 0 {
|
||||||
|
workers = 1 // защита от некорректных значений
|
||||||
|
}
|
||||||
|
if queueSize <= 0 {
|
||||||
|
queueSize = 100 // разумный дефолт
|
||||||
|
}
|
||||||
|
|
||||||
|
return &workerPool{
|
||||||
|
taskCh: make(chan requestEnvelope, queueSize),
|
||||||
|
queueSize: queueSize,
|
||||||
|
workers: workers,
|
||||||
|
quit: make(chan struct{}),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// start запускает воркеры (горутины), которые будут обрабатывать задачи из очереди.
|
||||||
|
// Метод идемпотентен: если пул уже запущен — ничего не делает.
|
||||||
|
// Должен вызываться перед первым вызовом submit.
|
||||||
|
func (p *workerPool) start(ctx context.Context) {
|
||||||
|
p.startedMu.Lock()
|
||||||
|
defer p.startedMu.Unlock()
|
||||||
|
if p.started {
|
||||||
|
return // уже запущен — ничего не делаем
|
||||||
|
}
|
||||||
|
p.started = true
|
||||||
|
|
||||||
|
// Запускаем воркеры — каждый будет обрабатывать задачи в бесконечном цикле
|
||||||
|
for i := 0; i < p.workers; i++ {
|
||||||
|
p.wg.Add(1)
|
||||||
|
go p.worker(ctx) // запускаем горутину с контекстом
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// stop останавливает пул воркеров.
|
||||||
|
// Отправляет сигнал остановки через quit-канал и ждёт завершения всех активных задач.
|
||||||
|
// Безопасно вызывать многократно — после остановки повторные вызовы не имеют эффекта.
|
||||||
|
func (p *workerPool) stop() {
|
||||||
|
close(p.quit) // сигнал для всех воркеров — выйти из цикла
|
||||||
|
p.wg.Wait() // ждём, пока все воркеры завершатся
|
||||||
|
}
|
||||||
|
|
||||||
|
// submit отправляет задачу в очередь и возвращает канал, через который будет получен результат.
|
||||||
|
// Если очередь переполнена — возвращает ErrPoolQueueFull.
|
||||||
|
// Канал результата имеет буфер 1, чтобы не блокировать воркера при записи.
|
||||||
|
// Контекст используется для отмены задачи, если клиент отменил запрос до отправки.
|
||||||
|
func (p *workerPool) submit(ctx context.Context, do func(context.Context) (any, error)) (<-chan requestResult, error) {
|
||||||
|
// Проверяем, не превышена ли очередь
|
||||||
|
if len(p.taskCh) >= p.queueSize {
|
||||||
|
return nil, ErrPoolQueueFull
|
||||||
|
}
|
||||||
|
|
||||||
|
// Создаём канал для результата — буферизованный, чтобы не блокировать воркера
|
||||||
|
resultCh := make(chan requestResult, 1)
|
||||||
|
|
||||||
|
// Создаём обёртку задачи
|
||||||
|
envelope := requestEnvelope{
|
||||||
|
doFunc: do,
|
||||||
|
resultCh: resultCh,
|
||||||
|
}
|
||||||
|
|
||||||
|
// Пытаемся отправить задачу в очередь
|
||||||
|
select {
|
||||||
|
case <-ctx.Done():
|
||||||
|
// Клиент отменил операцию до отправки — возвращаем ошибку отмены
|
||||||
|
return nil, ctx.Err()
|
||||||
|
case p.taskCh <- envelope:
|
||||||
|
// Успешно отправлено — возвращаем канал для чтения результата
|
||||||
|
return resultCh, nil
|
||||||
|
default:
|
||||||
|
// Очередь переполнена — не должно происходить при проверке len(p.taskCh), но на всякий случай
|
||||||
|
return nil, ErrPoolQueueFull
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// worker — приватная горутина, выполняющая задачи из очереди.
|
||||||
|
// Каждый воркер работает в бесконечном цикле, пока не получит сигнал остановки.
|
||||||
|
// При получении задачи:
|
||||||
|
// - вызывает doFunc с контекстом
|
||||||
|
// - записывает результат в resultCh
|
||||||
|
// - закрывает канал, чтобы клиент мог прочитать и завершить
|
||||||
|
//
|
||||||
|
// После закрытия quit-канала — воркер завершает работу.
|
||||||
|
func (p *workerPool) worker(ctx context.Context) {
|
||||||
|
defer p.wg.Done() // уменьшаем WaitGroup при завершении горутины
|
||||||
|
|
||||||
|
for {
|
||||||
|
select {
|
||||||
|
case <-p.quit:
|
||||||
|
// Получен сигнал остановки — выходим из цикла
|
||||||
|
return
|
||||||
|
|
||||||
|
case envelope := <-p.taskCh:
|
||||||
|
// Выполняем задачу с переданным контекстом (клиентский или общий)
|
||||||
|
value, err := envelope.doFunc(ctx)
|
||||||
|
|
||||||
|
// Записываем результат в канал — не блокируем, т.к. буфер 1
|
||||||
|
envelope.resultCh <- requestResult{
|
||||||
|
value: value,
|
||||||
|
err: err,
|
||||||
|
}
|
||||||
|
// Закрываем канал — клиент знает, что результат пришёл и больше не будет
|
||||||
|
close(envelope.resultCh)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
166
tgapi/stickers_methods.go
Normal file
166
tgapi/stickers_methods.go
Normal file
@@ -0,0 +1,166 @@
|
|||||||
|
package tgapi
|
||||||
|
|
||||||
|
type SendStickerP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id,omitempty"`
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageThreadID int `json:"message_thread_id,omitempty"`
|
||||||
|
DirectMessagesTopicID int `json:"direct_messages_topic_id,omitempty"`
|
||||||
|
|
||||||
|
Sticker string `json:"sticker"`
|
||||||
|
Emoji string `json:"emoji,omitempty"`
|
||||||
|
DisableNotification bool `json:"disable_notification,omitempty"`
|
||||||
|
ProtectContent bool `json:"protect_content,omitempty"`
|
||||||
|
AllowPaidBroadcast bool `json:"allow_paid_broadcast,omitempty"`
|
||||||
|
MessageEffectID string `json:"message_effect_id,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SendSticker(params SendStickerP) (Message, error) {
|
||||||
|
req := NewRequestWithChatID[Message]("sendSticker", params, params.ChatID)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type GetStickerSetP struct {
|
||||||
|
Name string `json:"name"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) GetStickerSet(params GetStickerSetP) (StickerSet, error) {
|
||||||
|
req := NewRequest[StickerSet]("getStickerSet", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type GetCustomEmojiStickersP struct {
|
||||||
|
CustomEmojiIDs []string `json:"custom_emoji_ids"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) GetCustomEmojiStickers(params GetCustomEmojiStickersP) ([]Sticker, error) {
|
||||||
|
req := NewRequest[[]Sticker]("getCustomEmojiStickers", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type CreateNewStickerSetP struct {
|
||||||
|
UserID int `json:"user_id"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
Title string `json:"title"`
|
||||||
|
|
||||||
|
Stickers []InputSticker `json:"stickers"`
|
||||||
|
StickerType StickerType `json:"sticker_type,omitempty"`
|
||||||
|
NeedsRepainting bool `json:"needs_repainting,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) CreateNewStickerSet(params CreateNewStickerSetP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("createNewStickerSet", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type AddStickerToSetP struct {
|
||||||
|
UserID int `json:"user_id"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
Sticker InputSticker `json:"sticker"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) AddStickerToSet(params AddStickerToSetP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("addStickerToSet", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SetStickerPositionInSetP struct {
|
||||||
|
Sticker string `json:"sticker"`
|
||||||
|
Position int `json:"position"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SetStickerPosition(params SetStickerPositionInSetP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("setStickerPosition", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type DeleteStickerFromSetP struct {
|
||||||
|
Sticker string `json:"sticker"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) DeleteStickerFromSet(params DeleteStickerFromSetP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("deleteStickerFromSet", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type ReplaceStickerInSetP struct {
|
||||||
|
UserID int `json:"user_id"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
OldSticker string `json:"old_sticker"`
|
||||||
|
Sticker InputSticker `json:"sticker"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) ReplaceStickerInSet(params ReplaceStickerInSetP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("replaceStickerInSet", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SetStickerEmojiListP struct {
|
||||||
|
Sticker string `json:"sticker"`
|
||||||
|
EmojiList []string `json:"emoji_list"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SetStickerEmojiList(params SetStickerEmojiListP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("setStickerEmojiList", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SetStickerKeywordsP struct {
|
||||||
|
Sticker string `json:"sticker"`
|
||||||
|
Keywords []string `json:"keywords"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SetStickerKeywords(params SetStickerKeywordsP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("setStickerKeywords", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SetStickerMaskPositionP struct {
|
||||||
|
Sticker string `json:"sticker"`
|
||||||
|
MaskPosition *MaskPosition `json:"mask_position,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SetStickerMaskPosition(params SetStickerMaskPositionP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("setStickerMaskPosition", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SetStickerSetTitleP struct {
|
||||||
|
Name string `json:"name"`
|
||||||
|
Title string `json:"title"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SetStickerSetTitle(params SetStickerSetTitleP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("setStickerSetTitle", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SetStickerSetThumbnailP struct {
|
||||||
|
Name string `json:"name"`
|
||||||
|
UserID int `json:"user_id"`
|
||||||
|
Thumbnail string `json:"thumbnail"`
|
||||||
|
Format InputStickerFormat `json:"format"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SetStickerSetThumbnail(params SetStickerSetThumbnailP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("setStickerSetThumbnail", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SetCustomEmojiStickerSetThumbnailP struct {
|
||||||
|
Name string `json:"name"`
|
||||||
|
CustomEmojiID string `json:"custom_emoji_id,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SetCustomEmojiStickerSetThumbnail(params SetStickerSetThumbnailP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("setCustomEmojiStickerSetThumbnail", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type DeleteStickerSetP struct {
|
||||||
|
Name string `json:"name"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) DeleteStickerSet(params DeleteStickerSetP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("deleteStickerSet", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
65
tgapi/stickers_types.go
Normal file
65
tgapi/stickers_types.go
Normal file
@@ -0,0 +1,65 @@
|
|||||||
|
package tgapi
|
||||||
|
|
||||||
|
type MaskPositionPoint string
|
||||||
|
|
||||||
|
const (
|
||||||
|
MaskPositionForehead MaskPositionPoint = "forehead"
|
||||||
|
MaskPositionEyes MaskPositionPoint = "eyes"
|
||||||
|
MaskPositionMouth MaskPositionPoint = "mouth"
|
||||||
|
MaskPositionChin MaskPositionPoint = "chin"
|
||||||
|
)
|
||||||
|
|
||||||
|
type MaskPosition struct {
|
||||||
|
Point MaskPositionPoint `json:"point"`
|
||||||
|
XShift float32 `json:"x_shift"`
|
||||||
|
YShift float32 `json:"y_shift"`
|
||||||
|
Scale float32 `json:"scale"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type StickerType string
|
||||||
|
|
||||||
|
const (
|
||||||
|
StickerTypeRegular StickerType = "regular"
|
||||||
|
StickerTypeMask StickerType = "mask"
|
||||||
|
StickerTypeCustomEmoji StickerType = "custom_emoji"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Sticker struct {
|
||||||
|
FileId string `json:"file_id"`
|
||||||
|
FileUniqueId string `json:"file_unique_id"`
|
||||||
|
Type StickerType `json:"type"`
|
||||||
|
Width int `json:"width"`
|
||||||
|
Height int `json:"height"`
|
||||||
|
IsAnimated bool `json:"is_animated"`
|
||||||
|
IsVideo bool `json:"is_video"`
|
||||||
|
|
||||||
|
Thumbnail *PhotoSize `json:"thumbnail,omitempty"`
|
||||||
|
Emoji *string `json:"emoji,omitempty"`
|
||||||
|
SetName *string `json:"set_name,omitempty"`
|
||||||
|
MaskPosition *MaskPosition `json:"mask_position,omitempty"`
|
||||||
|
CustomEmojiID *string `json:"custom_emoji_id,omitempty"`
|
||||||
|
NeedRepainting *bool `json:"need_repainting,omitempty"`
|
||||||
|
FileSize *int `json:"file_size,omitempty"`
|
||||||
|
}
|
||||||
|
type StickerSet struct {
|
||||||
|
Name string `json:"name"`
|
||||||
|
Title string `json:"title"`
|
||||||
|
StickerType StickerType `json:"sticker_type"`
|
||||||
|
Stickers []Sticker `json:"stickers"`
|
||||||
|
Thumbnail *PhotoSize `json:"thumbnail,omitempty"`
|
||||||
|
}
|
||||||
|
type InputStickerFormat string
|
||||||
|
|
||||||
|
const (
|
||||||
|
InputStickerFormatStatic InputStickerFormat = "static"
|
||||||
|
InputStickerFormatAnimated InputStickerFormat = "animated"
|
||||||
|
InputStickerFormatVideo InputStickerFormat = "video"
|
||||||
|
)
|
||||||
|
|
||||||
|
type InputSticker struct {
|
||||||
|
Sticker string `json:"sticker"`
|
||||||
|
Format InputStickerFormat `json:"format"`
|
||||||
|
EmojiList []string `json:"emoji_list"`
|
||||||
|
MaskPosition *MaskPosition `json:"mask_position,omitempty"`
|
||||||
|
Keywords []string `json:"keywords,omitempty"`
|
||||||
|
}
|
||||||
300
tgapi/types.go
Normal file
300
tgapi/types.go
Normal file
@@ -0,0 +1,300 @@
|
|||||||
|
package tgapi
|
||||||
|
|
||||||
|
type UpdateType string
|
||||||
|
|
||||||
|
const (
|
||||||
|
UpdateTypeMessage UpdateType = "message"
|
||||||
|
UpdateTypeEditedMessage UpdateType = "edited_message"
|
||||||
|
UpdateTypeChannelPost UpdateType = "channel_post"
|
||||||
|
UpdateTypeEditedChannelPost UpdateType = "edited_channel_post"
|
||||||
|
UpdateTypeMessageReaction UpdateType = "message_reaction"
|
||||||
|
UpdateTypeMessageReactionCount UpdateType = "message_reaction_count"
|
||||||
|
|
||||||
|
UpdateTypeBusinessConnection UpdateType = "business_connection"
|
||||||
|
UpdateTypeBusinessMessage UpdateType = "business_message"
|
||||||
|
UpdateTypeEditedBusinessMessage UpdateType = "edited_business_message"
|
||||||
|
UpdateTypeDeletedBusinessMessage UpdateType = "deleted_business_message"
|
||||||
|
|
||||||
|
UpdateTypeInlineQuery UpdateType = "inline_query"
|
||||||
|
UpdateTypeChosenInlineResult UpdateType = "chosen_inline_result"
|
||||||
|
UpdateTypeCallbackQuery UpdateType = "callback_query"
|
||||||
|
UpdateTypeShippingQuery UpdateType = "shipping_query"
|
||||||
|
UpdateTypePreCheckoutQuery UpdateType = "pre_checkout_query"
|
||||||
|
UpdateTypePurchasedPaidMedia UpdateType = "purchased_paid_media"
|
||||||
|
UpdateTypePoll UpdateType = "poll"
|
||||||
|
UpdateTypePollAnswer UpdateType = "poll_answer"
|
||||||
|
UpdateTypeMyChatMember UpdateType = "my_chat_member"
|
||||||
|
UpdateTypeChatMember UpdateType = "chat_member"
|
||||||
|
UpdateTypeChatJoinRequest UpdateType = "chat_join_request"
|
||||||
|
UpdateTypeChatBoost UpdateType = "chat_boost"
|
||||||
|
UpdateTypeRemovedChatBoost UpdateType = "removed_chat_boost"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Update struct {
|
||||||
|
UpdateID int `json:"update_id"`
|
||||||
|
Message *Message `json:"message,omitempty"`
|
||||||
|
EditedMessage *Message `json:"edited_message,omitempty"`
|
||||||
|
ChannelPost *Message `json:"channel_post,omitempty"`
|
||||||
|
EditedChannelPost *Message `json:"edited_channel_post,omitempty"`
|
||||||
|
|
||||||
|
BusinessConnection *BusinessConnection `json:"business_connection,omitempty"`
|
||||||
|
BusinessMessage *Message `json:"business_message,omitempty"`
|
||||||
|
EditedBusinessMessage *Message `json:"edited_business_message,omitempty"`
|
||||||
|
DeletedBusinessMessage *Message `json:"deleted_business_messages,omitempty"`
|
||||||
|
MessageReaction *MessageReactionUpdated `json:"message_reaction,omitempty"`
|
||||||
|
MessageReactionCount *MessageReactionCountUpdated `json:"message_reaction_count,omitempty"`
|
||||||
|
|
||||||
|
InlineQuery *InlineQuery `json:"inline_query,omitempty"`
|
||||||
|
ChosenInlineResult *ChosenInlineResult `json:"chosen_inline_result,omitempty"`
|
||||||
|
CallbackQuery *CallbackQuery `json:"callback_query,omitempty"`
|
||||||
|
ShippingQuery ShippingQuery `json:"shipping_query,omitempty"`
|
||||||
|
PreCheckoutQuery *PreCheckoutQuery `json:"pre_checkout_query,omitempty"`
|
||||||
|
PurchasedPaidMedia *PaidMediaPurchased `json:"purchased_paid_media,omitempty"`
|
||||||
|
|
||||||
|
Poll *Poll `json:"poll,omitempty"`
|
||||||
|
PollAnswer *PollAnswer `json:"poll_answer,omitempty"`
|
||||||
|
MyChatMember *ChatMemberUpdated `json:"my_chat_member,omitempty"`
|
||||||
|
ChatMember *ChatMemberUpdated `json:"chat_member,omitempty"`
|
||||||
|
ChatJoinRequest *ChatJoinRequest `json:"chat_join_request,omitempty"`
|
||||||
|
ChatBoost *ChatBoostUpdated `json:"chat_boost,omitempty"`
|
||||||
|
RemovedChatBoost *ChatBoostRemoved `json:"removed_chat_boost,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type InlineQuery struct {
|
||||||
|
ID string `json:"id"`
|
||||||
|
From User `json:"from"`
|
||||||
|
Query string `json:"query"`
|
||||||
|
Offset string `json:"offset"`
|
||||||
|
ChatType *ChatType `json:"chat_type,omitempty"`
|
||||||
|
Location *Location `json:"location,omitempty"`
|
||||||
|
}
|
||||||
|
type ChosenInlineResult struct {
|
||||||
|
ResultID string `json:"result_id"`
|
||||||
|
From User `json:"from"`
|
||||||
|
Location *Location `json:"location,omitempty"`
|
||||||
|
InlineMessageID string `json:"inline_message_id"`
|
||||||
|
Query string `json:"query"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type ShippingQuery struct {
|
||||||
|
ID string `json:"id"`
|
||||||
|
From User `json:"from"`
|
||||||
|
InvoicePayload string `json:"invoice_payload"`
|
||||||
|
ShippingAddress ShippingAddress `json:"shipping_address"`
|
||||||
|
}
|
||||||
|
type ShippingAddress struct {
|
||||||
|
CountryCode string `json:"country_code"`
|
||||||
|
State string `json:"state"`
|
||||||
|
City string `json:"city"`
|
||||||
|
StreetLine1 string `json:"street_line1"`
|
||||||
|
StreetLine2 string `json:"street_line2"`
|
||||||
|
PostCode string `json:"post_code"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type OrderInfo struct {
|
||||||
|
Name string `json:"name"`
|
||||||
|
PhoneNumber string `json:"phone_number"`
|
||||||
|
Email string `json:"email"`
|
||||||
|
ShippingAddress ShippingAddress `json:"shipping_address"`
|
||||||
|
}
|
||||||
|
type PreCheckoutQuery struct {
|
||||||
|
ID string `json:"id"`
|
||||||
|
From User `json:"from"`
|
||||||
|
Currency string `json:"currency"`
|
||||||
|
TotalAmount int `json:"total_amount"`
|
||||||
|
InvoicePayload string `json:"invoice_payload"`
|
||||||
|
ShippingOptionID string `json:"shipping_option_id"`
|
||||||
|
OrderInfo *OrderInfo `json:"order_info,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type PaidMediaPurchased struct {
|
||||||
|
From User `json:"from"`
|
||||||
|
PaidMediaPayload string `json:"paid_media_payload"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type File struct {
|
||||||
|
FileId string `json:"file_id"`
|
||||||
|
FileUniqueID string `json:"file_unique_id"`
|
||||||
|
FileSize int `json:"file_size,omitempty"`
|
||||||
|
FilePath string `json:"file_path,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type Audio struct {
|
||||||
|
FileID string `json:"file_id"`
|
||||||
|
FileUniqueID string `json:"file_unique_id"`
|
||||||
|
Duration int `json:"duration"`
|
||||||
|
|
||||||
|
Performer string `json:"performer,omitempty"`
|
||||||
|
Title string `json:"title,omitempty"`
|
||||||
|
FileName string `json:"file_name,omitempty"`
|
||||||
|
MimeType string `json:"mime_type,omitempty"`
|
||||||
|
FileSize int `json:"file_size,omitempty"`
|
||||||
|
Thumbnail *PhotoSize `json:"thumbnail,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type PollOption struct {
|
||||||
|
Text string `json:"text"`
|
||||||
|
TextEntities []MessageEntity `json:"text_entities"`
|
||||||
|
VoterCount int `json:"voter_count"`
|
||||||
|
}
|
||||||
|
type Poll struct {
|
||||||
|
ID string `json:"id"`
|
||||||
|
Question string `json:"question"`
|
||||||
|
QuestionEntities []MessageEntity `json:"question_entities"`
|
||||||
|
Options []PollOption `json:"options"`
|
||||||
|
TotalVoterCount int `json:"total_voter_count"`
|
||||||
|
IsClosed bool `json:"is_closed"`
|
||||||
|
IsAnonymous bool `json:"is_anonymous"`
|
||||||
|
Type PollType `json:"type"`
|
||||||
|
|
||||||
|
AllowsMultipleAnswers bool `json:"allows_multiple_answers"`
|
||||||
|
CorrectOptionID *int `json:"correct_option_id,omitempty"`
|
||||||
|
Explanation *string `json:"explanation,omitempty"`
|
||||||
|
ExplanationEntities []MessageEntity `json:"explanation_entities,omitempty"`
|
||||||
|
OpenPeriod int `json:"open_period,omitempty"`
|
||||||
|
CloseDate int `json:"close_date,omitempty"`
|
||||||
|
}
|
||||||
|
type PollAnswer struct {
|
||||||
|
PollID string `json:"poll_id"`
|
||||||
|
VoterChat Chat `json:"voter_chat"`
|
||||||
|
User User `json:"user"`
|
||||||
|
OptionIDS []int `json:"option_ids"`
|
||||||
|
}
|
||||||
|
type ChatMemberUpdated struct {
|
||||||
|
Chat Chat `json:"chat"`
|
||||||
|
From User `json:"from"`
|
||||||
|
Date int64 `json:"date"`
|
||||||
|
OldChatMember ChatMember `json:"old_chat_member"`
|
||||||
|
NewChatMember ChatMember `json:"new_chat_member"`
|
||||||
|
InviteLink *ChatInviteLink `json:"invite_link,omitempty"`
|
||||||
|
ViaJoinRequest *bool `json:"via_join_request,omitempty"`
|
||||||
|
ViaChatFolderInviteLink *bool `json:"via_chat_folder_invite_link,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type ChatJoinRequest struct {
|
||||||
|
Chat Chat `json:"chat"`
|
||||||
|
From User `json:"from"`
|
||||||
|
UserChatID int `json:"user_chat_id"`
|
||||||
|
Date int64 `json:"date"`
|
||||||
|
Bio *string `json:"bio,omitempty"`
|
||||||
|
InviteLink *ChatInviteLink `json:"invite_link,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type Location struct {
|
||||||
|
Latitude float64 `json:"latitude"`
|
||||||
|
Longitude float64 `json:"longitude"`
|
||||||
|
HorizontalAccuracy float64 `json:"horizontal_accuracy"`
|
||||||
|
LivePeriod int `json:"live_period"`
|
||||||
|
Heading int `json:"heading"`
|
||||||
|
ProximityAlertRadius int `json:"proximity_alert_radius"`
|
||||||
|
}
|
||||||
|
type LocationAddress struct {
|
||||||
|
CountryCode string `json:"country_code"`
|
||||||
|
State *string `json:"state,omitempty"`
|
||||||
|
City *string `json:"city,omitempty"`
|
||||||
|
Street *string `json:"street,omitempty"`
|
||||||
|
}
|
||||||
|
type Venue struct {
|
||||||
|
Location Location `json:"location"`
|
||||||
|
Title string `json:"title"`
|
||||||
|
Address string `json:"address"`
|
||||||
|
FoursquareID string `json:"foursquare_id,omitempty"`
|
||||||
|
FoursquareType string `json:"foursquare_type,omitempty"`
|
||||||
|
GooglePlaceID string `json:"google_place_id,omitempty"`
|
||||||
|
GooglePlaceType string `json:"google_place_type,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type WebAppInfo struct {
|
||||||
|
URL string `json:"url"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type StarAmount struct {
|
||||||
|
Amount int `json:"amount"`
|
||||||
|
NanostarAmount int `json:"nanostar_amount"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type Story struct {
|
||||||
|
Chat Chat `json:"chat"`
|
||||||
|
ID int `json:"id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// Gifts
|
||||||
|
|
||||||
|
type AcceptedGiftTypes struct {
|
||||||
|
UnlimitedGifts bool `json:"unlimited_gifts"`
|
||||||
|
LimitedGifts bool `json:"limited_gifts"`
|
||||||
|
UniqueGifts bool `json:"unique_gifts"`
|
||||||
|
PremiumSubscription bool `json:"premium_subscription"`
|
||||||
|
GiftsFromChannels bool `json:"gifts_from_channels"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type UniqueGiftColors struct {
|
||||||
|
ModelCustomEmojiID string `json:"model_custom_emoji_id"`
|
||||||
|
SymbolCustomEmojiID string `json:"symbol_custom_emoji_id"`
|
||||||
|
LightThemeMainColor int `json:"light_theme_main_color"`
|
||||||
|
LightThemeOtherColors []int `json:"light_theme_other_colors"`
|
||||||
|
DarkThemeMainColor int `json:"dark_theme_main_color"`
|
||||||
|
DarkThemeOtherColors []int `json:"dark_theme_other_colors"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type GiftBackground struct {
|
||||||
|
CenterColor int `json:"center_color"`
|
||||||
|
EdgeColor int `json:"edge_color"`
|
||||||
|
TextColor int `json:"text_color"`
|
||||||
|
}
|
||||||
|
type Gift struct {
|
||||||
|
ID string `json:"id"`
|
||||||
|
Sticker Sticker `json:"sticker"`
|
||||||
|
StarCount int `json:"star_count"`
|
||||||
|
UpdateStarCount *int `json:"update_star_count,omitempty"`
|
||||||
|
IsPremium *bool `json:"is_premium,omitempty"`
|
||||||
|
HasColors *bool `json:"has_colors,omitempty"`
|
||||||
|
TotalCount *int `json:"total_count,omitempty"`
|
||||||
|
RemainingCount *int `json:"remaining_count,omitempty"`
|
||||||
|
PersonalTotalCount *int `json:"personal_total_count,omitempty"`
|
||||||
|
PersonalRemainingCount *int `json:"personal_remaining_count,omitempty"`
|
||||||
|
Background GiftBackground `json:"background,omitempty"`
|
||||||
|
UniqueGiftVariantColor *int `json:"unique_gift_variant_color,omitempty"`
|
||||||
|
PublisherChat *Chat `json:"publisher_chat,omitempty"`
|
||||||
|
}
|
||||||
|
type Gifts struct {
|
||||||
|
Gifts []Gift `json:"gifts"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type OwnedGiftType string
|
||||||
|
|
||||||
|
const (
|
||||||
|
OwnedGiftRegularType OwnedGiftType = "regular"
|
||||||
|
OwnedGiftUniqueType OwnedGiftType = "unique"
|
||||||
|
)
|
||||||
|
|
||||||
|
type OwnedGift struct {
|
||||||
|
Type OwnedGiftType `json:"type"`
|
||||||
|
OwnerGiftID *string `json:"owner_gift_id,omitempty"`
|
||||||
|
SendDate *int `json:"send_date,omitempty"`
|
||||||
|
IsSaved *bool `json:"is_saved,omitempty"`
|
||||||
|
|
||||||
|
// Поля, характерные для "regular"
|
||||||
|
Gift Gift `json:"gift"`
|
||||||
|
SenderUser User `json:"sender_user,omitempty"`
|
||||||
|
Text string `json:"text,omitempty"`
|
||||||
|
Entities []MessageEntity `json:"entities,omitempty"`
|
||||||
|
IsPrivate *bool `json:"is_private,omitempty"`
|
||||||
|
CanBeUpgraded *bool `json:"can_be_upgraded,omitempty"`
|
||||||
|
WasRefunded *bool `json:"was_refunded,omitempty"`
|
||||||
|
ConvertStarCount *int `json:"convert_star_count,omitempty"`
|
||||||
|
PrepaidUpgradeStarCount *int `json:"prepaid_upgrade_star_count,omitempty"`
|
||||||
|
IsUpgradeSeparate *bool `json:"is_upgrade_separate,omitempty"`
|
||||||
|
UniqueGiftNumber *int `json:"unique_gift_number,omitempty"`
|
||||||
|
|
||||||
|
// Поля, характерные для "unique"
|
||||||
|
CanBeTransferred *bool `json:"can_be_transferred,omitempty"`
|
||||||
|
TransferStarCount *int `json:"transfer_star_count,omitempty"`
|
||||||
|
NextTransferDate *int `json:"next_transfer_date,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type OwnedGifts struct {
|
||||||
|
TotalCount int `json:"total_count"`
|
||||||
|
Gifts []OwnedGift `json:"gifts"`
|
||||||
|
NextOffset string `json:"next_offset"`
|
||||||
|
}
|
||||||
221
tgapi/uploader_api.go
Normal file
221
tgapi/uploader_api.go
Normal file
@@ -0,0 +1,221 @@
|
|||||||
|
package tgapi
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"context"
|
||||||
|
"errors"
|
||||||
|
"fmt"
|
||||||
|
"mime/multipart"
|
||||||
|
"net/http"
|
||||||
|
"path/filepath"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"git.nix13.pw/scuroneko/laniakea/utils"
|
||||||
|
"git.nix13.pw/scuroneko/slog"
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
UploaderPhotoType UploaderFileType = "photo"
|
||||||
|
UploaderVideoType UploaderFileType = "video"
|
||||||
|
UploaderAudioType UploaderFileType = "audio"
|
||||||
|
UploaderDocumentType UploaderFileType = "document"
|
||||||
|
UploaderVoiceType UploaderFileType = "voice"
|
||||||
|
UploaderVideoNoteType UploaderFileType = "video_note"
|
||||||
|
UploaderThumbnailType UploaderFileType = "thumbnail"
|
||||||
|
)
|
||||||
|
|
||||||
|
type UploaderFileType string
|
||||||
|
type UploaderFile struct {
|
||||||
|
filename string
|
||||||
|
data []byte
|
||||||
|
field UploaderFileType
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewUploaderFile(name string, data []byte) UploaderFile {
|
||||||
|
t := uploaderTypeByExt(name)
|
||||||
|
return UploaderFile{filename: name, data: data, field: t}
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetType used when auto-detect failed.
|
||||||
|
// i.e. you sending a voice message, but it detects as audio, or if you send audio with thumbnail
|
||||||
|
func (f UploaderFile) SetType(t UploaderFileType) UploaderFile {
|
||||||
|
f.field = t
|
||||||
|
return f
|
||||||
|
}
|
||||||
|
|
||||||
|
type Uploader struct {
|
||||||
|
api *API
|
||||||
|
logger *slog.Logger
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewUploader(api *API) *Uploader {
|
||||||
|
logger := slog.CreateLogger().Level(utils.GetLoggerLevel()).Prefix("UPLOADER")
|
||||||
|
logger.AddWriter(logger.CreateJsonStdoutWriter())
|
||||||
|
return &Uploader{api, logger}
|
||||||
|
}
|
||||||
|
func (u *Uploader) Close() error { return u.logger.Close() }
|
||||||
|
func (u *Uploader) GetLogger() *slog.Logger { return u.logger }
|
||||||
|
|
||||||
|
type UploaderRequest[R, P any] struct {
|
||||||
|
method string
|
||||||
|
files []UploaderFile
|
||||||
|
params P
|
||||||
|
chatId int64
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewUploaderRequest[R, P any](method string, params P, files ...UploaderFile) UploaderRequest[R, P] {
|
||||||
|
return UploaderRequest[R, P]{method: method, files: files, params: params, chatId: 0}
|
||||||
|
}
|
||||||
|
func NewUploaderRequestWithChatID[R, P any](method string, params P, chatId int64, files ...UploaderFile) UploaderRequest[R, P] {
|
||||||
|
return UploaderRequest[R, P]{method: method, files: files, params: params, chatId: chatId}
|
||||||
|
}
|
||||||
|
func (r UploaderRequest[R, P]) doRequest(ctx context.Context, up *Uploader) (R, error) {
|
||||||
|
var zero R
|
||||||
|
|
||||||
|
buf, contentType, err := prepareMultipart(r.files, r.params)
|
||||||
|
if err != nil {
|
||||||
|
return zero, err
|
||||||
|
}
|
||||||
|
|
||||||
|
methodPrefix := ""
|
||||||
|
if up.api.useTestServer {
|
||||||
|
methodPrefix = "/test"
|
||||||
|
}
|
||||||
|
url := fmt.Sprintf("%s/bot%s%s/%s", up.api.apiUrl, up.api.token, methodPrefix, r.method)
|
||||||
|
req, err := http.NewRequestWithContext(ctx, "POST", url, buf)
|
||||||
|
if err != nil {
|
||||||
|
return zero, err
|
||||||
|
}
|
||||||
|
req.Header.Set("Content-Type", contentType)
|
||||||
|
req.Header.Set("Accept", "application/json")
|
||||||
|
req.Header.Set("User-Agent", fmt.Sprintf("Laniakea/%s", utils.VersionString))
|
||||||
|
req.Header.Set("Accept-Encoding", "gzip")
|
||||||
|
req.ContentLength = int64(buf.Len())
|
||||||
|
|
||||||
|
for {
|
||||||
|
if up.api.Limiter != nil {
|
||||||
|
if up.api.dropOverflowLimit {
|
||||||
|
if !up.api.Limiter.GlobalAllow() {
|
||||||
|
return zero, errors.New("rate limited")
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if err := up.api.Limiter.GlobalWait(ctx); err != nil {
|
||||||
|
return zero, err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
up.logger.Debugln("UPLOADER REQ", r.method)
|
||||||
|
resp, err := up.api.client.Do(req)
|
||||||
|
if err != nil {
|
||||||
|
return zero, err
|
||||||
|
}
|
||||||
|
|
||||||
|
body, err := readBody(resp.Body)
|
||||||
|
_ = resp.Body.Close()
|
||||||
|
if err != nil {
|
||||||
|
return zero, err
|
||||||
|
}
|
||||||
|
up.logger.Debugln("UPLOADER RES", r.method, string(body))
|
||||||
|
|
||||||
|
response, err := parseBody[R](body)
|
||||||
|
if err != nil {
|
||||||
|
return zero, err
|
||||||
|
}
|
||||||
|
|
||||||
|
if !response.Ok {
|
||||||
|
if response.ErrorCode == 429 && response.Parameters != nil && response.Parameters.RetryAfter != nil {
|
||||||
|
after := *response.Parameters.RetryAfter
|
||||||
|
up.logger.Warnf("Rate limited, retry after %d seconds (chat: %d)", after, r.chatId)
|
||||||
|
if r.chatId > 0 {
|
||||||
|
up.api.Limiter.SetChatLock(r.chatId, after)
|
||||||
|
} else {
|
||||||
|
up.api.Limiter.SetGlobalLock(after)
|
||||||
|
}
|
||||||
|
|
||||||
|
select {
|
||||||
|
case <-ctx.Done():
|
||||||
|
return zero, ctx.Err()
|
||||||
|
case <-time.After(time.Duration(after) * time.Second):
|
||||||
|
continue // Повторяем запрос
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return zero, fmt.Errorf("[%d] %s", response.ErrorCode, response.Description)
|
||||||
|
}
|
||||||
|
return response.Result, nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
func (r UploaderRequest[R, P]) DoWithContext(ctx context.Context, up *Uploader) (R, error) {
|
||||||
|
var zero R
|
||||||
|
|
||||||
|
result, err := up.api.pool.submit(ctx, func(ctx context.Context) (any, error) {
|
||||||
|
return r.doRequest(ctx, up)
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
return zero, err
|
||||||
|
}
|
||||||
|
|
||||||
|
select {
|
||||||
|
case <-ctx.Done():
|
||||||
|
return zero, ctx.Err()
|
||||||
|
case res := <-result:
|
||||||
|
if res.err != nil {
|
||||||
|
return zero, res.err
|
||||||
|
}
|
||||||
|
if val, ok := res.value.(R); ok {
|
||||||
|
return val, nil
|
||||||
|
}
|
||||||
|
return zero, ErrPoolUnexpected
|
||||||
|
}
|
||||||
|
}
|
||||||
|
func (r UploaderRequest[R, P]) Do(up *Uploader) (R, error) {
|
||||||
|
return r.DoWithContext(context.Background(), up)
|
||||||
|
}
|
||||||
|
|
||||||
|
func prepareMultipart[P any](files []UploaderFile, params P) (*bytes.Buffer, string, error) {
|
||||||
|
buf := bytes.NewBuffer(nil)
|
||||||
|
w := multipart.NewWriter(buf)
|
||||||
|
|
||||||
|
for _, file := range files {
|
||||||
|
fw, err := w.CreateFormFile(string(file.field), file.filename)
|
||||||
|
if err != nil {
|
||||||
|
_ = w.Close() // Закрываем, чтобы не было утечки
|
||||||
|
return nil, "", err
|
||||||
|
}
|
||||||
|
|
||||||
|
_, err = fw.Write(file.data)
|
||||||
|
if err != nil {
|
||||||
|
_ = w.Close()
|
||||||
|
return nil, "", err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
err := utils.Encode(w, params) // Предполагается, что это записывает в w
|
||||||
|
if err != nil {
|
||||||
|
_ = w.Close()
|
||||||
|
return nil, "", err
|
||||||
|
}
|
||||||
|
|
||||||
|
err = w.Close() // ✅ ОБЯЗАТЕЛЬНО вызвать в конце — иначе запрос битый!
|
||||||
|
if err != nil {
|
||||||
|
return nil, "", err
|
||||||
|
}
|
||||||
|
|
||||||
|
return buf, w.FormDataContentType(), nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func uploaderTypeByExt(filename string) UploaderFileType {
|
||||||
|
ext := filepath.Ext(filename)
|
||||||
|
switch ext {
|
||||||
|
case ".jpg", ".jpeg", ".png", ".webp", ".bmp":
|
||||||
|
return UploaderPhotoType
|
||||||
|
case ".mp4":
|
||||||
|
return UploaderVideoType
|
||||||
|
case ".mp3", ".m4a":
|
||||||
|
return UploaderAudioType
|
||||||
|
case ".ogg":
|
||||||
|
return UploaderVoiceType
|
||||||
|
default:
|
||||||
|
return UploaderDocumentType
|
||||||
|
}
|
||||||
|
}
|
||||||
206
tgapi/uploader_methods.go
Normal file
206
tgapi/uploader_methods.go
Normal file
@@ -0,0 +1,206 @@
|
|||||||
|
package tgapi
|
||||||
|
|
||||||
|
type UploadPhotoP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id,omitempty"`
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageThreadID int `json:"message_thread_id,omitempty"`
|
||||||
|
DirectMessagesTopicID int `json:"direct_messages_topic_id,omitempty"`
|
||||||
|
|
||||||
|
Caption string `json:"caption,omitempty"`
|
||||||
|
ParseMode ParseMode `json:"parse_mode,omitempty"`
|
||||||
|
CaptionEntities []MessageEntity `json:"caption_entities,omitempty"`
|
||||||
|
|
||||||
|
ShowCaptionAboveMedia bool `json:"show_caption_above_media,omitempty"`
|
||||||
|
HasSpoiler bool `json:"has_spoiler,omitempty"`
|
||||||
|
DisableNotification bool `json:"disable_notification,omitempty"`
|
||||||
|
ProtectContent bool `json:"protect_content,omitempty"`
|
||||||
|
AllowPaidBroadcast bool `json:"allow_paid_broadcast,omitempty"`
|
||||||
|
MessageEffectID string `json:"message_effect_id,omitempty"`
|
||||||
|
|
||||||
|
SuggestedPostParameters *SuggestedPostParameters `json:"suggested_post_parameters,omitempty"`
|
||||||
|
ReplyParameters *ReplyParameters `json:"reply_parameters,omitempty"`
|
||||||
|
ReplyMarkup *ReplyMarkup `json:"reply_markup,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (u *Uploader) UploadPhoto(params UploadPhotoP, file UploaderFile) (Message, error) {
|
||||||
|
req := NewUploaderRequestWithChatID[Message]("sendPhoto", params, params.ChatID, file)
|
||||||
|
return req.Do(u)
|
||||||
|
}
|
||||||
|
|
||||||
|
type UploadAudioP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id,omitempty"`
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageThreadID int `json:"message_thread_id,omitempty"`
|
||||||
|
DirectMessagesTopicID int `json:"direct_messages_topic_id,omitempty"`
|
||||||
|
|
||||||
|
Caption string `json:"caption,omitempty"`
|
||||||
|
ParseMode ParseMode `json:"parse_mode,omitempty"`
|
||||||
|
CaptionEntities []MessageEntity `json:"caption_entities,omitempty"`
|
||||||
|
|
||||||
|
Duration int `json:"duration,omitempty"`
|
||||||
|
Performer string `json:"performer,omitempty"`
|
||||||
|
Title string `json:"title,omitempty"`
|
||||||
|
|
||||||
|
DisableNotification bool `json:"disable_notification,omitempty"`
|
||||||
|
ProtectContent bool `json:"protect_content,omitempty"`
|
||||||
|
AllowPaidBroadcast bool `json:"allow_paid_broadcast,omitempty"`
|
||||||
|
MessageEffectID string `json:"message_effect_id,omitempty"`
|
||||||
|
|
||||||
|
SuggestedPostParameters *SuggestedPostParameters `json:"suggested_post_parameters,omitempty"`
|
||||||
|
ReplyParameters *ReplyParameters `json:"reply_parameters,omitempty"`
|
||||||
|
ReplyMarkup *ReplyMarkup `json:"reply_markup,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (u *Uploader) UploadAudio(params UploadAudioP, files ...UploaderFile) (Message, error) {
|
||||||
|
req := NewUploaderRequestWithChatID[Message]("sendAudio", params, params.ChatID, files...)
|
||||||
|
return req.Do(u)
|
||||||
|
}
|
||||||
|
|
||||||
|
type UploadDocumentP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id,omitempty"`
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageThreadID int `json:"message_thread_id,omitempty"`
|
||||||
|
DirectMessagesTopicID int `json:"direct_messages_topic_id,omitempty"`
|
||||||
|
|
||||||
|
Caption string `json:"caption,omitempty"`
|
||||||
|
ParseMode ParseMode `json:"parse_mode,omitempty"`
|
||||||
|
CaptionEntities []MessageEntity `json:"caption_entities,omitempty"`
|
||||||
|
|
||||||
|
DisableContentTypeDetection bool `json:"disable_content_type_detection,omitempty"`
|
||||||
|
DisableNotification bool `json:"disable_notification,omitempty"`
|
||||||
|
ProtectContent bool `json:"protect_content,omitempty"`
|
||||||
|
AllowPaidBroadcast bool `json:"allow_paid_broadcast,omitempty"`
|
||||||
|
MessageEffectID string `json:"message_effect_id,omitempty"`
|
||||||
|
|
||||||
|
SuggestedPostParameters *SuggestedPostParameters `json:"suggested_post_parameters,omitempty"`
|
||||||
|
ReplyParameters *ReplyParameters `json:"reply_parameters,omitempty"`
|
||||||
|
ReplyMarkup *ReplyMarkup `json:"reply_markup,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (u *Uploader) UploadDocument(params UploadDocumentP, files ...UploaderFile) (Message, error) {
|
||||||
|
req := NewUploaderRequest[Message]("sendDocument", params, files...)
|
||||||
|
return req.Do(u)
|
||||||
|
}
|
||||||
|
|
||||||
|
type UploadVideoP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id,omitempty"`
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageThreadID int `json:"message_thread_id,omitempty"`
|
||||||
|
DirectMessagesTopicID int `json:"direct_messages_topic_id,omitempty"`
|
||||||
|
|
||||||
|
Duration int `json:"duration,omitempty"`
|
||||||
|
Width int `json:"width,omitempty"`
|
||||||
|
Height int `json:"height,omitempty"`
|
||||||
|
|
||||||
|
StartTimestamp int64 `json:"start_timestamp,omitempty"`
|
||||||
|
Caption string `json:"caption,omitempty"`
|
||||||
|
ParseMode ParseMode `json:"parse_mode,omitempty"`
|
||||||
|
CaptionEntities []MessageEntity `json:"caption_entities,omitempty"`
|
||||||
|
|
||||||
|
ShowCaptionAboveMedia bool `json:"show_caption_above_media,omitempty"`
|
||||||
|
HasSpoiler bool `json:"has_spoiler,omitempty"`
|
||||||
|
SupportsStreaming bool `json:"supports_streaming,omitempty"`
|
||||||
|
DisableNotification bool `json:"disable_notification,omitempty"`
|
||||||
|
ProtectContent bool `json:"protect_content,omitempty"`
|
||||||
|
AllowPaidBroadcast bool `json:"allow_paid_broadcast,omitempty"`
|
||||||
|
MessageEffectID string `json:"message_effect_id,omitempty"`
|
||||||
|
|
||||||
|
SuggestedPostParameters *SuggestedPostParameters `json:"suggested_post_parameters,omitempty"`
|
||||||
|
ReplyParameters *ReplyParameters `json:"reply_parameters,omitempty"`
|
||||||
|
ReplyMarkup *ReplyMarkup `json:"reply_markup,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (u *Uploader) UploadVideo(params UploadVideoP, files ...UploaderFile) (Message, error) {
|
||||||
|
req := NewUploaderRequest[Message]("sendVideo", params, files...)
|
||||||
|
return req.Do(u)
|
||||||
|
}
|
||||||
|
|
||||||
|
type UploadAnimationP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id,omitempty"`
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageThreadID int `json:"message_thread_id,omitempty"`
|
||||||
|
DirectMessagesTopicID int `json:"direct_messages_topic_id,omitempty"`
|
||||||
|
|
||||||
|
Duration int `json:"duration,omitempty"`
|
||||||
|
Width int `json:"width,omitempty"`
|
||||||
|
Height int `json:"height,omitempty"`
|
||||||
|
|
||||||
|
Caption string `json:"caption,omitempty"`
|
||||||
|
ParseMode ParseMode `json:"parse_mode,omitempty"`
|
||||||
|
CaptionEntities []MessageEntity `json:"caption_entities,omitempty"`
|
||||||
|
|
||||||
|
ShowCaptionAboveMedia bool `json:"show_caption_above_media,omitempty"`
|
||||||
|
HasSpoiler bool `json:"has_spoiler,omitempty"`
|
||||||
|
DisableNotification bool `json:"disable_notification,omitempty"`
|
||||||
|
ProtectContent bool `json:"protect_content,omitempty"`
|
||||||
|
AllowPaidBroadcast bool `json:"allow_paid_broadcast,omitempty"`
|
||||||
|
MessageEffectID string `json:"message_effect_id,omitempty"`
|
||||||
|
|
||||||
|
SuggestedPostParameters *SuggestedPostParameters `json:"suggested_post_parameters,omitempty"`
|
||||||
|
ReplyParameters *ReplyParameters `json:"reply_parameters,omitempty"`
|
||||||
|
ReplyMarkup *ReplyMarkup `json:"reply_markup,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (u *Uploader) UploadAnimation(params UploadAnimationP, files ...UploaderFile) (Message, error) {
|
||||||
|
req := NewUploaderRequest[Message]("sendAnimation", params, files...)
|
||||||
|
return req.Do(u)
|
||||||
|
}
|
||||||
|
|
||||||
|
type UploadVoiceP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id,omitempty"`
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageThreadID int `json:"message_thread_id,omitempty"`
|
||||||
|
DirectMessagesTopicID int `json:"direct_messages_topic_id,omitempty"`
|
||||||
|
|
||||||
|
Caption string `json:"caption,omitempty"`
|
||||||
|
ParseMode ParseMode `json:"parse_mode,omitempty"`
|
||||||
|
CaptionEntities []MessageEntity `json:"caption_entities,omitempty"`
|
||||||
|
Duration int `json:"duration,omitempty"`
|
||||||
|
|
||||||
|
DisableNotification bool `json:"disable_notification,omitempty"`
|
||||||
|
ProtectContent bool `json:"protect_content,omitempty"`
|
||||||
|
AllowPaidBroadcast bool `json:"allow_paid_broadcast,omitempty"`
|
||||||
|
MessageEffectID string `json:"message_effect_id,omitempty"`
|
||||||
|
|
||||||
|
SuggestedPostParameters *SuggestedPostParameters `json:"suggested_post_parameters,omitempty"`
|
||||||
|
ReplyParameters *ReplyParameters `json:"reply_parameters,omitempty"`
|
||||||
|
ReplyMarkup *ReplyMarkup `json:"reply_markup,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (u *Uploader) UploadVoice(params UploadVoiceP, files ...UploaderFile) (Message, error) {
|
||||||
|
req := NewUploaderRequest[Message]("sendVoice", params, files...)
|
||||||
|
return req.Do(u)
|
||||||
|
}
|
||||||
|
|
||||||
|
type UploadVideoNoteP struct {
|
||||||
|
BusinessConnectionID string `json:"business_connection_id,omitempty"`
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
MessageThreadID int `json:"message_thread_id,omitempty"`
|
||||||
|
DirectMessagesTopicID int `json:"direct_messages_topic_id,omitempty"`
|
||||||
|
|
||||||
|
Duration int `json:"duration,omitempty"`
|
||||||
|
Length int `json:"length,omitempty"`
|
||||||
|
|
||||||
|
DisableNotification bool `json:"disable_notification,omitempty"`
|
||||||
|
ProtectContent bool `json:"protect_content,omitempty"`
|
||||||
|
AllowPaidBroadcast bool `json:"allow_paid_broadcast,omitempty"`
|
||||||
|
MessageEffectID string `json:"message_effect_id,omitempty"`
|
||||||
|
|
||||||
|
SuggestedPostParameters *SuggestedPostParameters `json:"suggested_post_parameters,omitempty"`
|
||||||
|
ReplyParameters *ReplyParameters `json:"reply_parameters,omitempty"`
|
||||||
|
ReplyMarkup *ReplyMarkup `json:"reply_markup,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (u *Uploader) UploadVideoNote(params UploadVideoNoteP, files ...UploaderFile) (Message, error) {
|
||||||
|
req := NewUploaderRequest[Message]("sendVideoNote", params, files...)
|
||||||
|
return req.Do(u)
|
||||||
|
}
|
||||||
|
|
||||||
|
type UploadChatPhotoP struct {
|
||||||
|
ChatID int64 `json:"chat_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (u *Uploader) UploadChatPhoto(params UploadChatPhotoP, photo UploaderFile) (Message, error) {
|
||||||
|
req := NewUploaderRequest[Message]("sendChatPhoto", params, photo)
|
||||||
|
return req.Do(u)
|
||||||
|
}
|
||||||
51
tgapi/users_methods.go
Normal file
51
tgapi/users_methods.go
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
package tgapi
|
||||||
|
|
||||||
|
type GetUserProfilePhotosP struct {
|
||||||
|
UserID int `json:"user_id"`
|
||||||
|
Offset int `json:"offset,omitempty"`
|
||||||
|
Limit int `json:"limit,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) GetUserProfilePhotos(params GetUserProfilePhotosP) (UserProfilePhotos, error) {
|
||||||
|
req := NewRequest[UserProfilePhotos]("getUserProfilePhotos", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type GetUserProfileAudiosP struct {
|
||||||
|
UserID int `json:"user_id"`
|
||||||
|
Offset int `json:"offset,omitempty"`
|
||||||
|
Limit int `json:"limit,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) GetUserProfileAudios(params GetUserProfileAudiosP) (UserProfileAudios, error) {
|
||||||
|
req := NewRequest[UserProfileAudios]("getUserProfileAudios", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type SetUserEmojiStatusP struct {
|
||||||
|
UserID int `json:"user_id"`
|
||||||
|
EmojiID string `json:"emoji_status_custom_emoji_id,omitempty"`
|
||||||
|
ExpirationDate int `json:"emoji_status_expiration_date,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) SetUserEmojiStatus(params SetUserEmojiStatusP) (bool, error) {
|
||||||
|
req := NewRequest[bool]("setUserEmojiStatus", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
|
|
||||||
|
type GetUserGiftsP struct {
|
||||||
|
UserID int `json:"user_id"`
|
||||||
|
ExcludeUnlimited bool `json:"exclude_unlimited,omitempty"`
|
||||||
|
ExcludeLimitedUpgradable bool `json:"exclude_limited_upgradable,omitempty"`
|
||||||
|
ExcludeLimitedNonUpgradable bool `json:"exclude_limited_non_upgradable,omitempty"`
|
||||||
|
ExcludeUnique bool `json:"exclude_unique,omitempty"`
|
||||||
|
ExcludeFromBlockchain bool `json:"exclude_from_blockchain,omitempty"`
|
||||||
|
SortByPrice bool `json:"sort_by_price,omitempty"`
|
||||||
|
Offset string `json:"offset,omitempty"`
|
||||||
|
Limit int `json:"limit,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (api *API) GetUserGifts(params GetUserGiftsP) (OwnedGifts, error) {
|
||||||
|
req := NewRequest[OwnedGifts]("getUserGifts", params)
|
||||||
|
return req.Do(api)
|
||||||
|
}
|
||||||
40
tgapi/users_types.go
Normal file
40
tgapi/users_types.go
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
package tgapi
|
||||||
|
|
||||||
|
type User struct {
|
||||||
|
ID int `json:"id"`
|
||||||
|
IsBot bool `json:"is_bot"`
|
||||||
|
FirstName string `json:"first_name"`
|
||||||
|
LastName *string `json:"last_name,omitempty"`
|
||||||
|
Username *string `json:"username,omitempty"`
|
||||||
|
LanguageCode *string `json:"language_code,omitempty"`
|
||||||
|
IsPremium *bool `json:"is_premium,omitempty"`
|
||||||
|
AddedToAttachmentMenu *bool `json:"added_to_attachment_menu,omitempty"`
|
||||||
|
CanJoinGroups *bool `json:"can_join_groups,omitempty"`
|
||||||
|
CanReadAllGroupMessages *bool `json:"can_read_all_group_messages,omitempty"`
|
||||||
|
SupportsInlineQueries *bool `json:"supports_inline_queries,omitempty"`
|
||||||
|
CanConnectToBusiness *bool `json:"can_connect_to_business,omitempty"`
|
||||||
|
HasMainWebApp *bool `json:"has_main_web_app,omitempty"`
|
||||||
|
HasTopicsEnabled *bool `json:"has_topics_enabled,omitempty"`
|
||||||
|
AllowsUsersToCreateTopics *bool `json:"allows_users_to_create_topics,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type UserProfilePhotos struct {
|
||||||
|
TotalCount int `json:"total_count"`
|
||||||
|
Photos [][]PhotoSize `json:"photos"`
|
||||||
|
}
|
||||||
|
type UserProfileAudios struct {
|
||||||
|
TotalCount int `json:"total_count"`
|
||||||
|
Audios []Audio `json:"audios"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type UserRating struct {
|
||||||
|
Level int `json:"level"`
|
||||||
|
Rating int `json:"rating"`
|
||||||
|
CurrentLevelRating int `json:"current_level_rating"`
|
||||||
|
NextLevelRating int `json:"next_level_rating"`
|
||||||
|
}
|
||||||
|
type Birthdate struct {
|
||||||
|
Day int `json:"day"`
|
||||||
|
Month int `json:"month"`
|
||||||
|
Year int `json:"year"`
|
||||||
|
}
|
||||||
229
types.go
229
types.go
@@ -1,229 +0,0 @@
|
|||||||
package laniakea
|
|
||||||
|
|
||||||
import "git.nix13.pw/scuroneko/extypes"
|
|
||||||
|
|
||||||
type Update struct {
|
|
||||||
UpdateID int `json:"update_id"`
|
|
||||||
Message *Message `json:"message"`
|
|
||||||
EditedMessage *Message `json:"edited_message,omitempty"`
|
|
||||||
ChannelPost *Message `json:"channel_post,omitempty"`
|
|
||||||
EditedChannelPost *Message `json:"edited_channel_post,omitempty"`
|
|
||||||
BusinessConnection *BusinessConnection `json:"business_connection,omitempty"`
|
|
||||||
BusinessMessage *Message `json:"business_message,omitempty"`
|
|
||||||
EditedBusinessMessage *Message `json:"edited_business_message,omitempty"`
|
|
||||||
DeletedBusinessMessage *Message `json:"deleted_business_messages,omitempty"`
|
|
||||||
MessageReaction *MessageReactionUpdated `json:"message_reaction,omitempty"`
|
|
||||||
MessageReactionCount *MessageReactionCountUpdated `json:"message_reaction_count,omitempty"`
|
|
||||||
CallbackQuery *CallbackQuery `json:"callback_query,omitempty"`
|
|
||||||
InlineQuery int
|
|
||||||
ChosenInlineResult int
|
|
||||||
}
|
|
||||||
|
|
||||||
type User struct {
|
|
||||||
ID int `json:"id"`
|
|
||||||
IsBot bool `json:"is_bot"`
|
|
||||||
FirstName string `json:"first_name"`
|
|
||||||
LastName string `json:"last_name,omitempty"`
|
|
||||||
Username string `json:"username,omitempty"`
|
|
||||||
LanguageCode string `json:"language_code,omitempty"`
|
|
||||||
IsPremium bool `json:"is_premium,omitempty"`
|
|
||||||
AddedToAttachmentMenu bool `json:"added_to_attachment_menu,omitempty"`
|
|
||||||
CanJoinGroups bool `json:"can_join_groups,omitempty"`
|
|
||||||
CanReadAllGroupMessages bool `json:"can_read_all_group_messages,omitempty"`
|
|
||||||
SupportsInlineQueries bool `json:"supports_inline_queries,omitempty"`
|
|
||||||
CanConnectToBusiness bool `json:"can_connect_to_business,omitempty"`
|
|
||||||
HasMainWebApp bool `json:"has_main_web_app,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type Chat struct {
|
|
||||||
ID int `json:"id"`
|
|
||||||
Type string `json:"type"`
|
|
||||||
Title string `json:"title,omitempty"`
|
|
||||||
Username string `json:"username,omitempty"`
|
|
||||||
FirstName string `json:"first_name,omitempty"`
|
|
||||||
LastName string `json:"last_name,omitempty"`
|
|
||||||
IsForum bool `json:"is_forum,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type MessageReplyMarkup struct {
|
|
||||||
InlineKeyboard [][]InlineKeyboardButton `json:"inline_keyboard"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type Message struct {
|
|
||||||
MessageID int `json:"message_id"`
|
|
||||||
MessageThreadID int `json:"message_thread_id,omitempty"`
|
|
||||||
From *User `json:"from,omitempty"`
|
|
||||||
Chat *Chat `json:"chat,omitempty"`
|
|
||||||
Text string `json:"text"`
|
|
||||||
|
|
||||||
Photo extypes.Slice[*PhotoSize] `json:"photo,omitempty"`
|
|
||||||
Caption string `json:"caption,omitempty"`
|
|
||||||
ReplyToMessage *Message `json:"reply_to_message"`
|
|
||||||
|
|
||||||
ReplyMarkup *MessageReplyMarkup `json:"reply_markup,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type InaccessableMessage struct {
|
|
||||||
Chat *Chat `json:"chat"`
|
|
||||||
MessageID int `json:"message_id"`
|
|
||||||
Date int `json:"date"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type MaybeInaccessibleMessage struct {
|
|
||||||
}
|
|
||||||
|
|
||||||
type MessageEntity struct {
|
|
||||||
Type string `json:"type"`
|
|
||||||
Offset int `json:"offset"`
|
|
||||||
Length int `json:"length"`
|
|
||||||
URL string `json:"url,omitempty"`
|
|
||||||
User *User `json:"user,omitempty"`
|
|
||||||
Language string `json:"language,omitempty"`
|
|
||||||
CustomEmojiID string `json:"custom_emoji_id,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type ReplyParameters struct {
|
|
||||||
MessageID int `json:"message_id"`
|
|
||||||
ChatID int `json:"chat_id,omitempty"`
|
|
||||||
|
|
||||||
AllowSendingWithoutReply bool `json:"allow_sending_without_reply,omitempty"`
|
|
||||||
Quote string `json:"quote,omitempty"`
|
|
||||||
QuoteParsingMode string `json:"quote_parsing_mode,omitempty"`
|
|
||||||
QuoteEntities []*MessageEntity `json:"quote_entities,omitempty"`
|
|
||||||
QuotePosition int `json:"quote_position,omitempty"`
|
|
||||||
ChecklistTaskID int `json:"checklist_task_id,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type PhotoSize struct {
|
|
||||||
FileID string `json:"file_id"`
|
|
||||||
FileUniqueID string `json:"file_unique_id"`
|
|
||||||
Width int `json:"width"`
|
|
||||||
Height int `json:"height"`
|
|
||||||
FileSize int `json:"file_size,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type LinkPreviewOptions struct {
|
|
||||||
IsDisabled bool `json:"is_disabled,omitempty"`
|
|
||||||
URL string `json:"url,omitempty"`
|
|
||||||
PreferSmallMedia bool `json:"prefer_small_media,omitempty"`
|
|
||||||
PreferLargeMedia bool `json:"prefer_large_media,omitempty"`
|
|
||||||
ShowAboveText bool `json:"show_above_text,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type ReplyMarkup struct {
|
|
||||||
InlineKeyboard [][]InlineKeyboardButton `json:"inline_keyboard,omitempty"`
|
|
||||||
|
|
||||||
Keyboard [][]int `json:"keyboard,omitempty"`
|
|
||||||
IsPersistent bool `json:"is_persistent,omitempty"`
|
|
||||||
ResizeKeyboard bool `json:"resize_keyboard,omitempty"`
|
|
||||||
OneTimeKeyboard bool `json:"one_time_keyboard,omitempty"`
|
|
||||||
InputFieldPlaceholder string `json:"input_field_placeholder,omitempty"`
|
|
||||||
Selective bool `json:"selective,omitempty"`
|
|
||||||
|
|
||||||
RemoveKeyboard bool `json:"remove_keyboard,omitempty"`
|
|
||||||
|
|
||||||
ForceReply bool `json:"force_reply,omitempty"`
|
|
||||||
}
|
|
||||||
type InlineKeyboardMarkup struct {
|
|
||||||
InlineKeyboard [][]InlineKeyboardButton `json:"inline_keyboard,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type InlineKeyboardButtonStyle string
|
|
||||||
type InlineKeyboardButton struct {
|
|
||||||
Text string `json:"text"`
|
|
||||||
URL string `json:"url,omitempty"`
|
|
||||||
CallbackData string `json:"callback_data,omitempty"`
|
|
||||||
Style InlineKeyboardButtonStyle `json:"style,omitempty"`
|
|
||||||
IconCustomEmojiID string `json:"icon_custom_emoji_id,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type ReplyKeyboardMarkup struct {
|
|
||||||
Keyboard [][]int `json:"keyboard"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type CallbackQuery struct {
|
|
||||||
ID string `json:"id"`
|
|
||||||
From *User `json:"from"`
|
|
||||||
Message *Message `json:"message"`
|
|
||||||
|
|
||||||
Data string `json:"data"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type BusinessConnection struct {
|
|
||||||
ID string `json:"id"`
|
|
||||||
User *User `json:"user"`
|
|
||||||
UserChatID int `json:"user_chat_id"`
|
|
||||||
Date int `json:"date"`
|
|
||||||
CanReply bool `json:"can_reply"`
|
|
||||||
IsEnabled bool `json:"id_enabled"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type MessageReactionUpdated struct {
|
|
||||||
Chat *Chat `json:"chat"`
|
|
||||||
MessageID int `json:"message_id"`
|
|
||||||
User *User `json:"user,omitempty"`
|
|
||||||
ActorChat *Chat `json:"actor_chat"`
|
|
||||||
Date int `json:"date"`
|
|
||||||
OldReaction []*ReactionType `json:"old_reaction"`
|
|
||||||
NewReaction []*ReactionType `json:"new_reaction"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type MessageReactionCountUpdated struct {
|
|
||||||
Chat *Chat `json:"chat"`
|
|
||||||
MessageID int `json:"message_id"`
|
|
||||||
Date int `json:"date"`
|
|
||||||
Reactions []*ReactionCount `json:"reactions"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type ReactionType struct {
|
|
||||||
Type string `json:"type"`
|
|
||||||
}
|
|
||||||
type ReactionTypeEmoji struct {
|
|
||||||
ReactionType
|
|
||||||
Emoji string `json:"emoji"`
|
|
||||||
}
|
|
||||||
type ReactionTypeCustomEmoji struct {
|
|
||||||
ReactionType
|
|
||||||
CustomEmojiID string `json:"custom_emoji_id"`
|
|
||||||
}
|
|
||||||
type ReactionTypePaid struct {
|
|
||||||
ReactionType
|
|
||||||
}
|
|
||||||
type ReactionCount struct {
|
|
||||||
Type *ReactionType `json:"type"`
|
|
||||||
TotalCount int `json:"total_count"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type File struct {
|
|
||||||
FileId string `json:"file_id"`
|
|
||||||
FileUniqueID string `json:"file_unique_id"`
|
|
||||||
FileSize int `json:"file_size,omitempty"`
|
|
||||||
FilePath string `json:"file_path,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type ChatActions string
|
|
||||||
|
|
||||||
const (
|
|
||||||
ChatActionTyping ChatActions = "typing"
|
|
||||||
ChatActionUploadPhoto ChatActions = "upload_photo"
|
|
||||||
ChatActionUploadVideo ChatActions = "upload_video"
|
|
||||||
ChatActionUploadVoice ChatActions = "upload_voice"
|
|
||||||
ChatActionUploadDocument ChatActions = "upload_document"
|
|
||||||
ChatActionChooseSticker ChatActions = "choose_sticker"
|
|
||||||
ChatActionFindLocation ChatActions = "find_location"
|
|
||||||
ChatActionUploadVideoNone ChatActions = "upload_video_none"
|
|
||||||
)
|
|
||||||
|
|
||||||
type SuggestedPostPrice struct {
|
|
||||||
Currency string `json:"currency"`
|
|
||||||
Amount int `json:"amount"`
|
|
||||||
}
|
|
||||||
type SuggestedPostInfo struct {
|
|
||||||
State string `json:"state"` //State of the suggested post. Currently, it can be one of “pending”, “approved”, “declined”.
|
|
||||||
Price SuggestedPostPrice `json:"price"`
|
|
||||||
SendDate int `json:"send_date"`
|
|
||||||
}
|
|
||||||
type SuggestedPostParameters struct {
|
|
||||||
Price SuggestedPostPrice `json:"price"`
|
|
||||||
SendDate int `json:"send_date"`
|
|
||||||
}
|
|
||||||
144
uploader.go
144
uploader.go
@@ -1,144 +0,0 @@
|
|||||||
package laniakea
|
|
||||||
|
|
||||||
import (
|
|
||||||
"bytes"
|
|
||||||
"encoding/json"
|
|
||||||
"fmt"
|
|
||||||
"io"
|
|
||||||
"mime/multipart"
|
|
||||||
"net/http"
|
|
||||||
"path/filepath"
|
|
||||||
|
|
||||||
"git.nix13.pw/scuroneko/slog"
|
|
||||||
)
|
|
||||||
|
|
||||||
type Uploader struct {
|
|
||||||
api *Api
|
|
||||||
logger *slog.Logger
|
|
||||||
}
|
|
||||||
|
|
||||||
func NewUploader(api *Api) *Uploader {
|
|
||||||
logger := slog.CreateLogger().Level(GetLoggerLevel()).Prefix("UPLOADER")
|
|
||||||
logger.AddWriter(logger.CreateJsonStdoutWriter())
|
|
||||||
return &Uploader{api, logger}
|
|
||||||
}
|
|
||||||
func (u *Uploader) Close() error {
|
|
||||||
return u.logger.Close()
|
|
||||||
}
|
|
||||||
|
|
||||||
type UploaderFileType string
|
|
||||||
|
|
||||||
const (
|
|
||||||
UploaderPhotoType UploaderFileType = "photo"
|
|
||||||
UploaderVideoType UploaderFileType = "video"
|
|
||||||
UploaderAudioType UploaderFileType = "audio"
|
|
||||||
UploaderDocumentType UploaderFileType = "document"
|
|
||||||
UploaderVoiceType UploaderFileType = "voice"
|
|
||||||
UploaderVideoNoteType UploaderFileType = "video_note"
|
|
||||||
)
|
|
||||||
|
|
||||||
type UploaderFile struct {
|
|
||||||
filename string
|
|
||||||
data []byte
|
|
||||||
t UploaderFileType
|
|
||||||
}
|
|
||||||
|
|
||||||
func NewUploaderFile(name string, data []byte) UploaderFile {
|
|
||||||
t := uploaderTypeByExt(name)
|
|
||||||
return UploaderFile{filename: name, data: data, t: t}
|
|
||||||
}
|
|
||||||
|
|
||||||
// SetType used when auto-detect failed. I.e. you sending a voice message, but it detects as audio
|
|
||||||
func (f UploaderFile) SetType(t UploaderFileType) UploaderFile {
|
|
||||||
f.t = t
|
|
||||||
return f
|
|
||||||
}
|
|
||||||
|
|
||||||
type UploaderRequest[R, P any] struct {
|
|
||||||
method string
|
|
||||||
file UploaderFile
|
|
||||||
params P
|
|
||||||
}
|
|
||||||
|
|
||||||
func NewUploaderRequest[R, P any](method string, file UploaderFile, params P) UploaderRequest[R, P] {
|
|
||||||
return UploaderRequest[R, P]{method, file, params}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (u UploaderRequest[R, P]) Do(up *Uploader) (*R, error) {
|
|
||||||
url := fmt.Sprintf("https://api.telegram.org/bot%s/%s", up.api.token, u.method)
|
|
||||||
|
|
||||||
buf := bytes.NewBuffer(nil)
|
|
||||||
w := multipart.NewWriter(buf)
|
|
||||||
|
|
||||||
fw, err := w.CreateFormFile(string(u.file.t), u.file.filename)
|
|
||||||
if err != nil {
|
|
||||||
w.Close()
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
_, err = fw.Write(u.file.data)
|
|
||||||
if err != nil {
|
|
||||||
w.Close()
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
err = Encode(w, u.params)
|
|
||||||
if err != nil {
|
|
||||||
w.Close()
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
err = w.Close()
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
req, err := http.NewRequest("POST", url, buf)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
req.Header.Set("Content-Type", w.FormDataContentType())
|
|
||||||
up.logger.Debugln("UPLOADER REQ", u.method)
|
|
||||||
res, err := http.DefaultClient.Do(req)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
defer res.Body.Close()
|
|
||||||
|
|
||||||
body, err := io.ReadAll(res.Body)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
up.logger.Debugln("UPLOADER RES", u.method, string(body))
|
|
||||||
if res.StatusCode != http.StatusOK {
|
|
||||||
return nil, fmt.Errorf("[%d] %s", res.StatusCode, string(body))
|
|
||||||
}
|
|
||||||
|
|
||||||
response := new(ApiResponse[*R])
|
|
||||||
err = json.Unmarshal(body, response)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
if !response.Ok {
|
|
||||||
return nil, fmt.Errorf("[%d] %s", response.ErrorCode, response.Description)
|
|
||||||
}
|
|
||||||
return response.Result, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (u *Uploader) UploadPhoto(file UploaderFile, params SendPhotoBaseP) (*Message, error) {
|
|
||||||
req := NewUploaderRequest[Message]("sendPhoto", file, params)
|
|
||||||
return req.Do(u)
|
|
||||||
}
|
|
||||||
|
|
||||||
func uploaderTypeByExt(filename string) UploaderFileType {
|
|
||||||
ext := filepath.Ext(filename)
|
|
||||||
switch ext {
|
|
||||||
case ".jpg", ".jpeg", ".png", ".webp", ".bmp":
|
|
||||||
return UploaderPhotoType
|
|
||||||
case ".mp4":
|
|
||||||
return UploaderVideoType
|
|
||||||
case ".mp3", ".m4a":
|
|
||||||
return UploaderAudioType
|
|
||||||
case ".ogg":
|
|
||||||
return UploaderVoiceType
|
|
||||||
default:
|
|
||||||
return UploaderDocumentType
|
|
||||||
}
|
|
||||||
}
|
|
||||||
99
utils.go
99
utils.go
@@ -1,75 +1,21 @@
|
|||||||
package laniakea
|
package laniakea
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
|
||||||
"fmt"
|
|
||||||
"os"
|
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"git.nix13.pw/scuroneko/slog"
|
"git.nix13.pw/scuroneko/laniakea/utils"
|
||||||
)
|
)
|
||||||
|
|
||||||
func GetLoggerLevel() slog.LogLevel {
|
func Ptr[T any](v T) *T { return &v }
|
||||||
level := slog.FATAL
|
func Val[T any](p *T, def T) T {
|
||||||
if os.Getenv("DEBUG") == "true" {
|
if p != nil {
|
||||||
level = slog.DEBUG
|
return *p
|
||||||
}
|
}
|
||||||
return level
|
return def
|
||||||
}
|
|
||||||
|
|
||||||
// MapToStruct unsafe function
|
|
||||||
func MapToStruct(m map[string]any, s any) error {
|
|
||||||
data, err := json.Marshal(m)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
err = json.Unmarshal(data, s)
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
// SliceToStruct unsafe function
|
|
||||||
func SliceToStruct(sl []any, s any) error {
|
|
||||||
data, err := json.Marshal(sl)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
err = json.Unmarshal(data, s)
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
// AnyToStruct unsafe function
|
|
||||||
func AnyToStruct(src, dest any) error {
|
|
||||||
data, err := json.Marshal(src)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
err = json.Unmarshal(data, dest)
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
func MapToJson(m map[string]any) (string, error) {
|
|
||||||
data, err := json.Marshal(m)
|
|
||||||
return string(data), err
|
|
||||||
}
|
|
||||||
|
|
||||||
func StructToMap(s any) (map[string]any, error) {
|
|
||||||
data, err := json.Marshal(s)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
m := make(map[string]any)
|
|
||||||
err = json.Unmarshal(data, &m)
|
|
||||||
return m, err
|
|
||||||
}
|
|
||||||
|
|
||||||
func Map[T, V any](ts []T, fn func(T) V) []V {
|
|
||||||
result := make([]V, len(ts))
|
|
||||||
for i, t := range ts {
|
|
||||||
result[i] = fn(t)
|
|
||||||
}
|
|
||||||
return result
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// EscapeMarkdown
|
||||||
|
// Deprecated. Use MarkdownV2
|
||||||
func EscapeMarkdown(s string) string {
|
func EscapeMarkdown(s string) string {
|
||||||
s = strings.ReplaceAll(s, "_", `\_`)
|
s = strings.ReplaceAll(s, "_", `\_`)
|
||||||
s = strings.ReplaceAll(s, "*", `\*`)
|
s = strings.ReplaceAll(s, "*", `\*`)
|
||||||
@@ -77,10 +23,35 @@ func EscapeMarkdown(s string) string {
|
|||||||
return strings.ReplaceAll(s, "`", "\\`")
|
return strings.ReplaceAll(s, "`", "\\`")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// EscapeHTML escapes special characters for Telegram HTML parse mode.
|
||||||
|
func EscapeHTML(s string) string {
|
||||||
|
s = strings.ReplaceAll(s, "&", "&")
|
||||||
|
s = strings.ReplaceAll(s, "<", "<")
|
||||||
|
s = strings.ReplaceAll(s, ">", ">")
|
||||||
|
return s
|
||||||
|
}
|
||||||
|
|
||||||
|
// EscapeMarkdownV2 escapes special characters for Telegram MarkdownV2.
|
||||||
|
// https://core.telegram.org/bots/api#markdownv2-style
|
||||||
func EscapeMarkdownV2(s string) string {
|
func EscapeMarkdownV2(s string) string {
|
||||||
symbols := []string{"_", "*", "[", "]", "(", ")", "~", "`", ">", "#", "+", "-", "=", "|", "{", "}", ".", "!"}
|
symbols := []string{"\\", "_", "*", "[", "]", "(", ")", "~", "`", ">", "#", "+", "-", "=", "|", "{", "}", ".", "!"}
|
||||||
for _, symbol := range symbols {
|
for _, symbol := range symbols {
|
||||||
s = strings.ReplaceAll(s, symbol, fmt.Sprintf("\\%s", symbol))
|
s = strings.ReplaceAll(s, symbol, "\\"+symbol)
|
||||||
}
|
}
|
||||||
return s
|
return s
|
||||||
}
|
}
|
||||||
|
func EscapePunctuation(s string) string {
|
||||||
|
symbols := []string{".", "!", "-"}
|
||||||
|
for _, symbol := range symbols {
|
||||||
|
s = strings.ReplaceAll(s, symbol, "\\"+symbol)
|
||||||
|
}
|
||||||
|
return s
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
VersionString = utils.VersionString
|
||||||
|
VersionMajor = utils.VersionMajor
|
||||||
|
VersionMinor = utils.VersionMinor
|
||||||
|
VersionPatch = utils.VersionPatch
|
||||||
|
VersionBeta = utils.VersionBeta
|
||||||
|
)
|
||||||
|
|||||||
204
utils/limiter.go
Normal file
204
utils/limiter.go
Normal file
@@ -0,0 +1,204 @@
|
|||||||
|
package utils
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"errors"
|
||||||
|
"sync"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"golang.org/x/time/rate"
|
||||||
|
)
|
||||||
|
|
||||||
|
var ErrDropOverflow = errors.New("drop overflow limit")
|
||||||
|
|
||||||
|
// RateLimiter implements per-chat and global rate limiting with optional blocking.
|
||||||
|
// It supports two modes:
|
||||||
|
// - "drop" mode: immediately reject if limits are exceeded.
|
||||||
|
// - "wait" mode: block until capacity is available.
|
||||||
|
type RateLimiter struct {
|
||||||
|
globalLockUntil time.Time // global cooldown timestamp (set by API errors)
|
||||||
|
globalLimiter *rate.Limiter // global token bucket (30 req/sec)
|
||||||
|
globalMu sync.RWMutex // protects globalLockUntil and globalLimiter
|
||||||
|
|
||||||
|
chatLocks map[int64]time.Time // per-chat cooldown timestamps
|
||||||
|
chatLimiters map[int64]*rate.Limiter // per-chat token buckets (1 req/sec)
|
||||||
|
chatMu sync.Mutex // protects chatLocks and chatLimiters
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewRateLimiter creates a new RateLimiter with default limits.
|
||||||
|
// Global: 30 requests per second, burst 30.
|
||||||
|
// Per-chat: 1 request per second, burst 1.
|
||||||
|
func NewRateLimiter() *RateLimiter {
|
||||||
|
return &RateLimiter{
|
||||||
|
globalLimiter: rate.NewLimiter(30, 30),
|
||||||
|
chatLimiters: make(map[int64]*rate.Limiter),
|
||||||
|
chatLocks: make(map[int64]time.Time),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetGlobalLock sets a global cooldown period (e.g., after receiving 429 from Telegram).
|
||||||
|
// If retryAfter <= 0, no lock is applied.
|
||||||
|
func (rl *RateLimiter) SetGlobalLock(retryAfter int) {
|
||||||
|
if retryAfter <= 0 {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
rl.globalMu.Lock()
|
||||||
|
defer rl.globalMu.Unlock()
|
||||||
|
rl.globalLockUntil = time.Now().Add(time.Duration(retryAfter) * time.Second)
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetChatLock sets a cooldown for a specific chat (e.g., after 429 for that chat).
|
||||||
|
// If retryAfter <= 0, no lock is applied.
|
||||||
|
func (rl *RateLimiter) SetChatLock(chatID int64, retryAfter int) {
|
||||||
|
if retryAfter <= 0 {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
rl.chatMu.Lock()
|
||||||
|
defer rl.chatMu.Unlock()
|
||||||
|
rl.chatLocks[chatID] = time.Now().Add(time.Duration(retryAfter) * time.Second)
|
||||||
|
}
|
||||||
|
|
||||||
|
// GlobalWait blocks until a global request can be made.
|
||||||
|
// Waits for both global cooldown and token bucket availability.
|
||||||
|
func (rl *RateLimiter) GlobalWait(ctx context.Context) error {
|
||||||
|
if err := rl.waitForGlobalUnlock(ctx); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return rl.globalLimiter.Wait(ctx)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Wait blocks until a request for the given chat can be made.
|
||||||
|
// Waits for: chat cooldown → global cooldown → chat token bucket.
|
||||||
|
// Note: Global limit is checked *before* chat limit to avoid overloading upstream.
|
||||||
|
func (rl *RateLimiter) Wait(ctx context.Context, chatID int64) error {
|
||||||
|
if err := rl.waitForChatUnlock(ctx, chatID); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if err := rl.waitForGlobalUnlock(ctx); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
limiter := rl.getChatLimiter(chatID)
|
||||||
|
return limiter.Wait(ctx)
|
||||||
|
}
|
||||||
|
|
||||||
|
// GlobalAllow checks if a global request can be made without blocking.
|
||||||
|
// Returns false if either global cooldown is active or token bucket is exhausted.
|
||||||
|
func (rl *RateLimiter) GlobalAllow() bool {
|
||||||
|
rl.globalMu.RLock()
|
||||||
|
until := rl.globalLockUntil
|
||||||
|
rl.globalMu.RUnlock()
|
||||||
|
|
||||||
|
if !until.IsZero() && time.Now().Before(until) {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
return rl.globalLimiter.Allow()
|
||||||
|
}
|
||||||
|
|
||||||
|
// Allow checks if a request for the given chat can be made without blocking.
|
||||||
|
// Returns false if: global cooldown, chat cooldown, global limiter, or chat limiter denies.
|
||||||
|
// Note: Global limiter is checked before chat limiter — upstream limits take priority.
|
||||||
|
func (rl *RateLimiter) Allow(chatID int64) bool {
|
||||||
|
// Check global cooldown
|
||||||
|
rl.globalMu.RLock()
|
||||||
|
globalUntil := rl.globalLockUntil
|
||||||
|
rl.globalMu.RUnlock()
|
||||||
|
if !globalUntil.IsZero() && time.Now().Before(globalUntil) {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check chat cooldown
|
||||||
|
rl.chatMu.Lock()
|
||||||
|
chatUntil, ok := rl.chatLocks[chatID]
|
||||||
|
rl.chatMu.Unlock()
|
||||||
|
if ok && !chatUntil.IsZero() && time.Now().Before(chatUntil) {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check global token bucket
|
||||||
|
if !rl.globalLimiter.Allow() {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check chat token bucket
|
||||||
|
limiter := rl.getChatLimiter(chatID)
|
||||||
|
return limiter.Allow()
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check applies rate limiting based on configuration.
|
||||||
|
// If dropOverflow is true:
|
||||||
|
// - Immediately returns ErrDropOverflow if either global or chat limit is exceeded.
|
||||||
|
//
|
||||||
|
// Else:
|
||||||
|
// - If chatID != 0: waits for chat-specific capacity (including global limit).
|
||||||
|
// - If chatID == 0: waits for global capacity only.
|
||||||
|
//
|
||||||
|
// chatID == 0 means no specific chat context (e.g., inline query, webhook without chat).
|
||||||
|
func (rl *RateLimiter) Check(ctx context.Context, dropOverflow bool, chatID int64) error {
|
||||||
|
if dropOverflow {
|
||||||
|
if chatID != 0 && !rl.Allow(chatID) {
|
||||||
|
return ErrDropOverflow
|
||||||
|
}
|
||||||
|
if !rl.GlobalAllow() {
|
||||||
|
return ErrDropOverflow
|
||||||
|
}
|
||||||
|
} else if chatID != 0 {
|
||||||
|
if err := rl.Wait(ctx, chatID); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if err := rl.GlobalWait(ctx); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// waitForGlobalUnlock blocks until global cooldown expires or context is done.
|
||||||
|
// Does not check token bucket — only cooldown.
|
||||||
|
func (rl *RateLimiter) waitForGlobalUnlock(ctx context.Context) error {
|
||||||
|
rl.globalMu.RLock()
|
||||||
|
until := rl.globalLockUntil
|
||||||
|
rl.globalMu.RUnlock()
|
||||||
|
|
||||||
|
if until.IsZero() || time.Now().After(until) {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
select {
|
||||||
|
case <-time.After(time.Until(until)):
|
||||||
|
return nil
|
||||||
|
case <-ctx.Done():
|
||||||
|
return ctx.Err()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// waitForChatUnlock blocks until the specified chat's cooldown expires or context is done.
|
||||||
|
// Does not check token bucket — only cooldown.
|
||||||
|
func (rl *RateLimiter) waitForChatUnlock(ctx context.Context, chatID int64) error {
|
||||||
|
rl.chatMu.Lock()
|
||||||
|
until, ok := rl.chatLocks[chatID]
|
||||||
|
rl.chatMu.Unlock()
|
||||||
|
|
||||||
|
if !ok || until.IsZero() || time.Now().After(until) {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
select {
|
||||||
|
case <-time.After(time.Until(until)):
|
||||||
|
return nil
|
||||||
|
case <-ctx.Done():
|
||||||
|
return ctx.Err()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// getChatLimiter returns the rate limiter for the given chat, creating it if needed.
|
||||||
|
// Uses 1 request per second with burst of 1 — conservative for per-user limits.
|
||||||
|
// Must be called with rl.chatMu held.
|
||||||
|
func (rl *RateLimiter) getChatLimiter(chatID int64) *rate.Limiter {
|
||||||
|
if lim, ok := rl.chatLimiters[chatID]; ok {
|
||||||
|
return lim
|
||||||
|
}
|
||||||
|
lim := rate.NewLimiter(1, 1)
|
||||||
|
rl.chatLimiters[chatID] = lim
|
||||||
|
return lim
|
||||||
|
}
|
||||||
@@ -1,7 +1,6 @@
|
|||||||
package laniakea
|
package utils
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"mime/multipart"
|
"mime/multipart"
|
||||||
@@ -26,33 +25,31 @@ func Encode[T any](w *multipart.Writer, req T) error {
|
|||||||
field := v.Field(i)
|
field := v.Field(i)
|
||||||
fieldType := t.Field(i)
|
fieldType := t.Field(i)
|
||||||
|
|
||||||
formTags := strings.Split(fieldType.Tag.Get("json"), ",")
|
jsonTag := fieldType.Tag.Get("json")
|
||||||
fieldName := ""
|
if jsonTag == "" {
|
||||||
if len(formTags) == 0 {
|
jsonTag = fieldType.Name
|
||||||
formTags = strings.Split(fieldType.Tag.Get("json"), ",")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(formTags) > 0 {
|
parts := strings.Split(jsonTag, ",")
|
||||||
fieldName = formTags[0]
|
fieldName := parts[0]
|
||||||
if fieldName == "-" {
|
if fieldName == "-" {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if slices.Index(formTags, "omitempty") >= 0 {
|
|
||||||
if field.IsZero() {
|
// Handle omitempty
|
||||||
continue
|
isEmpty := field.IsZero()
|
||||||
}
|
if slices.Contains(parts, "omitempty") && isEmpty {
|
||||||
}
|
continue
|
||||||
} else {
|
|
||||||
fieldName = strings.ToLower(fieldType.Name)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
fw io.Writer
|
fw io.Writer
|
||||||
err error
|
err error
|
||||||
)
|
)
|
||||||
|
|
||||||
switch field.Kind() {
|
switch field.Kind() {
|
||||||
case reflect.String:
|
case reflect.String:
|
||||||
if field.String() != "" {
|
if !isEmpty {
|
||||||
fw, err = w.CreateFormField(fieldName)
|
fw, err = w.CreateFormField(fieldName)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
_, err = fw.Write([]byte(field.String()))
|
_, err = fw.Write([]byte(field.String()))
|
||||||
@@ -80,45 +77,47 @@ func Encode[T any](w *multipart.Writer, req T) error {
|
|||||||
}
|
}
|
||||||
case reflect.Slice:
|
case reflect.Slice:
|
||||||
if field.Type().Elem().Kind() == reflect.Uint8 && !field.IsNil() {
|
if field.Type().Elem().Kind() == reflect.Uint8 && !field.IsNil() {
|
||||||
|
// Handle []byte as file upload (e.g., thumbnail)
|
||||||
filename := fieldType.Tag.Get("filename")
|
filename := fieldType.Tag.Get("filename")
|
||||||
if filename == "" {
|
if filename == "" {
|
||||||
filename = fieldName
|
filename = fieldName
|
||||||
}
|
}
|
||||||
|
|
||||||
ext := ""
|
|
||||||
filename = filename + ext
|
|
||||||
|
|
||||||
fw, err = w.CreateFormFile(fieldName, filename)
|
fw, err = w.CreateFormFile(fieldName, filename)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
_, err = fw.Write(field.Bytes())
|
_, err = fw.Write(field.Bytes())
|
||||||
}
|
}
|
||||||
} else if !field.IsNil() {
|
} else if !field.IsNil() {
|
||||||
// Handle slice of primitive values (as multiple form fields with the same name)
|
// Handle []string, []int, etc. — send as multiple fields with same name
|
||||||
for j := 0; j < field.Len(); j++ {
|
for j := 0; j < field.Len(); j++ {
|
||||||
elem := field.Index(j)
|
elem := field.Index(j)
|
||||||
fw, err = w.CreateFormField(fieldName)
|
fw, err = w.CreateFormField(fieldName)
|
||||||
if err == nil {
|
if err != nil {
|
||||||
switch elem.Kind() {
|
break
|
||||||
case reflect.String:
|
}
|
||||||
_, err = fw.Write([]byte(elem.String()))
|
switch elem.Kind() {
|
||||||
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
|
case reflect.String:
|
||||||
_, err = fw.Write([]byte(strconv.FormatInt(elem.Int(), 10)))
|
_, err = fw.Write([]byte(elem.String()))
|
||||||
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
|
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
|
||||||
_, err = fw.Write([]byte(strconv.FormatUint(elem.Uint(), 10)))
|
_, err = fw.Write([]byte(strconv.FormatInt(elem.Int(), 10)))
|
||||||
}
|
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
|
||||||
|
_, err = fw.Write([]byte(strconv.FormatUint(elem.Uint(), 10)))
|
||||||
|
case reflect.Bool:
|
||||||
|
_, err = fw.Write([]byte(strconv.FormatBool(elem.Bool())))
|
||||||
|
case reflect.Float32, reflect.Float64:
|
||||||
|
_, err = fw.Write([]byte(strconv.FormatFloat(elem.Float(), 'f', -1, 64)))
|
||||||
|
}
|
||||||
|
if err != nil {
|
||||||
|
break
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
case reflect.Struct:
|
case reflect.Struct:
|
||||||
var jsonData []byte
|
// Don't serialize structs as JSON — flatten them!
|
||||||
jsonData, err = json.Marshal(field.Interface())
|
// Telegram doesn't support nested JSON in form-data.
|
||||||
if err == nil {
|
// If you need nested data, use separate fields (e.g., ParseMode, CaptionEntities)
|
||||||
fw, err = w.CreateFormField(fieldName)
|
// This is a design choice — you should avoid nested structs in params.
|
||||||
if err == nil {
|
return fmt.Errorf("nested structs are not supported in params — use flat fields")
|
||||||
_, err = fw.Write(jsonData)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
15
utils/utils.go
Normal file
15
utils/utils.go
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
package utils
|
||||||
|
|
||||||
|
import (
|
||||||
|
"os"
|
||||||
|
|
||||||
|
"git.nix13.pw/scuroneko/slog"
|
||||||
|
)
|
||||||
|
|
||||||
|
func GetLoggerLevel() slog.LogLevel {
|
||||||
|
level := slog.FATAL
|
||||||
|
if os.Getenv("DEBUG") == "true" {
|
||||||
|
level = slog.DEBUG
|
||||||
|
}
|
||||||
|
return level
|
||||||
|
}
|
||||||
9
utils/version.go
Normal file
9
utils/version.go
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
package utils
|
||||||
|
|
||||||
|
const (
|
||||||
|
VersionString = "1.0.0-beta.12"
|
||||||
|
VersionMajor = 1
|
||||||
|
VersionMinor = 0
|
||||||
|
VersionPatch = 0
|
||||||
|
VersionBeta = 12
|
||||||
|
)
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
package laniakea
|
|
||||||
|
|
||||||
const (
|
|
||||||
VersionString = "0.4.1"
|
|
||||||
VersionMajor = 0
|
|
||||||
VersionMinor = 4
|
|
||||||
VersionPatch = 1
|
|
||||||
)
|
|
||||||
Reference in New Issue
Block a user