mirror of
https://github.com/Luzifer/twitch-manager.git
synced 2024-11-09 18:00:05 +00:00
104 lines
3.4 KiB
Go
104 lines
3.4 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"os"
|
|
"path"
|
|
"time"
|
|
|
|
"github.com/gofrs/uuid"
|
|
"github.com/gorilla/mux"
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
"github.com/Luzifer/rconfig/v2"
|
|
)
|
|
|
|
var (
|
|
cfg = struct {
|
|
AssetDir string `flag:"asset-dir" default:"." description:"Directory containing assets"`
|
|
BaseURL string `flag:"base-url" default:"" description:"Base URL of this service" validate:"nonzero"`
|
|
ForceSyncInterval time.Duration `flag:"force-sync-interval" default:"1m" description:"How often to force a sync without updates"`
|
|
Listen string `flag:"listen" default:":3000" description:"Port/IP to listen on"`
|
|
LogLevel string `flag:"log-level" default:"info" description:"Log level (debug, info, warn, error, fatal)"`
|
|
StoreFile string `flag:"store-file" default:"store.json.gz" description:"File to store the state to"`
|
|
TwitchClient string `flag:"twitch-client" default:"" description:"Client ID to act as" validate:"nonzero"`
|
|
TwitchID string `flag:"twitch-id" default:"" description:"ID of the user of the overlay" validate:"nonzero"`
|
|
TwitchToken string `flag:"twitch-token" default:"" description:"OAuth token valid for client"`
|
|
UpdateFromAPIInterval time.Duration `flag:"update-from-api-interval" default:"10m" description:"How often to ask the API for real values"`
|
|
VersionAndExit bool `flag:"version" default:"false" description:"Prints current version and exits"`
|
|
WebHookTimeout time.Duration `flag:"webhook-timeout" default:"15m" description:"When to re-register the webhooks"`
|
|
}{}
|
|
|
|
version = "dev"
|
|
store *storage
|
|
webhookSecret = uuid.Must(uuid.NewV4()).String()
|
|
)
|
|
|
|
func init() {
|
|
rconfig.AutoEnv(true)
|
|
if err := rconfig.ParseAndValidate(&cfg); err != nil {
|
|
log.Fatalf("Unable to parse commandline options: %s", err)
|
|
}
|
|
|
|
if cfg.VersionAndExit {
|
|
fmt.Printf("twitch-manager %s\n", version)
|
|
os.Exit(0)
|
|
}
|
|
|
|
if l, err := log.ParseLevel(cfg.LogLevel); err != nil {
|
|
log.WithError(err).Fatal("Unable to parse log level")
|
|
} else {
|
|
log.SetLevel(l)
|
|
}
|
|
}
|
|
|
|
func main() {
|
|
store = newStorage()
|
|
if err := store.Load(cfg.StoreFile); err != nil && !os.IsNotExist(err) {
|
|
log.WithError(err).Fatal("Unable to load store")
|
|
}
|
|
|
|
router := mux.NewRouter()
|
|
registerAPI(router)
|
|
|
|
router.HandleFunc("/{file:(?:app.js|overlay.html)}", func(w http.ResponseWriter, r *http.Request) {
|
|
http.ServeFile(w, r, path.Join(cfg.AssetDir, mux.Vars(r)["file"]))
|
|
})
|
|
|
|
go func() {
|
|
if err := http.ListenAndServe(cfg.Listen, router); err != nil {
|
|
log.WithError(err).Fatal("HTTP server ended unexpectedly")
|
|
}
|
|
}()
|
|
|
|
if err := registerWebHooks(); err != nil {
|
|
log.WithError(err).Fatal("Unable to register webhooks")
|
|
}
|
|
|
|
var (
|
|
timerForceSync = time.NewTicker(cfg.ForceSyncInterval)
|
|
timerUpdateFromAPI = time.NewTicker(cfg.UpdateFromAPIInterval)
|
|
timerWebhookRegister = time.NewTicker(cfg.WebHookTimeout)
|
|
)
|
|
|
|
for {
|
|
select {
|
|
case <-timerForceSync.C:
|
|
if err := sendAllSockets(store); err != nil {
|
|
log.WithError(err).Error("Unable to send store to all sockets")
|
|
}
|
|
|
|
case <-timerUpdateFromAPI.C:
|
|
if err := updateStats(); err != nil {
|
|
log.WithError(err).Error("Unable to update statistics from API")
|
|
}
|
|
|
|
case <-timerWebhookRegister.C:
|
|
if err := registerWebHooks(); err != nil {
|
|
log.WithError(err).Fatal("Unable to re-register webhooks")
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|