mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 16:59:12 +00:00

* feat: show new update banner * feat(http): add request logger * refactor: updates checker * feat: make update check optional * fix: empty releases * add toggle switch for update checks * feat: toggle updates check from settings * feat: toggle updates check from settings * feat: check on toggle enabled --------- Co-authored-by: soup <soup@r4tio.dev>
47 lines
1.2 KiB
Go
47 lines
1.2 KiB
Go
package scheduler
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/autobrr/autobrr/internal/domain"
|
|
"github.com/autobrr/autobrr/internal/notification"
|
|
"github.com/autobrr/autobrr/internal/update"
|
|
|
|
"github.com/rs/zerolog"
|
|
)
|
|
|
|
type CheckUpdatesJob struct {
|
|
Name string
|
|
Log zerolog.Logger
|
|
Version string
|
|
NotifSvc notification.Service
|
|
updateService *update.Service
|
|
|
|
lastCheckVersion string
|
|
}
|
|
|
|
func (j *CheckUpdatesJob) Run() {
|
|
newRelease, err := j.updateService.CheckUpdateAvailable(context.TODO())
|
|
if err != nil {
|
|
j.Log.Error().Err(err).Msg("could not check for new release")
|
|
return
|
|
}
|
|
|
|
if newRelease != nil {
|
|
// this is not persisted so this can trigger more than once
|
|
// lets check if we have different versions between runs
|
|
if newRelease.TagName != j.lastCheckVersion {
|
|
j.Log.Info().Msgf("a new release has been found: %v Consider updating.", newRelease.TagName)
|
|
|
|
j.NotifSvc.Send(domain.NotificationEventAppUpdateAvailable, domain.NotificationPayload{
|
|
Subject: "New update available!",
|
|
Message: newRelease.TagName,
|
|
Event: domain.NotificationEventAppUpdateAvailable,
|
|
Timestamp: time.Now(),
|
|
})
|
|
}
|
|
|
|
j.lastCheckVersion = newRelease.TagName
|
|
}
|
|
}
|