Files
photoprism/internal/workers/auto/index.go
2024-07-02 08:03:30 +02:00

59 lines
1.2 KiB
Go

package auto
import (
"sync"
"time"
"github.com/photoprism/photoprism/internal/api"
"github.com/photoprism/photoprism/internal/entity"
"github.com/photoprism/photoprism/internal/mutex"
"github.com/photoprism/photoprism/internal/photoprism/get"
"github.com/photoprism/photoprism/internal/workers"
)
var autoIndex = time.Time{}
var indexMutex = sync.Mutex{}
// ResetIndex resets the auto index trigger time.
func ResetIndex() {
indexMutex.Lock()
defer indexMutex.Unlock()
autoIndex = time.Time{}
}
// ShouldIndex sets the auto index trigger to the current time.
func ShouldIndex() {
indexMutex.Lock()
defer indexMutex.Unlock()
autoIndex = time.Now()
}
// mustIndex tests if the index must be updated.
func mustIndex(delay time.Duration) bool {
if delay.Seconds() <= 0 {
return false
}
indexMutex.Lock()
defer indexMutex.Unlock()
return !autoIndex.IsZero() && autoIndex.Sub(time.Now()) < -1*delay && !mutex.IndexWorker.Running()
}
// Index starts indexing originals e.g. after WebDAV uploads.
func Index() (err error) {
if mutex.IndexWorker.Running() {
return nil
}
api.RemoveFromFolderCache(entity.RootOriginals)
err = workers.NewIndex(get.Config()).Start()
api.UpdateClientConfig()
return err
}