-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcmd.go
233 lines (210 loc) · 5.64 KB
/
cmd.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
package main
import (
"encoding/json"
"fmt"
"io"
"strconv"
"strings"
"time"
"github.com/peterh/liner"
)
type CommandFunc func(stdout io.Writer, db *JSONDb, line *liner.State, cmdLine string)
type CommandHandler struct {
Name string
Desc string
Exec CommandFunc
}
var commands = []CommandHandler{}
func init() {
commands = []CommandHandler{
{"help", "help <cmd> show help of a command", help},
{"show", "Show specific task by id", showTask},
{"list", "List task by status task and search criteria", listTasks},
{"addtag", "Add a tag to a task", addTag},
{"rmtag", "Remove a tag to a task", rmTag},
{"add", "Add a task", addTask},
{"json", "Print all tasks in json", printJSON},
{"save", "Save the database", save},
{"recomputeIds", "Recompute id for all tasks. Warning! this will change all ids.", recomputeIds},
{"done", "Set task status to done", done},
{"open", "Set task status to open", open},
}
}
func execCommand(stdout io.Writer, db *JSONDb, line *liner.State, cmdLine string) {
for _, cmd := range commands {
if cmdLine == cmd.Name || strings.HasPrefix(cmdLine, cmd.Name+" ") {
cmd.Exec(stdout, db, line, cmdLine)
return
}
}
fmt.Println("type help. Unknown command ", cmdLine)
}
func tokenize(cmdLine string) []string {
args := strings.Split(strings.TrimSpace(cmdLine), " ")
for i, arg := range args {
args[i] = strings.TrimSpace(arg)
}
return args
}
func help(stdout io.Writer, db *JSONDb, line *liner.State, cmdLine string) {
cmdArgs := tokenize(cmdLine)
for _, cmd := range commands {
if len(cmdArgs) == 1 || cmdArgs[1] == cmd.Name {
fmt.Printf("%s:\n\t%s\n", cmd.Name, cmd.Desc)
}
}
}
func showTask(stdout io.Writer, db *JSONDb, line *liner.State, cmdLine string) {
cmdArgs := tokenize(cmdLine)
id, err := strconv.Atoi(cmdArgs[1])
if err != nil {
fmt.Println("First arg need to be an integer")
return
}
task := findByID(db.Tasks, id)
// Print result
if task != nil {
fmt.Fprintln(stdout, task.AnsiString())
} else {
fmt.Printf("Can't find the task %d\n", id)
}
}
func listTasks(stdout io.Writer, db *JSONDb, line *liner.State, cmdLine string) {
cmdArgs := tokenize(cmdLine)
// Filter
filteredTasks := db.Tasks
if len(cmdArgs) > 1 {
status := strings.Split(cmdArgs[1], ",")
filteredTasks = FilterByStatus(filteredTasks, status)
}
if len(cmdArgs) > 2 {
tags := strings.Split(cmdArgs[2], ",")
filteredTasks = FilterByTags(filteredTasks, tags)
}
if len(cmdArgs) > 3 {
search := cmdArgs[3]
filteredTasks = FilterByText(filteredTasks, search)
}
// Print result
for _, task := range filteredTasks {
fmt.Fprintln(stdout, task.AnsiString())
}
fmt.Printf("%d tasks.\n", len(filteredTasks))
}
func addTask(stdout io.Writer, db *JSONDb, line *liner.State, cmdLine string) {
var task Task
task.ID = db.GenerateID()
task.Status = "open"
task.Created = time.Now().UnixNano() / 1000000
if len(cmdLine) > 4 {
task.Text = cmdLine[4:]
} else {
text, err := line.Prompt("text:")
if err != nil {
fmt.Println(err)
return
}
task.Text = text
}
tagStr, err := line.Prompt("tags:")
if err != nil {
fmt.Println(err)
return
}
task.Tags = strings.Split(tagStr, ",")
db.Tasks = append(db.Tasks, task)
fmt.Printf("Task %d created\n", task.ID)
}
func done(stdout io.Writer, db *JSONDb, line *liner.State, cmdLine string) {
cmdArgs := tokenize(cmdLine)
if len(cmdArgs) == 2 {
id, err := strconv.Atoi(cmdArgs[1])
if err != nil {
fmt.Println("First arg need to be an integer")
return
}
task := findByID(db.Tasks, id)
task.Status = "done"
// Print result
fmt.Fprintln(stdout, task.AnsiString())
} else {
fmt.Println("You need to specify task id")
}
}
func open(stdout io.Writer, db *JSONDb, line *liner.State, cmdLine string) {
cmdArgs := tokenize(cmdLine)
if len(cmdArgs) == 2 {
id, err := strconv.Atoi(cmdArgs[1])
if err != nil {
fmt.Println("First arg need to be an integer")
return
}
task := findByID(db.Tasks, id)
task.Status = "done"
// Print result
fmt.Fprintln(stdout, task.AnsiString())
} else {
fmt.Println("You need to specify task id")
}
}
func addTag(stdout io.Writer, db *JSONDb, line *liner.State, cmdLine string) {
cmdArgs := tokenize(cmdLine)
if len(cmdArgs) == 3 {
id, err := strconv.Atoi(cmdArgs[1])
if err != nil {
fmt.Println("First arg need to be an integer")
return
}
task := findByID(db.Tasks, id)
task.Tags = append(task.Tags, cmdArgs[2])
// Print result
fmt.Fprintln(stdout, task.AnsiString())
} else {
fmt.Println("You need to specify task id")
}
}
func rmTag(stdout io.Writer, db *JSONDb, line *liner.State, cmdLine string) {
cmdArgs := tokenize(cmdLine)
if len(cmdArgs) == 3 {
id, err := strconv.Atoi(cmdArgs[1])
if err != nil {
fmt.Println("First arg need to be an integer")
return
}
task := findByID(db.Tasks, id)
foundIndex := len(task.Tags)
for i, tag := range task.Tags {
if tag == cmdArgs[2] {
foundIndex = i
break
}
}
if foundIndex < len(task.Tags) {
// delete tag
task.Tags = append(task.Tags[:foundIndex], task.Tags[foundIndex+1:]...)
}
// Print result
fmt.Fprintln(stdout, task.AnsiString())
} else {
fmt.Println("You need to specify task id")
}
}
func save(stdout io.Writer, db *JSONDb, line *liner.State, cmdLine string) {
backupDatabase(dbPath, "_bak")
saveDatabase(dbPath, db)
}
func printJSON(stdout io.Writer, db *JSONDb, line *liner.State, cmdLine string) {
result, err := json.MarshalIndent(db, "", " ")
if err != nil {
fmt.Println(err)
return
}
fmt.Fprintln(stdout, string(result))
}
func recomputeIds(stdout io.Writer, db *JSONDb, line *liner.State, cmdLine string) {
count := 1
for i := range db.Tasks {
db.Tasks[i].ID = count
count++
}
}