2024-02-08 18:23:46 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2024-02-19 18:52:40 +00:00
|
|
|
"html/template"
|
2024-02-11 21:48:05 +00:00
|
|
|
"log"
|
2024-02-08 18:23:46 +00:00
|
|
|
"net"
|
2024-02-09 22:32:32 +00:00
|
|
|
"os"
|
2024-03-03 12:54:42 +00:00
|
|
|
"path/filepath"
|
2024-02-09 22:32:32 +00:00
|
|
|
"sync"
|
2024-03-23 09:26:36 +00:00
|
|
|
"sync/atomic"
|
2024-02-09 22:32:32 +00:00
|
|
|
"time"
|
2024-02-08 18:23:46 +00:00
|
|
|
|
2024-03-04 20:11:34 +00:00
|
|
|
"git.sr.ht/~michalr/go-satel"
|
2024-02-08 18:23:46 +00:00
|
|
|
tgbotapi "github.com/go-telegram-bot-api/telegram-bot-api/v5"
|
|
|
|
)
|
|
|
|
|
2024-02-09 22:32:32 +00:00
|
|
|
const (
|
2024-03-06 18:39:43 +00:00
|
|
|
PersistenceFilename = "hs_wro_last_seen.bin"
|
2024-03-23 09:26:36 +00:00
|
|
|
retryDelaySec = 25
|
2024-02-09 22:32:32 +00:00
|
|
|
)
|
|
|
|
|
2024-02-11 10:51:41 +00:00
|
|
|
type RealSleeper struct {
|
|
|
|
duration time.Duration
|
|
|
|
}
|
|
|
|
|
|
|
|
func (self RealSleeper) Sleep(ch chan<- interface{}) {
|
2024-02-11 21:51:33 +00:00
|
|
|
go func() {
|
|
|
|
time.Sleep(self.duration)
|
|
|
|
ch <- nil
|
|
|
|
}()
|
2024-02-11 10:51:41 +00:00
|
|
|
}
|
|
|
|
|
2024-03-06 07:00:39 +00:00
|
|
|
func makeSatel(satelAddr string, poolInterval time.Duration) *satel.Satel {
|
2024-02-11 13:56:03 +00:00
|
|
|
satelConn, err := net.Dial("tcp", satelAddr)
|
2024-02-08 18:23:46 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2024-03-06 07:00:39 +00:00
|
|
|
return satel.NewConfig(satelConn, satel.Config{EventsQueueSize: 10, PoolingInterval: poolInterval})
|
2024-02-11 13:56:03 +00:00
|
|
|
}
|
|
|
|
|
2024-03-03 12:54:42 +00:00
|
|
|
func getPersistenceFilePath() string {
|
|
|
|
var stateDir = os.Getenv("STATE_DIRECTORY")
|
|
|
|
if len(stateDir) != 0 {
|
|
|
|
return filepath.Join(stateDir, PersistenceFilename)
|
|
|
|
}
|
|
|
|
return PersistenceFilename
|
|
|
|
}
|
|
|
|
|
2024-02-11 13:56:03 +00:00
|
|
|
func main() {
|
|
|
|
var (
|
2024-03-23 09:26:36 +00:00
|
|
|
wg sync.WaitGroup
|
|
|
|
tgEvents = make(chan GenericMessage, 5)
|
|
|
|
logger = log.New(os.Stderr, "Main", log.Lmicroseconds)
|
|
|
|
sleeper = RealSleeper{time.Second * 60}
|
|
|
|
stopRequested = atomic.Bool{}
|
2024-02-11 13:56:03 +00:00
|
|
|
)
|
|
|
|
|
2024-03-23 09:26:36 +00:00
|
|
|
stopRequested.Store(false)
|
2024-03-24 08:32:03 +00:00
|
|
|
config := MakeConfig(logger)
|
2024-02-11 13:56:03 +00:00
|
|
|
|
2024-03-24 15:54:33 +00:00
|
|
|
s := makeSatel(config.SatelAddr, config.PoolInterval)
|
|
|
|
logger.Printf("Connected to Satel: %s", config.SatelAddr)
|
2024-02-11 13:56:03 +00:00
|
|
|
|
2024-02-08 18:23:46 +00:00
|
|
|
bot, err := tgbotapi.NewBotAPI(os.Getenv("TELEGRAM_APITOKEN"))
|
2024-02-09 22:32:32 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2024-02-11 21:48:05 +00:00
|
|
|
logger.Print("Created Telegram Bot API client")
|
2024-02-09 22:32:32 +00:00
|
|
|
|
2024-03-24 15:54:33 +00:00
|
|
|
tgSender := TgSender{bot, s, log.New(os.Stderr, "TgFormatter", log.Lmicroseconds), config.ChatIds}
|
2024-02-18 16:28:32 +00:00
|
|
|
|
2024-02-19 18:52:40 +00:00
|
|
|
tpl := template.Must(template.New("TelegramMessage").Parse(TelegramMessageTemplate))
|
|
|
|
|
2024-03-03 12:54:42 +00:00
|
|
|
dataStore := MakeDataStore(log.New(os.Stderr, "DataStore", log.Lmicroseconds), getPersistenceFilePath())
|
2024-02-28 20:26:20 +00:00
|
|
|
|
2024-03-10 09:52:27 +00:00
|
|
|
Consume(
|
2024-03-24 08:32:03 +00:00
|
|
|
SendToTg(Throttle(NotifyViaHTTP(tgEvents, config, &wg, log.New(os.Stderr, "HTTPNotify", log.Lmicroseconds)),
|
2024-03-10 09:52:27 +00:00
|
|
|
&wg, sleeper, log.New(os.Stderr, "MessageThrottle", log.Lmicroseconds)),
|
|
|
|
tgSender, &wg, log.New(os.Stderr, "SendToTg", log.Lmicroseconds), tpl),
|
2024-03-06 21:31:08 +00:00
|
|
|
)
|
2024-02-18 16:28:32 +00:00
|
|
|
|
2024-03-23 09:26:36 +00:00
|
|
|
go CloseSatelOnCtrlC(s, &stopRequested)
|
2024-02-18 18:36:54 +00:00
|
|
|
|
2024-03-23 09:26:36 +00:00
|
|
|
for stopRequested.Load() == false {
|
|
|
|
for e := range FilterByTypeOrIndex(
|
|
|
|
FilterByLastSeen(s.Events, &wg, &dataStore, log.New(os.Stderr, "FilterByLastSeen", log.Lmicroseconds)),
|
2024-03-24 15:54:33 +00:00
|
|
|
&wg, config.AllowedTypes, config.AllowedIndexes) {
|
2024-03-23 09:26:36 +00:00
|
|
|
logger.Print("Received change from SATEL: ", e)
|
|
|
|
tgEvents <- GenericMessage{e.BasicEvents}
|
|
|
|
}
|
|
|
|
if stopRequested.Load() == false {
|
|
|
|
logger.Printf("Waiting %d seconds before trying again", retryDelaySec)
|
|
|
|
time.Sleep(retryDelaySec * time.Second)
|
|
|
|
}
|
2024-02-08 18:23:46 +00:00
|
|
|
}
|
2024-02-09 22:32:32 +00:00
|
|
|
|
2024-02-11 13:56:03 +00:00
|
|
|
close(tgEvents)
|
2024-02-09 22:32:32 +00:00
|
|
|
wg.Wait()
|
2024-02-08 18:23:46 +00:00
|
|
|
}
|