package api import ( "fmt" "net/http" "path/filepath" "time" "github.com/gin-gonic/gin" "github.com/photoprism/photoprism/internal/config" "github.com/photoprism/photoprism/internal/event" "github.com/photoprism/photoprism/internal/photoprism" ) var indexer *photoprism.Indexer func initIndexer(conf *config.Config) { if indexer != nil { return } tensorFlow := photoprism.NewTensorFlow(conf) indexer = photoprism.NewIndexer(conf, tensorFlow) } // POST /api/v1/index func Index(router *gin.RouterGroup, conf *config.Config) { router.POST("/index", func(c *gin.Context) { if Unauthorized(c, conf) { c.AbortWithStatusJSON(http.StatusUnauthorized, ErrUnauthorized) return } start := time.Now() path := conf.OriginalsPath() event.Info(fmt.Sprintf("indexing photos in \"%s\"", filepath.Base(path))) initIndexer(conf) indexer.IndexAll() elapsed := int(time.Since(start).Seconds()) event.Success(fmt.Sprintf("indexing completed in %d s", elapsed)) event.Publish("index.completed", event.Data{"path": path, "seconds": elapsed}) c.JSON(http.StatusOK, gin.H{"message": fmt.Sprintf("indexing completed in %d s", elapsed)}) }) }