diff options
author | 2022-06-30 12:22:10 +0200 | |
---|---|---|
committer | 2022-06-30 12:22:10 +0200 | |
commit | 9e7d022a06779a03e3eaaadad6cc33423f46892b (patch) | |
tree | 7c13c5af98fba382fc75c1dc195bdf0cc9cdd905 /internal/processing/admin/mediaprune.go | |
parent | [feature] Use default instance thumbnail if instance account header not set (... (diff) | |
download | gotosocial-9e7d022a06779a03e3eaaadad6cc33423f46892b.tar.xz |
[feature] Cleanup unattached local media (#680)
* add localUnattached db function
* add parseOlderThan util function
* add pruneunusedlocalattachments to media manager
* add unusedlocal pruning to schedule + admin call
* set number of days to keep as a const
* fix test
Diffstat (limited to 'internal/processing/admin/mediaprune.go')
-rw-r--r-- | internal/processing/admin/mediaprune.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/internal/processing/admin/mediaprune.go b/internal/processing/admin/mediaprune.go index 0e6abe028..1c3398b78 100644 --- a/internal/processing/admin/mediaprune.go +++ b/internal/processing/admin/mediaprune.go @@ -42,6 +42,15 @@ func (p *processor) MediaPrune(ctx context.Context, mediaRemoteCacheDays int) gt }() go func() { + pruned, err := p.mediaManager.PruneUnusedLocalAttachments(ctx) + if err != nil { + logrus.Errorf("MediaPrune: error pruning unused local cache: %s", err) + } else { + logrus.Infof("MediaPrune: pruned %d unused local cache entries", pruned) + } + }() + + go func() { pruned, err := p.mediaManager.PruneAllMeta(ctx) if err != nil { logrus.Errorf("MediaPrune: error pruning meta: %s", err) |