discord-community/mod_presence.go

116 lines
3.0 KiB
Go
Raw Normal View History

2021-06-10 13:27:13 +00:00
package main
import (
"context"
2021-06-10 13:27:13 +00:00
"fmt"
"math"
"time"
"github.com/bwmarrin/discordgo"
"github.com/pkg/errors"
"github.com/robfig/cron/v3"
2021-06-10 13:27:13 +00:00
log "github.com/sirupsen/logrus"
)
/*
* @module presence
* @module_desc Updates the presence status of the bot to display the next stream
*/
const (
presenceTimeDay = 24 * time.Hour
)
2021-06-10 13:27:13 +00:00
func init() {
RegisterModule("presence", func() module { return &modPresence{} })
}
type modPresence struct {
attrs moduleAttributeStore
discord *discordgo.Session
}
func (m *modPresence) Initialize(crontab *cron.Cron, discord *discordgo.Session, attrs moduleAttributeStore) error {
m.attrs = attrs
m.discord = discord
if err := attrs.Expect(
"fallback_text",
"twitch_channel_id",
"twitch_client_id",
"twitch_token",
); err != nil {
return errors.Wrap(err, "validating attributes")
}
// @attr cron optional string "* * * * *" When to execute the module
if _, err := crontab.AddFunc(attrs.MustString("cron", ptrString("* * * * *")), m.cronUpdatePresence); err != nil {
return errors.Wrap(err, "adding cron function")
2021-06-10 13:27:13 +00:00
}
return nil
2021-06-10 13:27:13 +00:00
}
func (m modPresence) cronUpdatePresence() {
var nextStream *time.Time
2021-06-10 13:27:13 +00:00
twitch := newTwitchAdapter(
// @attr twitch_client_id required string "" Twitch client ID the token was issued for
m.attrs.MustString("twitch_client_id", nil),
"", // No client secret used
// @attr twitch_token required string "" Token for the user the `twitch_channel_id` belongs to
m.attrs.MustString("twitch_token", nil),
)
data, err := twitch.GetChannelStreamSchedule(
context.Background(),
// @attr twitch_channel_id required string "" ID (not name) of the channel to fetch the schedule from
m.attrs.MustString("twitch_channel_id", nil),
// @attr schedule_past_time optional duration "15m" How long in the past should the schedule contain an entry
ptrTime(time.Now().Add(-m.attrs.MustDuration("schedule_past_time", defaultStreamSchedulePastTime))),
)
if err != nil {
log.WithError(err).Error("Unable to fetch stream schedule")
return
}
for _, seg := range data.Data.Segments {
if seg.StartTime == nil || seg.CanceledUntil != nil {
continue
}
nextStream = seg.StartTime
break
}
2021-06-10 13:27:13 +00:00
// @attr fallback_text required string "" What to set the text to when no stream is found (`playing <text>`)
status := m.attrs.MustString("fallback_text", nil)
2021-06-10 13:27:13 +00:00
if nextStream != nil {
status = m.durationToHumanReadable(time.Since(*nextStream))
2021-06-10 13:27:13 +00:00
}
if err := m.discord.UpdateGameStatus(0, status); err != nil {
2021-06-10 13:27:13 +00:00
log.WithError(err).Error("Unable to update status")
}
log.Debug("Updated presence")
}
func (m modPresence) durationToHumanReadable(d time.Duration) string {
d = time.Duration(math.Abs(float64(d)))
if d > presenceTimeDay {
return fmt.Sprintf("in %.0f Tagen", math.Round(float64(d)/float64(presenceTimeDay)))
}
if d > time.Hour {
return fmt.Sprintf("in %.0f Stunden", math.Round(float64(d)/float64(time.Hour)))
}
2021-06-10 13:27:13 +00:00
if d > time.Minute {
return fmt.Sprintf("in %.0f Minuten", math.Round(float64(d)/float64(time.Minute)))
2021-06-10 13:27:13 +00:00
}
return "gleich"
2021-06-10 13:27:13 +00:00
}