2018-01-16 10:50:08 +01:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2018-01-16 13:02:35 +01:00
|
|
|
"encoding/json"
|
2018-01-16 10:50:08 +01:00
|
|
|
"fmt"
|
|
|
|
"github.com/jawher/mow.cli"
|
|
|
|
"os"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
func maybe(err error) {
|
|
|
|
if err != nil {
|
2018-01-16 12:06:20 +01:00
|
|
|
fmt.Printf("Error:\n%s\n", err)
|
2018-01-16 10:50:08 +01:00
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-17 08:44:25 +01:00
|
|
|
func start(path *string) func(*cli.Cmd) {
|
|
|
|
return func(cmd *cli.Cmd) {
|
|
|
|
cmd.Spec = "[OPTIONS] MESSAGE"
|
|
|
|
var (
|
|
|
|
duration = cmd.StringOpt("d duration", "25m", "duration of each stent")
|
2018-01-20 13:03:23 +01:00
|
|
|
stents = cmd.IntOpt("s stents", 4, "number of working stents")
|
2018-01-17 08:44:25 +01:00
|
|
|
message = cmd.StringArg("MESSAGE", "", "descriptive name of the given task")
|
2018-01-20 11:01:53 +01:00
|
|
|
tags = cmd.StringsOpt("t tag", []string{}, "tags associated with this task")
|
2018-01-17 08:44:25 +01:00
|
|
|
)
|
|
|
|
cmd.Action = func() {
|
|
|
|
parsed, err := time.ParseDuration(*duration)
|
|
|
|
maybe(err)
|
|
|
|
db, err := NewStore(*path)
|
|
|
|
maybe(err)
|
|
|
|
defer db.Close()
|
|
|
|
task := Task{
|
|
|
|
Message: *message,
|
2018-01-20 11:01:53 +01:00
|
|
|
Tags: *tags,
|
2018-01-20 13:03:23 +01:00
|
|
|
stents: *stents,
|
2018-01-17 08:44:25 +01:00
|
|
|
duration: parsed,
|
|
|
|
}
|
2018-01-20 13:03:23 +01:00
|
|
|
run(task, &I3{}, db)
|
2018-01-16 10:50:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-17 08:44:25 +01:00
|
|
|
func initialize(path *string) func(*cli.Cmd) {
|
|
|
|
return func(cmd *cli.Cmd) {
|
|
|
|
cmd.Spec = "[OPTIONS]"
|
|
|
|
cmd.Action = func() {
|
|
|
|
db, err := NewStore(*path)
|
|
|
|
maybe(err)
|
|
|
|
defer db.Close()
|
|
|
|
maybe(initDB(db))
|
|
|
|
}
|
2018-01-16 12:06:20 +01:00
|
|
|
}
|
|
|
|
}
|
2018-01-16 10:50:08 +01:00
|
|
|
|
2018-01-17 08:44:25 +01:00
|
|
|
func list(path *string) func(*cli.Cmd) {
|
|
|
|
return func(cmd *cli.Cmd) {
|
|
|
|
cmd.Action = func() {
|
|
|
|
db, err := NewStore(*path)
|
|
|
|
maybe(err)
|
|
|
|
defer db.Close()
|
|
|
|
tasks, err := db.ReadTasks()
|
|
|
|
maybe(err)
|
|
|
|
maybe(json.NewEncoder(os.Stdout).Encode(tasks))
|
|
|
|
}
|
2018-01-16 13:02:35 +01:00
|
|
|
}
|
|
|
|
}
|
2018-01-16 10:50:08 +01:00
|
|
|
|
2018-01-17 08:44:25 +01:00
|
|
|
func _delete(path *string) func(*cli.Cmd) {
|
2018-01-17 08:53:45 +01:00
|
|
|
return func(cmd *cli.Cmd) {
|
|
|
|
cmd.Spec = "[OPTIONS] TASK_ID"
|
|
|
|
var taskID = cmd.IntArg("TASK_ID", -1, "task to delete")
|
|
|
|
cmd.Action = func() {
|
|
|
|
db, err := NewStore(*path)
|
|
|
|
maybe(err)
|
|
|
|
defer db.Close()
|
|
|
|
maybe(db.DeleteTask(*taskID))
|
|
|
|
}
|
|
|
|
}
|
2018-01-17 08:44:25 +01:00
|
|
|
}
|
|
|
|
|
2018-01-16 10:50:08 +01:00
|
|
|
func main() {
|
|
|
|
app := cli.App("pomo", "Pomodoro CLI")
|
|
|
|
app.Spec = "[OPTIONS]"
|
2018-01-17 08:44:25 +01:00
|
|
|
var (
|
|
|
|
path = app.StringOpt("p path", defaultDBPath(), "path to the pomo state directory")
|
|
|
|
)
|
|
|
|
app.Command("start s", "start a new task", start(path))
|
|
|
|
app.Command("init", "initialize the sqlite database", initialize(path))
|
|
|
|
app.Command("list l", "list historical tasks", list(path))
|
|
|
|
app.Command("delete d", "delete a stored task", _delete(path))
|
2018-01-16 10:50:08 +01:00
|
|
|
app.Run(os.Args)
|
|
|
|
}
|