Files
tgex-backend/shared/echotron/dispatcher.go
2026-02-19 11:13:45 +03:00

227 lines
5.9 KiB
Go

/*
* Echotron
* Copyright (C) 2018 The Echotron Contributors
*
* Echotron is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Echotron is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package echotron
import (
"compress/gzip"
"encoding/json"
"fmt"
"io"
"log"
"net/http"
"net/url"
"sync"
)
type smap sync.Map
func (s *smap) load(id int64) (Bot, bool) {
bot, ok := (*sync.Map)(s).Load(id)
if ok {
return bot.(Bot), ok
}
return nil, ok
}
func (s *smap) store(id int64, bot Bot) {
(*sync.Map)(s).Store(id, bot)
}
func (s *smap) delete(id int64) {
(*sync.Map)(s).Delete(id)
}
// Bot is the interface that must be implemented by your definition of
// the struct thus it represent each open session with a user on Telegram.
type Bot interface {
// Update will be called upon receiving any update from Telegram.
Update(*Update)
}
// NewBotFn is called every time echotron receives an update with a chat ID never
// encountered before.
type NewBotFn func(chatId int64) Bot
// The Dispatcher passes the updates from the Telegram Bot API to the Bot instance
// associated with each chatID. When a new chat ID is found, the provided function
// of type NewBotFn will be called.
type Dispatcher struct {
sessions smap
newBot NewBotFn
updates chan *Update
httpServer *http.Server
api API
}
// NewDispatcher returns a new instance of the Dispatcher object.
// Calls the Update function of the bot associated with each chat ID.
// If a new chat ID is found, newBotFn will be called first.
func NewDispatcher(token string, newBotFn NewBotFn) *Dispatcher {
d := &Dispatcher{
api: NewAPI(token),
newBot: newBotFn,
updates: make(chan *Update),
}
go d.listen()
return d
}
// DelSession deletes the Bot instance, seen as a session, from the
// map with all of them.
func (d *Dispatcher) DelSession(chatID int64) {
d.sessions.delete(chatID)
}
// AddSession allows to arbitrarily create a new Bot instance.
func (d *Dispatcher) AddSession(chatID int64) {
d.sessions.store(chatID, d.newBot(chatID))
}
// Poll is a wrapper function for PollOptions.
func (d *Dispatcher) Poll() error {
return d.PollOptions(true, UpdateOptions{Timeout: 120})
}
// PollOptions starts the polling loop so that the dispatcher calls the function Update
// upon receiving any update from Telegram.
func (d *Dispatcher) PollOptions(dropPendingUpdates bool, opts UpdateOptions) error {
var (
timeout = opts.Timeout
isFirstRun = true
)
// deletes webhook if present to run in long polling mode
if _, err := d.api.DeleteWebhook(dropPendingUpdates); err != nil {
return err
}
for {
if isFirstRun {
opts.Timeout = 0
}
response, err := d.api.GetUpdates(&opts)
if err != nil {
return err
}
if !dropPendingUpdates || !isFirstRun {
for _, u := range response.Result {
d.updates <- u
}
}
if l := len(response.Result); l > 0 {
opts.Offset = response.Result[l-1].ID + 1
}
if isFirstRun {
isFirstRun = false
opts.Timeout = timeout
}
}
}
func (d *Dispatcher) instance(chatID int64) Bot {
bot, ok := d.sessions.load(chatID)
if !ok {
bot = d.newBot(chatID)
d.sessions.store(chatID, bot)
}
return bot
}
func (d *Dispatcher) listen() {
for update := range d.updates {
bot := d.instance(update.ChatID())
go bot.Update(update)
}
}
// ListenWebhook is a wrapper function for ListenWebhookOptions.
func (d *Dispatcher) ListenWebhook(webhookURL string) error {
return d.ListenWebhookOptions(webhookURL, false, nil)
}
// ListenWebhookOptions sets a webhook and listens for incoming updates.
// The webhookUrl should be provided in the following format: '<hostname>:<port>/<path>',
// eg: 'https://example.com:443/bot_token'.
// ListenWebhook will then proceed to communicate the webhook url '<hostname>/<path>' to Telegram
// and run a webserver that listens to ':<port>' and handles the path.
func (d *Dispatcher) ListenWebhookOptions(webhookURL string, dropPendingUpdates bool, opts *WebhookOptions) error {
u, err := url.Parse(webhookURL)
if err != nil {
return err
}
whURL := fmt.Sprintf("%s%s", u.Hostname(), u.EscapedPath())
if _, err = d.api.SetWebhook(whURL, dropPendingUpdates, opts); err != nil {
return err
}
if d.httpServer != nil {
mux := http.NewServeMux()
mux.Handle("/", d.httpServer.Handler)
mux.HandleFunc(u.EscapedPath(), d.HandleWebhook)
d.httpServer.Handler = mux
return d.httpServer.ListenAndServe()
}
http.HandleFunc(u.EscapedPath(), d.HandleWebhook)
return http.ListenAndServe(fmt.Sprintf(":%s", u.Port()), nil)
}
// SetHTTPServer allows to set a custom http.Server for ListenWebhook and ListenWebhookOptions.
func (d *Dispatcher) SetHTTPServer(s *http.Server) {
d.httpServer = s
}
// HandleWebhook is the http.HandlerFunc for the webhook URL.
// Useful if you've already a http server running and want to handle the request yourself.
func (d *Dispatcher) HandleWebhook(w http.ResponseWriter, r *http.Request) {
var update Update
jsn, err := readRequest(r)
if err != nil {
log.Println("echotron.Dispatcher", "HandleWebhook", err)
return
}
if err := json.Unmarshal(jsn, &update); err != nil {
log.Println("echotron.Dispatcher", "HandleWebhook", err)
return
}
d.updates <- &update
}
func readRequest(r *http.Request) ([]byte, error) {
switch r.Header.Get("Content-Encoding") {
case "gzip":
reader, err := gzip.NewReader(r.Body)
if err != nil {
return []byte{}, err
}
defer reader.Close()
return io.ReadAll(reader)
default:
return io.ReadAll(r.Body)
}
}