2018-09-24 09:53:16 +02:00
|
|
|
package commands
|
|
|
|
|
|
|
|
import (
|
2019-06-03 22:58:15 +02:00
|
|
|
"context"
|
2019-05-14 16:04:17 +02:00
|
|
|
"time"
|
|
|
|
|
2019-05-06 23:18:10 +02:00
|
|
|
"github.com/photoprism/photoprism/internal/config"
|
2018-09-24 09:53:16 +02:00
|
|
|
"github.com/photoprism/photoprism/internal/photoprism"
|
2020-04-05 22:26:53 +02:00
|
|
|
"github.com/photoprism/photoprism/internal/service"
|
2018-09-24 09:53:16 +02:00
|
|
|
"github.com/urfave/cli"
|
|
|
|
)
|
|
|
|
|
2020-02-18 23:42:51 +01:00
|
|
|
// IndexCommand is used to register the index cli command
|
2018-09-24 09:53:16 +02:00
|
|
|
var IndexCommand = cli.Command{
|
|
|
|
Name: "index",
|
2020-01-31 15:29:06 +01:00
|
|
|
Usage: "Indexes media files in originals path",
|
2020-01-22 09:57:49 +01:00
|
|
|
Flags: indexFlags,
|
2018-09-24 09:53:16 +02:00
|
|
|
Action: indexAction,
|
|
|
|
}
|
|
|
|
|
2020-01-22 09:57:49 +01:00
|
|
|
var indexFlags = []cli.Flag{
|
|
|
|
cli.BoolFlag{
|
|
|
|
Name: "all, a",
|
2020-01-22 10:35:00 +01:00
|
|
|
Usage: "re-index all originals, including unchanged files",
|
2020-01-22 09:57:49 +01:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2020-02-18 23:42:51 +01:00
|
|
|
// indexAction indexes all photos in originals directory (photo library)
|
2018-11-17 06:21:39 +01:00
|
|
|
func indexAction(ctx *cli.Context) error {
|
2019-05-14 16:04:17 +02:00
|
|
|
start := time.Now()
|
|
|
|
|
2019-05-06 23:18:10 +02:00
|
|
|
conf := config.NewConfig(ctx)
|
2020-04-05 22:26:53 +02:00
|
|
|
service.SetConfig(conf)
|
2019-06-30 05:38:39 +02:00
|
|
|
|
2019-05-06 23:18:10 +02:00
|
|
|
if err := conf.CreateDirectories(); err != nil {
|
2019-01-15 14:00:42 +01:00
|
|
|
return err
|
2018-09-24 09:53:16 +02:00
|
|
|
}
|
|
|
|
|
2019-06-03 22:58:15 +02:00
|
|
|
cctx, cancel := context.WithCancel(context.Background())
|
|
|
|
defer cancel()
|
|
|
|
if err := conf.Init(cctx); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2018-09-24 09:53:16 +02:00
|
|
|
|
2019-06-03 22:58:15 +02:00
|
|
|
conf.MigrateDb()
|
2019-05-06 23:18:10 +02:00
|
|
|
log.Infof("indexing photos in %s", conf.OriginalsPath())
|
2018-09-24 09:53:16 +02:00
|
|
|
|
2019-07-02 23:01:56 +02:00
|
|
|
if conf.ReadOnly() {
|
|
|
|
log.Infof("read-only mode enabled")
|
|
|
|
}
|
|
|
|
|
2020-04-05 22:26:53 +02:00
|
|
|
ind := service.Index()
|
2018-09-24 09:53:16 +02:00
|
|
|
|
2020-01-22 10:35:00 +01:00
|
|
|
var opt photoprism.IndexOptions
|
|
|
|
|
2020-01-22 09:57:49 +01:00
|
|
|
if ctx.Bool("all") {
|
2020-01-22 10:35:00 +01:00
|
|
|
opt = photoprism.IndexOptionsAll()
|
2020-01-22 09:57:49 +01:00
|
|
|
} else {
|
2020-01-22 10:35:00 +01:00
|
|
|
opt = photoprism.IndexOptionsNone()
|
2020-01-22 09:57:49 +01:00
|
|
|
}
|
2018-09-24 09:53:16 +02:00
|
|
|
|
2020-01-22 10:35:00 +01:00
|
|
|
files := ind.Start(opt)
|
2019-05-14 16:04:17 +02:00
|
|
|
elapsed := time.Since(start)
|
|
|
|
|
|
|
|
log.Infof("indexed %d files in %s", len(files), elapsed)
|
2019-06-04 00:22:25 +02:00
|
|
|
|
2019-05-06 23:18:10 +02:00
|
|
|
conf.Shutdown()
|
2019-06-04 00:22:25 +02:00
|
|
|
|
2018-09-24 09:53:16 +02:00
|
|
|
return nil
|
|
|
|
}
|