teldrive/internal/tgc/workers.go

113 lines
2.4 KiB
Go
Raw Normal View History

2023-09-20 03:20:44 +08:00
package tgc
import (
2023-11-25 12:31:29 +08:00
"context"
2023-09-20 03:20:44 +08:00
"sync"
2023-09-24 04:26:04 +08:00
"github.com/gotd/contrib/bg"
"github.com/gotd/td/telegram"
2023-09-20 03:20:44 +08:00
)
type BotWorkers struct {
2023-11-16 23:21:35 +08:00
mu sync.Mutex
bots map[int64][]string
currIdx map[int64]int
2023-09-20 03:20:44 +08:00
}
2023-11-16 23:21:35 +08:00
func (w *BotWorkers) Set(bots []string, channelId int64) {
w.mu.Lock()
defer w.mu.Unlock()
_, ok := w.bots[channelId]
if !ok {
w.bots = make(map[int64][]string)
w.currIdx = make(map[int64]int)
w.bots[channelId] = bots
w.currIdx[channelId] = 0
2023-09-20 03:20:44 +08:00
}
}
2023-11-16 23:21:35 +08:00
func (w *BotWorkers) Next(channelId int64) string {
w.mu.Lock()
defer w.mu.Unlock()
index := w.currIdx[channelId]
w.currIdx[channelId] = (index + 1) % len(w.bots[channelId])
return w.bots[channelId][index]
2023-09-20 03:20:44 +08:00
}
var Workers = &BotWorkers{}
2023-09-24 04:26:04 +08:00
type Client struct {
Tg *telegram.Client
Stop bg.StopFunc
Status string
}
type streamWorkers struct {
2023-11-16 23:21:35 +08:00
mu sync.Mutex
bots map[int64][]string
clients map[int64][]*Client
currIdx map[int64]int
2023-09-24 04:26:04 +08:00
}
2023-11-16 23:21:35 +08:00
func (w *streamWorkers) Set(bots []string, channelId int64) {
w.mu.Lock()
defer w.mu.Unlock()
_, ok := w.bots[channelId]
if !ok {
w.bots = make(map[int64][]string)
w.clients = make(map[int64][]*Client)
w.currIdx = make(map[int64]int)
w.bots[channelId] = bots
2023-09-24 04:26:04 +08:00
for _, token := range bots {
2023-11-25 12:31:29 +08:00
client, _ := BotLogin(context.TODO(), token)
2023-11-16 23:21:35 +08:00
w.clients[channelId] = append(w.clients[channelId], &Client{Tg: client, Status: "idle"})
2023-09-24 04:26:04 +08:00
}
2023-11-16 23:21:35 +08:00
w.currIdx[channelId] = 0
2023-09-24 04:26:04 +08:00
}
2023-11-16 23:21:35 +08:00
2023-09-24 04:26:04 +08:00
}
2023-11-16 23:21:35 +08:00
func (w *streamWorkers) Next(channelId int64) (*Client, int, error) {
w.mu.Lock()
defer w.mu.Unlock()
index := w.currIdx[channelId]
nextClient := w.clients[channelId][index]
w.currIdx[channelId] = (index + 1) % len(w.clients[channelId])
if nextClient.Status == "idle" {
stop, err := bg.Connect(nextClient.Tg)
2023-09-24 04:26:04 +08:00
if err != nil {
2023-11-02 21:51:30 +08:00
return nil, 0, err
2023-09-24 04:26:04 +08:00
}
2023-11-16 23:21:35 +08:00
nextClient.Stop = stop
nextClient.Status = "running"
}
return nextClient, index, nil
}
func (w *streamWorkers) UserWorker(client *telegram.Client) (*Client, error) {
w.mu.Lock()
defer w.mu.Unlock()
//for user login channelId not needed so we use 1 here
channelId := int64(1)
_, ok := w.clients[channelId]
if !ok {
w.clients = make(map[int64][]*Client)
w.clients[channelId] = append(w.clients[channelId], &Client{Tg: client, Status: "idle"})
}
nextClient := w.clients[channelId][0]
if nextClient.Status == "idle" {
stop, err := bg.Connect(nextClient.Tg)
if err != nil {
return nil, err
}
nextClient.Stop = stop
nextClient.Status = "running"
2023-09-24 04:26:04 +08:00
}
2023-11-16 23:21:35 +08:00
return nextClient, nil
2023-09-24 04:26:04 +08:00
}
var StreamWorkers = &streamWorkers{}