-
-
Notifications
You must be signed in to change notification settings - Fork 105
/
add.go
60 lines (47 loc) · 1.21 KB
/
add.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
package main
import (
"context"
"fmt"
"strings"
"github.com/sachaos/todoist/lib"
"github.com/urfave/cli/v2"
)
var priorityMapping = map[int]int{
1: 4,
2: 3,
3: 2,
4: 1,
}
func Add(c *cli.Context) error {
client := GetClient(c)
item := todoist.Item{}
if c.Args().Len() != 1 {
return fmt.Errorf("add command requires 1 positional argument for the task title, but got %v.", c.Args().Len())
}
item.Content = c.Args().First()
item.Priority = priorityMapping[c.Int("priority")]
projectName := c.String("project-name")
if projectName != "" {
projectId := client.Store.Projects.GetIDByName(projectName)
if projectId == "" {
return fmt.Errorf("Did not find a project named '%v'", projectName)
}
item.ProjectID = projectId
} else {
item.ProjectID = c.String("project-id")
}
item.LabelNames = func(str string) []string {
stringNames := strings.Split(str, ",")
names := []string{}
for _, stringName := range stringNames {
names = append(names, stringName)
}
return names
}(c.String("label-names"))
item.Due = &todoist.Due{String: c.String("date")}
item.AutoReminder = c.Bool("reminder")
if err := client.AddItem(context.Background(), item); err != nil {
return err
}
return Sync(c)
}