-
-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathadd.go
More file actions
79 lines (63 loc) · 1.75 KB
/
Copy pathadd.go
File metadata and controls
79 lines (63 loc) · 1.75 KB
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
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")
}
labelNames := c.String("label-names")
if labelNames != "" {
stringNames := strings.Split(labelNames, ",")
names := []string{}
for _, stringName := range stringNames {
names = append(names, strings.TrimSpace(stringName))
}
item.LabelNames = names
}
sectionName := c.String("section-name")
if sectionName != "" {
sectionID := client.Store.Sections.GetIDByName(sectionName, item.ProjectID)
if sectionID == "" {
return fmt.Errorf("Did not find a section named '%v'", sectionName)
}
item.SectionID = sectionID
} else if c.String("section-id") != "" {
item.SectionID = c.String("section-id")
}
item.Description = c.String("description")
item.Due = &todoist.Due{String: c.String("date")}
if c.IsSet("deadline") {
deadlineDate := c.String("deadline")
item.Deadline = &todoist.Deadline{Date: deadlineDate}
}
item.AutoReminder = c.Bool("reminder")
if err := client.AddItem(context.Background(), item); err != nil {
return err
}
return Sync(c)
}