mirror of
https://github.com/safing/portmaster
synced 2025-09-06 20:49:13 +00:00
56 lines
1.3 KiB
Go
56 lines
1.3 KiB
Go
package base
|
|
|
|
import (
|
|
"errors"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/safing/portmaster/base/log"
|
|
"github.com/safing/portmaster/service/mgr"
|
|
)
|
|
|
|
const (
|
|
logTTL = 30 * 24 * time.Hour
|
|
logFileDir = "logs"
|
|
logFileSuffix = ".log"
|
|
)
|
|
|
|
func registerLogCleaner() {
|
|
_ = module.mgr.Delay("log cleaner", 15*time.Minute, logCleaner).Repeat(24 * time.Hour)
|
|
}
|
|
|
|
func logCleaner(_ *mgr.WorkerCtx) error {
|
|
ageThreshold := time.Now().Add(-logTTL)
|
|
|
|
return filepath.Walk(
|
|
filepath.Join(module.instance.DataDir(), logFileDir),
|
|
func(path string, info os.FileInfo, err error) error {
|
|
if err != nil {
|
|
if !errors.Is(err, os.ErrNotExist) {
|
|
log.Warningf("core: failed to access %s while deleting old log files: %s", path, err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
switch {
|
|
case !info.Mode().IsRegular():
|
|
// Only delete regular files.
|
|
case !strings.HasSuffix(path, logFileSuffix):
|
|
// Only delete files that end with the correct suffix.
|
|
case info.ModTime().After(ageThreshold):
|
|
// Only delete files that are older that the log TTL.
|
|
default:
|
|
// Delete log file.
|
|
err := os.Remove(path)
|
|
if err != nil {
|
|
log.Warningf("core: failed to delete old log file %s: %s", path, err)
|
|
} else {
|
|
log.Tracef("core: deleted old log file %s", path)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
})
|
|
}
|