forked from VojtechVitek/go-trello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
list.go
96 lines (80 loc) · 2.21 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
/*
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"`
}
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) {
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
}
return
}
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(float64(opts.Pos), 'f', 1, 32))
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
}