forked from VojtechVitek/go-trello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist.go
134 lines (116 loc) · 3.57 KB
/
list.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
/*
Copyright 2014 go-trello authors. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package trello
import (
"encoding/json"
"net/url"
"strconv"
"strings"
)
// List - Trello List Type
type List struct {
client *Client
ID string `json:"id"`
Name string `json:"name"`
Closed bool `json:"closed"`
IDBoard string `json:"idBoard"`
Pos float32 `json:"pos"`
cards []Card
}
// List - Get List by listID (string)
// - https://developer.atlassian.com/cloud/trello/rest/api-group-lists/#api-lists-id-get
func (c *Client) List(listID string) (list *List, err error) {
list = &List{}
body, err := c.Get("/lists/" + listID)
if err == nil {
err = parseList(body, list, c)
}
return
}
// Cards - Get Cards in a List
// - https://developer.atlassian.com/cloud/trello/rest/api-group-lists/#api-lists-id-cards-get
func (l *List) Cards() (cards []Card, err error) {
body, err := l.client.Get("/lists/" + l.ID + "/cards")
if err == nil {
cards, err = parseListCards(body, l.client)
}
return
}
// Actions - Get Actions for a List
// - https://developer.atlassian.com/cloud/trello/rest/api-group-lists/#api-lists-id-actions-get
func (l *List) Actions() (actions []Action, err error) {
body, err := l.client.Get("/lists/" + l.ID + "/actions")
if err == nil {
actions, err = parseListActions(body, l.client)
}
return
}
// AddCard creates with the attributes of the supplied Card struct
// https://developers.trello.com/advanced-reference/card#post-1-cards
func (l *List) AddCard(opts Card) (card *Card, err error) {
card = &Card{}
opts.IDList = l.ID
payload := url.Values{}
payload.Set("name", opts.Name)
payload.Set("desc", opts.Desc)
if opts.Pos == 0.0 {
payload.Set("pos", "bottom")
} else {
payload.Set("pos", strconv.FormatFloat(opts.Pos, 'g', -1, 64))
}
payload.Set("due", opts.Due)
payload.Set("idList", opts.IDList)
payload.Set("idMembers", strings.Join(opts.IDMembers, ","))
body, err := l.client.Post("/cards", payload)
if err == nil {
err = parseCard(body, card, l.client)
}
return
}
// Archive - Archive List
//If mode is true, list is archived, otherwise it's unarchived (returns to the board)
func (l *List) Archive(mode bool) (err error) {
payload := url.Values{}
payload.Set("value", strconv.FormatBool(mode))
body, err := l.client.Put("/lists/"+l.ID+"/closed", payload)
if err == nil {
err = parseList(body, l, l.client)
}
return
}
// Move - Move a List (Update a List)
// - https://developer.atlassian.com/cloud/trello/rest/api-group-lists/#api-lists-id-put
//pos can be "bottom", "top" or a positive number
func (l *List) Move(pos string) (err error) {
payload := url.Values{}
payload.Set("value", pos)
body, err := l.client.Put("/lists/"+l.ID+"/pos", payload)
if err == nil {
err = parseList(body, l, l.client)
}
return
}
func parseList(body []byte, list *List, client *Client) (err error) {
err = json.Unmarshal(body, &list)
if err == nil {
list.client = client
}
return
}
func parseListLists(body []byte, client *Client) (lists []List, err error) {
err = json.Unmarshal(body, &lists)
for i := range lists {
lists[i].client = client
}
return
}