forked from VojtechVitek/go-trello
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlist.go
136 lines (114 loc) · 3.1 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
135
136
/*
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"
)
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
}
func (c *Client) List(listId string) (list *List, err error) {
body, err := c.Get("/lists/" + listId)
if err != nil {
return
}
err = json.Unmarshal(body, &list)
list.client = c
return
}
func (l *List) Cards() (cards []Card, err error) {
if l.cards != nil {
return l.cards, nil
}
body, err := l.client.Get("/lists/" + l.Id + "/cards")
if err != nil {
return
}
err = json.Unmarshal(body, &cards)
for i := range cards {
cards[i].client = l.client
for j := range cards[i].Labels {
cards[i].Labels[j].client = l.client
}
}
l.cards = cards
return
}
func (l *List) FreshCards() (cards []Card, err error) {
l.cards = nil
return l.Cards()
}
func (l *List) Actions() (actions []Action, err error) {
body, err := l.client.Get("/lists/" + l.Id + "/actions")
if err != nil {
return
}
err = json.Unmarshal(body, &actions)
for i := range actions {
actions[i].client = 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, error) {
opts.IdList = l.Id
payload := url.Values{}
payload.Set("name", opts.Name)
payload.Set("desc", opts.Desc)
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 {
return nil, err
}
var card Card
if err = json.Unmarshal(body, &card); err != nil {
return nil, err
}
card.client = l.client
return &card, nil
}
//If mode is true, list is archived, otherwise it's unarchived (returns to the board)
func (l *List) Archive(mode bool) error {
payload := url.Values{}
payload.Set("value", strconv.FormatBool(mode))
_, err := l.client.Put("/lists/"+l.Id+"/closed", payload)
return err
}
//pos can be "bottom", "top" or a positive number
func (l *List) Move(pos string) (*List, error) {
payload := url.Values{}
payload.Set("value", pos)
body, err := l.client.Put("/lists/"+l.Id+"/pos", payload)
if err != nil {
return nil, err
}
var list List
if err = json.Unmarshal(body, &list); err != nil {
return nil, err
}
list.client = l.client
return &list, nil
}