stillbox/pkg/share/service.go

49 lines
628 B
Go

package share
import (
"context"
"time"
"github.com/rs/zerolog/log"
)
const (
PruneInterval = time.Hour * 4
)
type Service interface {
ShareStore() Store
Go(ctx context.Context)
}
type service struct {
Store
}
func (s *service) ShareStore() Store {
return s.Store
}
func (s *service) Go(ctx context.Context) {
tick := time.NewTicker(PruneInterval)
for {
select {
case <-tick.C:
err := s.Prune(ctx)
if err != nil {
log.Error().Err(err).Msg("share prune failed")
}
case <-ctx.Done():
tick.Stop()
return
}
}
}
func NewService() *service {
return &service{
Store: NewStore(),
}
}