mirror of
https://github.com/mickael-menu/zk
synced 2024-11-07 15:20:21 +00:00
35 lines
776 B
Go
35 lines
776 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/mickael-menu/zk/adapter/sqlite"
|
|
"github.com/mickael-menu/zk/core/note"
|
|
"github.com/mickael-menu/zk/core/zk"
|
|
)
|
|
|
|
// Index indexes the content of all the notes in the slip box.
|
|
type Index struct {
|
|
Directory string `arg optional type:"path" default:"." help:"Directory containing the notes to index"`
|
|
}
|
|
|
|
func (cmd *Index) Run(container *Container) error {
|
|
zk, err := zk.Open(".")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
dir, err := zk.RequireDirAt(cmd.Directory)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
db, err := container.Database(zk.DBPath())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return db.WithTransaction(func(tx sqlite.Transaction) error {
|
|
notes := sqlite.NewNoteDAO(tx, container.Logger)
|
|
return note.Index(*dir, notes, container.Logger)
|
|
})
|
|
}
|