From 94f062e036086e1e7a6935df7450631aaa8e9a7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=83=9E=E3=83=AA=E3=82=A6=E3=82=B9?= Date: Sat, 17 Oct 2020 21:14:49 +0100 Subject: [PATCH] Implemented entry command --- z/entryCmd.go | 78 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 z/entryCmd.go diff --git a/z/entryCmd.go b/z/entryCmd.go new file mode 100644 index 0000000..17cef72 --- /dev/null +++ b/z/entryCmd.go @@ -0,0 +1,78 @@ +package z + +import ( + "os" + "fmt" + "strings" + "github.com/spf13/cobra" +) + +var entryCmd = &cobra.Command{ + Use: "entry ([flags]) [id]", + Short: "Display or update activity", + Long: "Display or update tracked activity.", + Args: cobra.ExactArgs(1), + Run: func(cmd *cobra.Command, args []string) { + user := GetCurrentUser() + id := args[0] + + entry, err := database.GetEntry(user, id) + if err != nil { + fmt.Printf("%s %+v\n", CharError, err) + os.Exit(1) + } + + if begin != "" || finish != "" || project != "" || notes != "" || task != "" { + tmpEntry, err := NewEntry(entry.ID, begin, finish, project, task, user) + if err != nil { + fmt.Printf("%s %+v\n", CharError, err) + os.Exit(1) + } + + if begin != "" { + entry.Begin = tmpEntry.Begin + } + + if finish != "" { + entry.Finish = tmpEntry.Finish + } + + if project != "" { + entry.Project = tmpEntry.Project + } + + if task != "" { + entry.Task = tmpEntry.Task + } + + if notes != "" { + entry.Notes = strings.Replace(notes, "\\n", "\n", -1) + } + + _, err = database.UpdateEntry(user, entry) + if err != nil { + fmt.Printf("%s %+v\n", CharError, err) + os.Exit(1) + } + } + + fmt.Printf("%s %s\n", CharInfo, entry.GetOutput(true)) + return + }, +} + +func init() { + rootCmd.AddCommand(entryCmd) + entryCmd.Flags().StringVarP(&begin, "begin", "b", "", "Update time the activity began at\n\nEither in the formats 16:00 / 4:00PM \nor relative to the current time, \ne.g. -0:15 (now minus 15 minutes), +1.50 (now plus 1:30h).") + entryCmd.Flags().StringVarP(&finish, "finish", "s", "", "Update time the activity finished at\n\nEither in the formats 16:00 / 4:00PM \nor relative to the current time, \ne.g. -0:15 (now minus 15 minutes), +1.50 (now plus 1:30h).\nMust be after --begin time.") + entryCmd.Flags().StringVarP(&project, "project", "p", "", "Update activity project") + entryCmd.Flags().StringVarP(¬es, "notes", "n", "", "Update activity notes") + entryCmd.Flags().StringVarP(&task, "task", "t", "", "Update activity task") + + var err error + database, err = InitDatabase() + if err != nil { + fmt.Printf("%s %+v\n", CharError, err) + os.Exit(1) + } +}