mirror of
https://github.com/dnote/dnote
synced 2026-03-17 07:55:50 +01:00
* Implement basic full text search * Avoid lag in log while making network calls * Allow to restrict search by book name
134 lines
2.9 KiB
Go
134 lines
2.9 KiB
Go
package add
|
|
|
|
import (
|
|
"database/sql"
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/dnote/cli/core"
|
|
"github.com/dnote/cli/infra"
|
|
"github.com/dnote/cli/log"
|
|
"github.com/dnote/cli/utils"
|
|
"github.com/pkg/errors"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var reservedBookNames = []string{"trash", "conflicts"}
|
|
|
|
var content string
|
|
|
|
var example = `
|
|
* Open an editor to write content
|
|
dnote add git
|
|
|
|
* Skip the editor by providing content directly
|
|
dnote add git -c "time is a part of the commit hash"`
|
|
|
|
func preRun(cmd *cobra.Command, args []string) error {
|
|
if len(args) != 1 {
|
|
return errors.New("Incorrect number of argument")
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewCmd returns a new add command
|
|
func NewCmd(ctx infra.DnoteCtx) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "add <book>",
|
|
Short: "Add a note",
|
|
Aliases: []string{"a", "n", "new"},
|
|
Example: example,
|
|
PreRunE: preRun,
|
|
RunE: newRun(ctx),
|
|
}
|
|
|
|
f := cmd.Flags()
|
|
f.StringVarP(&content, "content", "c", "", "The new content for the note")
|
|
|
|
return cmd
|
|
}
|
|
|
|
func isReservedName(name string) bool {
|
|
for _, n := range reservedBookNames {
|
|
if name == n {
|
|
return true
|
|
}
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
func newRun(ctx infra.DnoteCtx) core.RunEFunc {
|
|
return func(cmd *cobra.Command, args []string) error {
|
|
bookName := args[0]
|
|
|
|
if isReservedName(bookName) {
|
|
return errors.Errorf("book name '%s' is reserved", bookName)
|
|
}
|
|
|
|
if content == "" {
|
|
fpath := core.GetDnoteTmpContentPath(ctx)
|
|
err := core.GetEditorInput(ctx, fpath, &content)
|
|
if err != nil {
|
|
return errors.Wrap(err, "Failed to get editor input")
|
|
}
|
|
}
|
|
|
|
if content == "" {
|
|
return errors.New("Empty content")
|
|
}
|
|
|
|
ts := time.Now().UnixNano()
|
|
err := writeNote(ctx, bookName, content, ts)
|
|
if err != nil {
|
|
return errors.Wrap(err, "Failed to write note")
|
|
}
|
|
|
|
log.Successf("added to %s\n", bookName)
|
|
fmt.Printf("\n------------------------content------------------------\n")
|
|
fmt.Printf("%s", content)
|
|
fmt.Printf("\n-------------------------------------------------------\n")
|
|
|
|
if err := core.CheckUpdate(ctx); err != nil {
|
|
log.Error(errors.Wrap(err, "automatically checking updates").Error())
|
|
}
|
|
|
|
return nil
|
|
}
|
|
}
|
|
|
|
func writeNote(ctx infra.DnoteCtx, bookLabel string, content string, ts int64) error {
|
|
tx, err := ctx.DB.Begin()
|
|
if err != nil {
|
|
return errors.Wrap(err, "beginning a transaction")
|
|
}
|
|
|
|
var bookUUID string
|
|
err = tx.QueryRow("SELECT uuid FROM books WHERE label = ?", bookLabel).Scan(&bookUUID)
|
|
if err == sql.ErrNoRows {
|
|
bookUUID = utils.GenerateUUID()
|
|
|
|
b := core.NewBook(bookUUID, bookLabel, 0, false, true)
|
|
err = b.Insert(tx)
|
|
if err != nil {
|
|
tx.Rollback()
|
|
return errors.Wrap(err, "creating the book")
|
|
}
|
|
} else if err != nil {
|
|
return errors.Wrap(err, "finding the book")
|
|
}
|
|
|
|
noteUUID := utils.GenerateUUID()
|
|
n := core.NewNote(noteUUID, bookUUID, content, ts, 0, 0, false, false, true)
|
|
|
|
err = n.Insert(tx)
|
|
if err != nil {
|
|
tx.Rollback()
|
|
return errors.Wrap(err, "creating the note")
|
|
}
|
|
|
|
tx.Commit()
|
|
|
|
return nil
|
|
}
|