discordBots/cmd/dealsbot/main.go

145 lines
3.7 KiB
Go
Raw Normal View History

2023-01-26 00:28:18 +00:00
package main
2023-03-04 11:54:08 +00:00
import (
"context"
"errors"
"fmt"
"github.com/dgraph-io/badger/v4"
"github.com/disgoorg/disgo"
"github.com/disgoorg/disgo/discord"
"github.com/disgoorg/disgo/rest"
"github.com/disgoorg/disgo/webhook"
"github.com/disgoorg/snowflake/v2"
"github.com/getsentry/sentry-go"
2023-03-06 19:53:07 +00:00
"grow.rievo.dev/discordBots/cmd/dealsbot/api"
"grow.rievo.dev/discordBots/cmd/dealsbot/repository"
"log"
2023-03-04 11:54:08 +00:00
"os"
"os/signal"
"reflect"
"syscall"
"time"
)
var (
webhookID = snowflake.GetEnv("webhook_id")
webhookToken = os.Getenv("webhook_token")
)
2023-04-22 23:05:35 +00:00
// sentry
var release string
2023-01-26 00:28:18 +00:00
func main() {
// query different sources store to db
2023-03-04 11:54:08 +00:00
// try to incorporate operagx apiUrl:
// - https://gx-proxy.operacdn.com/content/free-games?_limit=300&_sort=order%3AASC
2023-01-26 00:28:18 +00:00
// send messages to discord
2023-03-04 11:54:08 +00:00
// ideas:
// - https://github.com/TheLovinator1/discord-free-game-notifier
// - https://gg.deals/news/free-gog-games/
// - origin
// - check ubisoft works
err := sentry.Init(sentry.ClientOptions{
2023-04-22 23:05:35 +00:00
// Either set your DSN here or set the SENTRY_DSN environment variable.
2023-04-22 23:23:52 +00:00
//Dsn: "",
// Set TracesSampleRate to 1.0 to capture 100%
// of transactions for performance monitoring.
// We recommend adjusting this value in production,
TracesSampleRate: 1.0,
2023-04-22 23:05:35 +00:00
Release: release,
})
if err != nil {
log.Fatalf("sentry.Init: %s", err)
}
// Flush buffered events before the program terminates.
defer sentry.Flush(2 * time.Second)
log.Printf("INFO: starting dealsbot...")
log.Printf("INFO: disgo version: %v", disgo.Version)
2023-03-04 11:54:08 +00:00
client := webhook.New(webhookID, webhookToken)
defer client.Close(context.TODO())
2023-03-06 19:53:07 +00:00
repo := repository.InitDb()
2023-03-04 11:54:08 +00:00
defer repo.Close()
ticker := time.NewTicker(10 * time.Minute)
tickerGC := time.NewTicker(15 * time.Minute)
quit := make(chan struct{})
go func() {
for {
select {
case <-ticker.C:
2023-03-06 19:53:07 +00:00
var apis []api.Api
apis = append(apis, api.NewUbsioftApi(), api.NewEpicApi(), api.NewSteamApi(), api.NewGogApi(), api.NewHumbleBundleApi())
for _, a := range apis {
err := a.Load()
2023-03-04 11:54:08 +00:00
if err != nil {
sentry.CaptureException(fmt.Errorf("ERROR: loading from api: %w", err))
log.Printf("ERROR: %v", err)
2023-03-04 11:54:08 +00:00
}
}
2023-03-06 19:53:07 +00:00
var deals []api.Deal
for _, a := range apis {
apiDeals := a.Get()
2023-03-04 11:54:08 +00:00
deals = append(deals, apiDeals...)
}
for _, deal := range deals {
retrievedDeal, _ := repo.GetValue(deal.Id)
if deal.Id == retrievedDeal.Id {
log.Printf("DEBUG: %v is already published", deal.Id)
2023-03-04 11:54:08 +00:00
} else if reflect.DeepEqual(deal, retrievedDeal) {
log.Printf("ERROR: %v is published but not equal", deal.Id)
2023-03-04 11:54:08 +00:00
} else {
log.Printf("INFO: %v is new and will be published", deal.Id)
2023-03-04 11:54:08 +00:00
go sendWebhook(client, deal)
err := repo.SetValue(deal)
if err != nil {
log.Printf("ERROR: %v", err)
2023-03-04 11:54:08 +00:00
}
}
}
case <-tickerGC.C:
err := repo.RunGC()
if err != nil && !errors.Is(err, badger.ErrNoRewrite) {
log.Printf("ERROR: GC: %v", err)
2023-03-04 11:54:08 +00:00
} else {
log.Printf("DEBUG: GC successful")
2023-03-04 11:54:08 +00:00
}
case <-quit:
ticker.Stop()
tickerGC.Stop()
return
}
}
}()
2023-04-22 23:23:52 +00:00
log.Printf("INFO: dealsbot (%v) is now running. Press CTRL-C to exit.", release)
sentry.ConfigureScope(func(scope *sentry.Scope) {
scope.SetLevel(sentry.LevelDebug)
sentry.CaptureMessage("DEBUG: dealsbot started")
})
2023-03-04 11:54:08 +00:00
s := make(chan os.Signal, 1)
signal.Notify(s, syscall.SIGINT, syscall.SIGTERM, os.Interrupt)
<-s
}
2023-03-06 19:53:07 +00:00
func sendWebhook(client webhook.Client, deal api.Deal) {
2023-03-04 11:54:08 +00:00
var status string
status = fmt.Sprintf("currently free: %v\n", deal.Url)
if _, err := client.CreateMessage(discord.NewWebhookMessageCreateBuilder().
SetContent(status).Build(),
rest.WithDelay(2*time.Second),
); err != nil {
log.Printf("ERROR: sending message %v", err.Error())
2023-03-04 11:54:08 +00:00
}
2023-01-26 00:28:18 +00:00
}