59 lines
1.2 KiB
Go
59 lines
1.2 KiB
Go
package routines
|
|
|
|
import (
|
|
"log/slog"
|
|
"time"
|
|
|
|
"github.com/aceberg/WatchYourLAN/internal/conf"
|
|
"github.com/aceberg/WatchYourLAN/internal/db"
|
|
"github.com/aceberg/WatchYourLAN/internal/models"
|
|
)
|
|
|
|
// HistoryTrim - routine for History
|
|
func HistoryTrim() {
|
|
|
|
go func() {
|
|
for {
|
|
trimHistory()
|
|
|
|
time.Sleep(time.Duration(1) * time.Hour) // Every hour
|
|
}
|
|
}()
|
|
}
|
|
|
|
func trimHistory() {
|
|
|
|
hours := conf.AppConfig.TrimHist
|
|
|
|
nowStr := time.Now().Format("2006-01-02 15:04:05") // This needed so all time is
|
|
now, _ := time.Parse("2006-01-02 15:04:05", nowStr) // in one format
|
|
nowMinus := now.Add(-time.Duration(hours) * time.Hour)
|
|
|
|
if conf.AppConfig.HistInDB {
|
|
histHosts = db.Select("history")
|
|
}
|
|
|
|
slog.Info("Removing all History before", "date", nowMinus.Format("2006-01-02 15:04:05"))
|
|
|
|
n := 0
|
|
newHistHosts := []models.Host{}
|
|
ids := []int{}
|
|
|
|
for _, hist := range histHosts {
|
|
date, _ := time.Parse("2006-01-02 15:04:05", hist.Date)
|
|
|
|
if date.Before(nowMinus) {
|
|
n = n + 1
|
|
if conf.AppConfig.HistInDB {
|
|
ids = append(ids, hist.ID)
|
|
}
|
|
} else {
|
|
newHistHosts = append(newHistHosts, hist)
|
|
}
|
|
}
|
|
|
|
db.DeleteList(ids)
|
|
histHosts = newHistHosts
|
|
|
|
slog.Info("Removed records from History", "n", n)
|
|
}
|