-
Notifications
You must be signed in to change notification settings - Fork 4
/
sections.go
370 lines (282 loc) · 9.12 KB
/
sections.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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
package todoist
import (
"context"
"github.com/google/uuid"
)
// SectionsService handles communication with the sections related
// methods of the Todoist API.
//
// Todoist API docs: https://developer.todoist.com/sync/v8/?shell#sections
type SectionsService service
// Section represents a Todoist section.
type Section struct {
// The ID of the section.
ID int `json:"id"`
// The name of the section.
Name string `json:"name"`
// Project that the section resides in.
ProjectID int `json:"project_id"`
// Legacy project ID for the project that the section resides in.
// (only shown for objects created before 1 April 2017)
LegacyProjectID *int `json:"legacy_project_id"`
// The order of the section. Defines the position of the section among all the sections in the project.
SectionOrder int `json:"section_order"`
// Whether the section's tasks are collapsed (a true or false value).
Collapsed bool `json:"collapsed"`
// A special ID for shared sections (a number or null if not set). Used internally and can be ignored.
SyncID *int `json:"sync_id"`
// Whether the section is marked as deleted (a true or false value).
IsDeleted bool `json:"is_deleted"`
// Whether the section is marked as archived (a true or false value).
IsArchived bool `json:"is_archived"`
// The date when the section was archived (or null if not archived).
DateArchived *string `json:"date_archived"`
// The date when the section was created.
DateAdded string `json:"date_added"`
}
func (s *SectionsService) List(ctx context.Context, syncToken string) ([]Section, ReadResponse, error) {
s.client.Logln("---------- Sections.List")
req, err := s.client.NewRequest(syncToken, []string{"sections"}, nil)
if err != nil {
return nil, ReadResponse{}, err
}
var readResponse ReadResponse
_, err = s.client.Do(ctx, req, &readResponse)
if err != nil {
return nil, readResponse, err
}
return readResponse.Sections, readResponse, nil
}
type AddSection struct {
// The name of the section.
Name string `json:"name"`
// The ID of the parent project.
ProjectID int `json:"project_id"`
// The order of the section. Defines the position of the section among all the sections in the project.
SectionOrder int `json:"section_order,omitempty"`
TempID string `json:"-"`
}
// Add a new section to a project.
func (s *SectionsService) Add(ctx context.Context, syncToken string, addSection AddSection) ([]Section, CommandResponse, error) {
s.client.Logln("---------- Sections.Add")
id := uuid.New().String()
tempID := addSection.TempID
if tempID == "" {
tempID = uuid.New().String()
}
addCommand := Command{
Type: "section_add",
Args: addSection,
UUID: id,
TempID: tempID,
}
commands := []Command{addCommand}
req, err := s.client.NewRequest(syncToken, []string{"sections"}, commands)
if err != nil {
return nil, CommandResponse{}, err
}
var commandResponse CommandResponse
_, err = s.client.Do(ctx, req, &commandResponse)
if err != nil {
return nil, commandResponse, err
}
return commandResponse.Sections, commandResponse, nil
}
type UpdateSection struct {
// The ID of the section.
ID string `json:"id"`
// The name of the section.
Name string `json:"name,omitempty"`
// Whether the section's tasks are collapsed (a true or false value).
Collapsed bool `json:"collapsed"`
TempID string `json:"-"`
}
// Updates section attributes.
func (s *SectionsService) Update(ctx context.Context, syncToken string, updateSection UpdateSection) ([]Section, CommandResponse, error) {
s.client.Logln("---------- Sections.Update")
id := uuid.New().String()
tempID := updateSection.TempID
if tempID == "" {
tempID = uuid.New().String()
}
updateCommand := Command{
Type: "section_update",
Args: updateSection,
UUID: id,
TempID: tempID,
}
commands := []Command{updateCommand}
req, err := s.client.NewRequest(syncToken, []string{"sections"}, commands)
if err != nil {
return nil, CommandResponse{}, err
}
var commandResponse CommandResponse
_, err = s.client.Do(ctx, req, &commandResponse)
if err != nil {
return nil, commandResponse, err
}
return commandResponse.Sections, commandResponse, nil
}
type MoveSection struct {
// The ID of the section.
ID string `json:"id"`
// ID of the destination project.
ProjectID string `json:"project_id,omitempty"`
TempID string `json:"-"`
}
// Move section to a different location.
func (s *SectionsService) Move(ctx context.Context, syncToken string, moveSection MoveSection) ([]Section, CommandResponse, error) {
s.client.Logln("---------- Sections.Move")
id := uuid.New().String()
tempID := moveSection.TempID
if tempID == "" {
tempID = uuid.New().String()
}
moveCommand := Command{
Type: "section_move",
Args: moveSection,
UUID: id,
TempID: tempID,
}
commands := []Command{moveCommand}
req, err := s.client.NewRequest(syncToken, []string{"sections"}, commands)
if err != nil {
return nil, CommandResponse{}, err
}
var commandResponse CommandResponse
_, err = s.client.Do(ctx, req, &commandResponse)
if err != nil {
return nil, commandResponse, err
}
return commandResponse.Sections, commandResponse, nil
}
type ReorderedSection struct {
// ID of the section to update.
ID string `json:"id"`
// The new order.
SectionOrder int `json:"section_order"`
}
type ReorderSections struct {
// An array of objects to update. Each object contains two attributes: id of the section to update and section_order, the new order.
Sections []ReorderedSection `json:"sections"`
TempID string `json:"-"`
}
// The command updates section_order properties of sections in bulk.
func (s *SectionsService) Reorder(ctx context.Context, syncToken string, reorderSections ReorderSections) ([]Section, CommandResponse, error) {
s.client.Logln("---------- Sections.Reorder")
id := uuid.New().String()
tempID := reorderSections.TempID
if tempID == "" {
tempID = uuid.New().String()
}
reorderCommand := Command{
Type: "section_reorder",
Args: reorderSections,
UUID: id,
TempID: tempID,
}
commands := []Command{reorderCommand}
req, err := s.client.NewRequest(syncToken, []string{"sections"}, commands)
if err != nil {
return nil, CommandResponse{}, err
}
var commandResponse CommandResponse
_, err = s.client.Do(ctx, req, &commandResponse)
if err != nil {
return nil, commandResponse, err
}
return commandResponse.Sections, commandResponse, nil
}
type DeleteSection struct {
// ID of the section to delete.
ID string `json:"id"`
TempID string `json:"-"`
}
// Delete a section and all its child tasks.
func (s *SectionsService) Delete(ctx context.Context, syncToken string, deleteSection DeleteSection) ([]Section, CommandResponse, error) {
s.client.Logln("---------- Sections.Delete")
id := uuid.New().String()
tempID := deleteSection.TempID
if tempID == "" {
tempID = uuid.New().String()
}
deleteCommand := Command{
Type: "section_delete",
Args: deleteSection,
UUID: id,
TempID: tempID,
}
commands := []Command{deleteCommand}
req, err := s.client.NewRequest(syncToken, []string{"sections"}, commands)
if err != nil {
return nil, CommandResponse{}, err
}
var commandResponse CommandResponse
_, err = s.client.Do(ctx, req, &commandResponse)
if err != nil {
return nil, commandResponse, err
}
return commandResponse.Sections, commandResponse, nil
}
type ArchiveSection struct {
// Section ID to archive.
ID string `json:"id"`
TempID string `json:"-"`
}
// Archive a section and all its child tasks.
func (s *SectionsService) Archive(ctx context.Context, syncToken string, archiveSection ArchiveSection) ([]Section, CommandResponse, error) {
s.client.Logln("---------- Sections.Archive")
id := uuid.New().String()
tempID := archiveSection.TempID
if tempID == "" {
tempID = uuid.New().String()
}
archiveCommand := Command{
Type: "section_archive",
Args: archiveSection,
UUID: id,
TempID: tempID,
}
commands := []Command{archiveCommand}
req, err := s.client.NewRequest(syncToken, []string{"sections"}, commands)
if err != nil {
return nil, CommandResponse{}, err
}
var commandResponse CommandResponse
_, err = s.client.Do(ctx, req, &commandResponse)
if err != nil {
return nil, commandResponse, err
}
return commandResponse.Sections, commandResponse, nil
}
type UnarchiveSection struct {
// Section ID to unarchive
ID string `json:"id"`
TempID string `json:"-"`
}
// This command is used to unarchive a section.
func (s *SectionsService) Unarchive(ctx context.Context, syncToken string, unarchiveSection UnarchiveSection) ([]Section, CommandResponse, error) {
s.client.Logln("---------- Sections.Unarchive")
id := uuid.New().String()
tempID := unarchiveSection.TempID
if tempID == "" {
tempID = uuid.New().String()
}
unarchiveCommand := Command{
Type: "section_unarchive",
Args: unarchiveSection,
UUID: id,
TempID: tempID,
}
commands := []Command{unarchiveCommand}
req, err := s.client.NewRequest(syncToken, []string{"sections"}, commands)
if err != nil {
return nil, CommandResponse{}, err
}
var commandResponse CommandResponse
_, err = s.client.Do(ctx, req, &commandResponse)
if err != nil {
return nil, commandResponse, err
}
return commandResponse.Sections, commandResponse, nil
}