forked from sachaos/todoist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
add.go
50 lines (40 loc) · 981 Bytes
/
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
package main
import (
"context"
"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().Present() {
return CommandFailed
}
item.Content = c.Args().First()
item.Priority = priorityMapping[c.Int("priority")]
item.ProjectID = c.String("project-id")
if item.ProjectID == "" {
item.ProjectID = client.Store.Projects.GetIDByName(c.String("project-name"))
}
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)
}