PluralKit/services/scheduled_tasks/main.go

78 lines
1.6 KiB
Go
Raw Normal View History

package main
import (
"fmt"
"log"
"os"
"runtime/debug"
"strings"
"time"
"github.com/getsentry/sentry-go"
)
func main() {
err := sentry.Init(sentry.ClientOptions{
Dsn: os.Getenv("SENTRY_DSN"),
})
if err != nil {
panic(err)
}
log.Println("connecting to databases")
connect_dbs()
log.Println("starting scheduled tasks runner")
wait_until_next_minute()
go doforever(time.Minute*10, withtime("message stats updater", update_db_message_meta))
doforever(time.Minute, withtime("scheduled tasks", task_main))
}
func wait_until_next_minute() {
now := time.Now().UTC().Add(time.Minute)
after := time.Date(now.Year(), now.Month(), now.Day(), now.Hour(), now.Minute(), 0, 0, time.UTC)
time.Sleep(after.Sub(time.Now().UTC()))
}
func get_env_var(key string) string {
if val, ok := os.LookupEnv(key); ok {
return val
}
panic(fmt.Errorf("missing `%s` in environment", key))
}
func withtime(name string, todo func()) func() {
return func() {
timeBefore := time.Now()
todo()
timeAfter := time.Now()
log.Println("ran", name, "in", timeAfter.Sub(timeBefore).String())
}
}
func doforever(dur time.Duration, todo func()) {
for {
go wrapRecover(todo)
time.Sleep(dur)
}
}
func wrapRecover(todo func()) {
defer func() {
if err := recover(); err != nil {
if val, ok := err.(error); ok {
sentry.CaptureException(val)
} else {
sentry.CaptureMessage(fmt.Sprint("unknown error", err))
}
stack := strings.Split(string(debug.Stack()), "\n")
stack = stack[7:]
log.Println("error running tasks:", err.(error).Error())
fmt.Println(strings.Join(stack, "\n"))
}
}()
todo()
}