kevinschoon-pomo/main.go

227 lines
5.7 KiB
Go
Raw Normal View History

2018-01-16 10:50:08 +01:00
package main
import (
"database/sql"
2018-01-16 13:02:35 +01:00
"encoding/json"
"fmt"
2018-01-16 10:50:08 +01:00
"os"
2018-01-20 18:20:01 +01:00
"sort"
2018-01-16 10:50:08 +01:00
"time"
cli "github.com/jawher/mow.cli"
2018-01-16 10:50:08 +01:00
)
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 (
2018-01-20 13:17:58 +01:00
duration = cmd.StringOpt("d duration", "25m", "duration of each stent")
pomodoros = cmd.IntOpt("p pomodoros", 4, "number of pomodoros")
message = cmd.StringArg("MESSAGE", "", "descriptive name of the given task")
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,
Tags: *tags,
NPomodoros: *pomodoros,
Duration: parsed,
2018-01-17 08:44:25 +01:00
}
maybe(db.With(func(tx *sql.Tx) error {
id, err := db.CreateTask(tx, *task)
if err != nil {
return err
}
task.ID = id
return nil
}))
2018-01-31 13:43:41 +01:00
runner, err := NewTaskRunner(task, db, NewXnotifier(*path+"/icon.png"))
maybe(err)
server, err := NewServer(*path+"/pomo.sock", runner)
maybe(err)
server.Start()
defer server.Stop()
2018-01-26 16:07:38 +01:00
runner.Start()
startUI(runner)
2018-01-16 10:50:08 +01:00
}
}
}
func create(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")
pomodoros = cmd.IntOpt("p pomodoros", 4, "number of pomodoros")
message = cmd.StringArg("MESSAGE", "", "descriptive name of the given task")
tags = cmd.StringsOpt("t tag", []string{}, "tags associated with this task")
)
cmd.Action = func() {
parsed, err := time.ParseDuration(*duration)
maybe(err)
db, err := NewStore(*path)
maybe(err)
defer db.Close()
task := &Task{
Message: *message,
Tags: *tags,
NPomodoros: *pomodoros,
Duration: parsed,
}
maybe(db.With(func(tx *sql.Tx) error {
taskId, err := db.CreateTask(tx, *task)
if err != nil {
return err
}
fmt.Println(taskId)
return nil
}))
}
}
}
func begin(path *string) func(*cli.Cmd) {
return func(cmd *cli.Cmd) {
cmd.Spec = "[OPTIONS] TASK_ID"
var (
taskId = cmd.IntArg("TASK_ID", -1, "ID of Pomodoro to begin")
)
cmd.Action = func() {
db, err := NewStore(*path)
maybe(err)
defer db.Close()
var task *Task
maybe(db.With(func(tx *sql.Tx) error {
read, err := db.ReadTask(tx, *taskId)
if err != nil {
return err
}
task = read
err = db.DeletePomodoros(tx, *taskId)
if err != nil {
return err
}
task.Pomodoros = []*Pomodoro{}
return nil
}))
runner, err := NewTaskRunner(task, db, NewXnotifier(*path+"/icon.png"))
maybe(err)
server, err := NewServer(*path+"/pomo.sock", runner)
maybe(err)
server.Start()
defer server.Stop()
runner.Start()
startUI(runner)
}
}
}
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) {
2018-01-20 17:51:27 +01:00
cmd.Spec = "[OPTIONS]"
2018-01-20 18:20:01 +01:00
var (
asJSON = cmd.BoolOpt("json", false, "output task history as JSON")
assend = cmd.BoolOpt("assend", false, "sort tasks assending in age")
all = cmd.BoolOpt("a all", true, "output all tasks")
limit = cmd.IntOpt("n limit", 0, "limit the number of results by n")
duration = cmd.StringOpt("d duration", "24h", "show tasks within this duration")
2018-01-20 18:20:01 +01:00
)
2018-01-17 08:44:25 +01:00
cmd.Action = func() {
duration, err := time.ParseDuration(*duration)
maybe(err)
2018-01-17 08:44:25 +01:00
db, err := NewStore(*path)
maybe(err)
defer db.Close()
maybe(db.With(func(tx *sql.Tx) error {
tasks, err := db.ReadTasks(tx)
maybe(err)
if *assend {
sort.Sort(sort.Reverse(ByID(tasks)))
}
if !*all {
tasks = After(time.Now().Add(-duration), tasks)
}
if *limit > 0 && (len(tasks) > *limit) {
tasks = tasks[0:*limit]
}
if *asJSON {
maybe(json.NewEncoder(os.Stdout).Encode(tasks))
return nil
}
config, err := NewConfig(*path + "/config.json")
maybe(err)
summerizeTasks(config, tasks)
return nil
}))
2018-01-17 08:44:25 +01:00
}
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.With(func(tx *sql.Tx) error {
return db.DeleteTask(tx, *taskID)
}))
2018-01-17 08:53:45 +01:00
}
}
2018-01-17 08:44:25 +01:00
}
func _status(path *string) func(*cli.Cmd) {
return func(cmd *cli.Cmd) {
cmd.Spec = "[OPTIONS]"
cmd.Action = func() {
client, err := NewClient(*path + "/pomo.sock")
if err != nil {
outputStatus(Status{})
return
}
defer client.Close()
status, err := client.Status()
maybe(err)
outputStatus(*status)
}
}
}
2018-01-16 10:50:08 +01:00
func main() {
app := cli.App("pomo", "Pomodoro CLI")
2019-01-25 06:42:38 +01:00
app.LongDesc = "Pomo helps you track what you did, how long it took you to do it, and how much effort you expect it to take."
2018-01-16 10:50:08 +01:00
app.Spec = "[OPTIONS]"
2018-01-17 08:44:25 +01:00
var (
2018-01-20 17:51:27 +01:00
path = app.StringOpt("p path", defaultConfigPath(), "path to the pomo config directory")
2018-01-17 08:44:25 +01:00
)
2018-01-21 16:38:17 +01:00
app.Version("v version", Version)
2018-01-17 08:44:25 +01:00
app.Command("start s", "start a new task", start(path))
app.Command("init", "initialize the sqlite database", initialize(path))
2019-01-13 11:59:28 +01:00
app.Command("create c", "create a new task without starting", create(path))
app.Command("begin b", "begin requested pomodoro", begin(path))
2018-01-17 08:44:25 +01:00
app.Command("list l", "list historical tasks", list(path))
app.Command("delete d", "delete a stored task", _delete(path))
app.Command("status st", "output the current status", _status(path))
2018-01-16 10:50:08 +01:00
app.Run(os.Args)
}