This repository has been archived by the owner on Apr 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 59
/
card.go
190 lines (167 loc) · 5.42 KB
/
card.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
/*
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"
)
type Card struct {
client *Client
Id string `json:"id"`
Name string `json:"name"`
Email string `json:"email"`
IdShort int `json:"idShort"`
IdAttachmentCover string `json:"idAttachmentCover"`
IdCheckLists []string `json:"idCheckLists"`
IdBoard string `json:"idBoard"`
IdList string `json:"idList"`
IdMembers []string `json:"idMembers"`
IdMembersVoted []string `json:"idMembersVoted"`
ManualCoverAttachment bool `json:"manualCoverAttachment"`
Closed bool `json:"closed"`
Pos float64 `json:"pos"`
ShortLink string `json:"shortLink"`
DateLastActivity string `json:"dateLastActivity"`
ShortUrl string `json:"shortUrl"`
Subscribed bool `json:"subscribed"`
Url string `json:"url"`
Due string `json:"due"`
Desc string `json:"desc"`
DescData struct {
Emoji struct{} `json:"emoji"`
} `json:"descData"`
CheckItemStates []struct {
IdCheckItem string `json:"idCheckItem"`
State string `json:"state"`
} `json:"checkItemStates"`
Badges struct {
Votes int `json:"votes"`
ViewingMemberVoted bool `json:"viewingMemberVoted"`
Subscribed bool `json:"subscribed"`
Fogbugz string `json:"fogbugz"`
CheckItems int `json:"checkItems"`
CheckItemsChecked int `json:"checkItemsChecked"`
Comments int `json:"comments"`
Attachments int `json:"attachments"`
Description bool `json:"description"`
Due string `json:"due"`
} `json:"badges"`
Labels []struct {
Color string `json:"color"`
Name string `json:"name"`
} `json:"labels"`
}
func (c *Client) Card(CardId string) (card *Card, err error) {
body, err := c.Get("/card/" + CardId)
if err != nil {
return
}
err = json.Unmarshal(body, &card)
card.client = c
return
}
func (c *Card) Checklists() (checklists []Checklist, err error) {
body, err := c.client.Get("/card/" + c.Id + "/checklists")
if err != nil {
return
}
err = json.Unmarshal(body, &checklists)
for i := range checklists {
list := &checklists[i]
list.client = c.client
for i := range list.CheckItems {
item := &list.CheckItems[i]
item.client = c.client
item.listID = list.Id
}
}
return
}
func (c *Card) Members() (members []Member, err error) {
body, err := c.client.Get("/cards/" + c.Id + "/members")
if err != nil {
return
}
err = json.Unmarshal(body, &members)
for i := range members {
members[i].client = c.client
}
return
}
func (c *Card) Attachments() (attachments []Attachment, err error) {
body, err := c.client.Get("/cards/" + c.Id + "/attachments")
if err != nil {
return
}
err = json.Unmarshal(body, &attachments)
for i := range attachments {
attachments[i].client = c.client
}
return
}
// Attachment will return the specified attachment on the card
// https://developers.trello.com/advanced-reference/card#get-1-cards-card-id-or-shortlink-attachments-idattachment
func (c *Card) Attachment(attachmentId string) (*Attachment, error) {
body, err := c.client.Get("/cards/" + c.Id + "/attachments/" + attachmentId)
if err != nil {
return nil, err
}
attachment := &Attachment{}
err = json.Unmarshal(body, attachment)
attachment.client = c.client
return attachment, err
}
func (c *Card) Actions() (actions []Action, err error) {
body, err := c.client.Get("/cards/" + c.Id + "/actions")
if err != nil {
return
}
err = json.Unmarshal(body, &actions)
for i := range actions {
actions[i].client = c.client
}
return
}
// AddChecklist will add a checklist to the card.
// https://developers.trello.com/advanced-reference/card#post-1-cards-card-id-or-shortlink-checklists
func (c *Card) AddChecklist(name string) (*Checklist, error) {
newList := &Checklist{}
payload := url.Values{}
payload.Set("name", name)
body, err := c.client.Post("/cards/"+c.Id+"/checklists", payload)
if err != nil {
return nil, err
}
if err = json.Unmarshal(body, newList); err != nil {
return nil, err
}
newList.client = c.client
// the new list has no items, no need to walk those adding client
return newList, err
}
// AddComment will add a new comment to the card
// https://developers.trello.com/advanced-reference/card#post-1-cards-card-id-or-shortlink-actions-comments
func (c *Card) AddComment(text string) (*Action, error) {
newAction := &Action{}
payload := url.Values{}
payload.Set("text", text)
body, err := c.client.Post("/cards/"+c.Id+"/actions/comments", payload)
if err != nil {
return nil, err
}
if err = json.Unmarshal(body, newAction); err != nil {
return nil, err
}
newAction.client = c.client
return newAction, nil
}