mirror of
https://github.com/hrfee/jfa-go.git
synced 2024-11-04 17:30:11 +00:00
Harvey Tindall
2722e8482d
"Require unique ..." Settings (`require_unique` in relevant sections of config.ini) are now available for email/discord/telegram/matrix. An error is shown on the invite form if a non-unique address/ID is used. This was on my kanban without a link to an issue, so i'm guessing it was requested on Discord.
161 lines
4.9 KiB
Go
161 lines
4.9 KiB
Go
package main
|
|
|
|
import "time"
|
|
|
|
// clearEmails removes stored emails for users which no longer exist.
|
|
// meant to be called with other such housekeeping functions, so assumes
|
|
// the user cache is fresh.
|
|
func (app *appContext) clearEmails() {
|
|
app.debug.Println("Housekeeping: removing unused email addresses")
|
|
users, status, err := app.jf.GetUsers(false)
|
|
if status != 200 || err != nil || len(users) == 0 {
|
|
app.err.Printf("Failed to get users from Jellyfin (%d): %v", status, err)
|
|
return
|
|
}
|
|
// Rebuild email storage to from existing users to reduce time complexity
|
|
emails := map[string]EmailAddress{}
|
|
for _, user := range users {
|
|
if email, ok := app.storage.emails[user.ID]; ok {
|
|
emails[user.ID] = email
|
|
}
|
|
}
|
|
app.storage.emails = emails
|
|
app.storage.storeEmails()
|
|
}
|
|
|
|
// clearDiscord does the same as clearEmails, but for Discord Users.
|
|
func (app *appContext) clearDiscord() {
|
|
app.debug.Println("Housekeeping: removing unused Discord IDs")
|
|
users, status, err := app.jf.GetUsers(false)
|
|
if status != 200 || err != nil || len(users) == 0 {
|
|
app.err.Printf("Failed to get users from Jellyfin (%d): %v", status, err)
|
|
return
|
|
}
|
|
// Rebuild discord storage to from existing users to reduce time complexity
|
|
dcUsers := map[string]DiscordUser{}
|
|
for _, user := range users {
|
|
if dcUser, ok := app.storage.discord[user.ID]; ok {
|
|
dcUsers[user.ID] = dcUser
|
|
}
|
|
}
|
|
app.storage.discord = dcUsers
|
|
app.storage.storeDiscordUsers()
|
|
}
|
|
|
|
// clearMatrix does the same as clearEmails, but for Matrix Users.
|
|
func (app *appContext) clearMatrix() {
|
|
app.debug.Println("Housekeeping: removing unused Matrix IDs")
|
|
users, status, err := app.jf.GetUsers(false)
|
|
if status != 200 || err != nil || len(users) == 0 {
|
|
app.err.Printf("Failed to get users from Jellyfin (%d): %v", status, err)
|
|
return
|
|
}
|
|
// Rebuild matrix storage to from existing users to reduce time complexity
|
|
mxUsers := map[string]MatrixUser{}
|
|
for _, user := range users {
|
|
if mxUser, ok := app.storage.matrix[user.ID]; ok {
|
|
mxUsers[user.ID] = mxUser
|
|
}
|
|
}
|
|
app.storage.matrix = mxUsers
|
|
app.storage.storeMatrixUsers()
|
|
}
|
|
|
|
// clearTelegram does the same as clearEmails, but for Telegram Users.
|
|
func (app *appContext) clearTelegram() {
|
|
app.debug.Println("Housekeeping: removing unused Telegram IDs")
|
|
users, status, err := app.jf.GetUsers(false)
|
|
if status != 200 || err != nil || len(users) == 0 {
|
|
app.err.Printf("Failed to get users from Jellyfin (%d): %v", status, err)
|
|
return
|
|
}
|
|
// Rebuild telegram storage to from existing users to reduce time complexity
|
|
tgUsers := map[string]TelegramUser{}
|
|
for _, user := range users {
|
|
if tgUser, ok := app.storage.telegram[user.ID]; ok {
|
|
tgUsers[user.ID] = tgUser
|
|
}
|
|
}
|
|
app.storage.telegram = tgUsers
|
|
app.storage.storeTelegramUsers()
|
|
}
|
|
|
|
// https://bbengfort.github.io/snippets/2016/06/26/background-work-goroutines-timer.html THANKS
|
|
|
|
type housekeepingDaemon struct {
|
|
Stopped bool
|
|
ShutdownChannel chan string
|
|
Interval time.Duration
|
|
period time.Duration
|
|
jobs []func(app *appContext)
|
|
app *appContext
|
|
}
|
|
|
|
func newInviteDaemon(interval time.Duration, app *appContext) *housekeepingDaemon {
|
|
daemon := housekeepingDaemon{
|
|
Stopped: false,
|
|
ShutdownChannel: make(chan string),
|
|
Interval: interval,
|
|
period: interval,
|
|
app: app,
|
|
}
|
|
daemon.jobs = []func(app *appContext){func(app *appContext) {
|
|
app.debug.Println("Housekeeping: Checking for expired invites")
|
|
app.checkInvites()
|
|
}}
|
|
|
|
clearEmail := app.config.Section("email").Key("require_unique").MustBool(false)
|
|
clearDiscord := app.config.Section("discord").Key("require_unique").MustBool(false)
|
|
clearTelegram := app.config.Section("telegram").Key("require_unique").MustBool(false)
|
|
clearMatrix := app.config.Section("matrix").Key("require_unique").MustBool(false)
|
|
|
|
if clearEmail || clearDiscord || clearTelegram || clearMatrix {
|
|
daemon.jobs = append(daemon.jobs, func(app *appContext) { app.jf.CacheExpiry = time.Now() })
|
|
}
|
|
|
|
if clearEmail {
|
|
daemon.jobs = append(daemon.jobs, func(app *appContext) { app.clearEmails() })
|
|
}
|
|
if clearDiscord {
|
|
daemon.jobs = append(daemon.jobs, func(app *appContext) { app.clearDiscord() })
|
|
}
|
|
if clearTelegram {
|
|
daemon.jobs = append(daemon.jobs, func(app *appContext) { app.clearTelegram() })
|
|
}
|
|
if clearMatrix {
|
|
daemon.jobs = append(daemon.jobs, func(app *appContext) { app.clearMatrix() })
|
|
}
|
|
|
|
return &daemon
|
|
}
|
|
|
|
func (rt *housekeepingDaemon) run() {
|
|
rt.app.info.Println("Invite daemon started")
|
|
for {
|
|
select {
|
|
case <-rt.ShutdownChannel:
|
|
rt.ShutdownChannel <- "Down"
|
|
return
|
|
case <-time.After(rt.period):
|
|
break
|
|
}
|
|
started := time.Now()
|
|
rt.app.storage.loadInvites()
|
|
|
|
for _, job := range rt.jobs {
|
|
job(rt.app)
|
|
}
|
|
|
|
finished := time.Now()
|
|
duration := finished.Sub(started)
|
|
rt.period = rt.Interval - duration
|
|
}
|
|
}
|
|
|
|
func (rt *housekeepingDaemon) Shutdown() {
|
|
rt.Stopped = true
|
|
rt.ShutdownChannel <- "Down"
|
|
<-rt.ShutdownChannel
|
|
close(rt.ShutdownChannel)
|
|
}
|