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
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
|
package api
import (
"context"
"encoding/json"
"fmt"
"io"
"net/http"
"net/url"
"sort"
"strings"
"sync"
"time"
"task-dashboard/internal/models"
)
const (
trelloBaseURL = "https://api.trello.com/1"
)
// TrelloClient handles interactions with the Trello API
type TrelloClient struct {
apiKey string
token string
baseURL string
httpClient *http.Client
}
// NewTrelloClient creates a new Trello API client
func NewTrelloClient(apiKey, token string) *TrelloClient {
return &TrelloClient{
apiKey: apiKey,
token: token,
baseURL: trelloBaseURL,
httpClient: &http.Client{
Timeout: 30 * time.Second,
},
}
}
// trelloBoardResponse represents a board from the API
type trelloBoardResponse struct {
ID string `json:"id"`
Name string `json:"name"`
}
// trelloCardResponse represents a card from the API
type trelloCardResponse struct {
ID string `json:"id"`
Name string `json:"name"`
IDList string `json:"idList"`
Due *string `json:"due"`
URL string `json:"url"`
Desc string `json:"desc"`
IDBoard string `json:"idBoard"`
}
// trelloListResponse represents a list from the API
type trelloListResponse struct {
ID string `json:"id"`
Name string `json:"name"`
}
// GetBoards fetches all boards for the authenticated user
func (c *TrelloClient) GetBoards(ctx context.Context) ([]models.Board, error) {
params := url.Values{}
params.Set("key", c.apiKey)
params.Set("token", c.token)
params.Set("filter", "open")
params.Set("fields", "id,name") // Only fetch required fields
reqURL := fmt.Sprintf("%s/members/me/boards?%s", c.baseURL, params.Encode())
req, err := http.NewRequestWithContext(ctx, "GET", reqURL, nil)
if err != nil {
return nil, fmt.Errorf("failed to create request: %w", err)
}
resp, err := c.httpClient.Do(req)
if err != nil {
return nil, fmt.Errorf("failed to fetch boards: %w", err)
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
body, _ := io.ReadAll(resp.Body)
return nil, fmt.Errorf("trello API error (status %d): %s", resp.StatusCode, string(body))
}
var apiBoards []trelloBoardResponse
if err := json.NewDecoder(resp.Body).Decode(&apiBoards); err != nil {
return nil, fmt.Errorf("failed to decode response: %w", err)
}
// Convert to our model
boards := make([]models.Board, 0, len(apiBoards))
for _, apiBoard := range apiBoards {
board := models.Board{
ID: apiBoard.ID,
Name: apiBoard.Name,
Cards: []models.Card{}, // Will be populated by GetCards
}
boards = append(boards, board)
}
return boards, nil
}
// GetCards fetches all cards for a specific board
func (c *TrelloClient) GetCards(ctx context.Context, boardID string) ([]models.Card, error) {
params := url.Values{}
params.Set("key", c.apiKey)
params.Set("token", c.token)
params.Set("filter", "visible")
params.Set("fields", "id,name,idList,due,url,idBoard") // Only fetch required fields
reqURL := fmt.Sprintf("%s/boards/%s/cards?%s", c.baseURL, boardID, params.Encode())
req, err := http.NewRequestWithContext(ctx, "GET", reqURL, nil)
if err != nil {
return nil, fmt.Errorf("failed to create request: %w", err)
}
resp, err := c.httpClient.Do(req)
if err != nil {
return nil, fmt.Errorf("failed to fetch cards: %w", err)
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
body, _ := io.ReadAll(resp.Body)
return nil, fmt.Errorf("trello API error (status %d): %s", resp.StatusCode, string(body))
}
var apiCards []trelloCardResponse
if err := json.NewDecoder(resp.Body).Decode(&apiCards); err != nil {
return nil, fmt.Errorf("failed to decode response: %w", err)
}
// Fetch lists to get list names
lists, err := c.getLists(ctx, boardID)
listMap := make(map[string]string)
if err == nil {
// Build map of list ID to name
for _, list := range lists {
listMap[list.ID] = list.Name
}
}
// Convert to our model
cards := make([]models.Card, 0, len(apiCards))
for _, apiCard := range apiCards {
card := models.Card{
ID: apiCard.ID,
Name: apiCard.Name,
ListID: apiCard.IDList,
ListName: listMap[apiCard.IDList],
URL: apiCard.URL,
}
// Parse due date if present
if apiCard.Due != nil && *apiCard.Due != "" {
dueDate, err := time.Parse(time.RFC3339, *apiCard.Due)
if err == nil {
card.DueDate = &dueDate
}
}
cards = append(cards, card)
}
return cards, nil
}
// getLists fetches lists for a board
func (c *TrelloClient) getLists(ctx context.Context, boardID string) ([]models.List, error) {
params := url.Values{}
params.Set("key", c.apiKey)
params.Set("token", c.token)
params.Set("fields", "id,name") // Only fetch required fields
reqURL := fmt.Sprintf("%s/boards/%s/lists?%s", c.baseURL, boardID, params.Encode())
req, err := http.NewRequestWithContext(ctx, "GET", reqURL, nil)
if err != nil {
return nil, fmt.Errorf("failed to create request: %w", err)
}
resp, err := c.httpClient.Do(req)
if err != nil {
return nil, fmt.Errorf("failed to fetch lists: %w", err)
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
body, _ := io.ReadAll(resp.Body)
return nil, fmt.Errorf("trello API error (status %d): %s", resp.StatusCode, string(body))
}
var apiLists []trelloListResponse
if err := json.NewDecoder(resp.Body).Decode(&apiLists); err != nil {
return nil, fmt.Errorf("failed to decode response: %w", err)
}
// Convert to model
lists := make([]models.List, 0, len(apiLists))
for _, apiList := range apiLists {
lists = append(lists, models.List{
ID: apiList.ID,
Name: apiList.Name,
})
}
return lists, nil
}
// GetLists fetches lists for a specific board
func (c *TrelloClient) GetLists(ctx context.Context, boardID string) ([]models.List, error) {
return c.getLists(ctx, boardID)
}
// GetBoardsWithCards fetches all boards and their cards in one call
func (c *TrelloClient) GetBoardsWithCards(ctx context.Context) ([]models.Board, error) {
boards, err := c.GetBoards(ctx)
if err != nil {
return nil, err
}
var wg sync.WaitGroup
sem := make(chan struct{}, 5) // Limit to 5 concurrent requests
for i := range boards {
wg.Add(1)
go func(i int) {
defer wg.Done()
// Acquire semaphore
sem <- struct{}{}
defer func() { <-sem }()
// Fetch cards
cards, err := c.GetCards(ctx, boards[i].ID)
if err == nil {
// Set BoardName for each card
for j := range cards {
cards[j].BoardName = boards[i].Name
}
// It is safe to write to specific indices of the slice concurrently
boards[i].Cards = cards
}
// Fetch lists
lists, err := c.getLists(ctx, boards[i].ID)
if err == nil {
boards[i].Lists = lists
}
}(i)
}
wg.Wait()
// Sort boards: Non-empty boards first, newest card activity, then alphabetical by name
// Trello card IDs are chronologically sortable (newer IDs > older IDs)
sort.Slice(boards, func(i, j int) bool {
hasCardsI := len(boards[i].Cards) > 0
hasCardsJ := len(boards[j].Cards) > 0
// 1. Prioritize boards with cards
if hasCardsI != hasCardsJ {
return hasCardsI // true (non-empty) comes before false
}
// 2. If both have cards, compare by newest card (max ID)
if hasCardsI && hasCardsJ {
maxIDI := ""
for _, card := range boards[i].Cards {
if maxIDI == "" || card.ID > maxIDI {
maxIDI = card.ID
}
}
maxIDJ := ""
for _, card := range boards[j].Cards {
if maxIDJ == "" || card.ID > maxIDJ {
maxIDJ = card.ID
}
}
if maxIDI != maxIDJ {
return maxIDI > maxIDJ // Newer (larger) ID comes first
}
}
// 3. Fallback to alphabetical by name
return boards[i].Name < boards[j].Name
})
return boards, nil
}
// CreateCard creates a new card in the specified list
func (c *TrelloClient) CreateCard(ctx context.Context, listID, name, description string, dueDate *time.Time) (*models.Card, error) {
// Prepare request payload
data := url.Values{}
data.Set("key", c.apiKey)
data.Set("token", c.token)
data.Set("idList", listID)
data.Set("name", name)
if description != "" {
data.Set("desc", description)
}
if dueDate != nil {
data.Set("due", dueDate.Format(time.RFC3339))
}
// Create POST request
reqURL := c.baseURL + "/cards"
req, err := http.NewRequestWithContext(ctx, "POST", reqURL, strings.NewReader(data.Encode()))
if err != nil {
return nil, fmt.Errorf("failed to create request: %w", err)
}
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
// Execute request
resp, err := c.httpClient.Do(req)
if err != nil {
return nil, fmt.Errorf("failed to create card: %w", err)
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
body, _ := io.ReadAll(resp.Body)
return nil, fmt.Errorf("trello API error (status %d): %s", resp.StatusCode, string(body))
}
// Decode response
var apiCard trelloCardResponse
if err := json.NewDecoder(resp.Body).Decode(&apiCard); err != nil {
return nil, fmt.Errorf("failed to decode response: %w", err)
}
// Convert to our model
card := &models.Card{
ID: apiCard.ID,
Name: apiCard.Name,
ListID: apiCard.IDList,
URL: apiCard.URL,
}
// Parse due date if present
if apiCard.Due != nil && *apiCard.Due != "" {
parsedDate, err := time.Parse(time.RFC3339, *apiCard.Due)
if err == nil {
card.DueDate = &parsedDate
}
}
return card, nil
}
// UpdateCard updates a card with the specified changes
func (c *TrelloClient) UpdateCard(ctx context.Context, cardID string, updates map[string]interface{}) error {
// Prepare request payload
data := url.Values{}
data.Set("key", c.apiKey)
data.Set("token", c.token)
// Add updates to payload
for key, value := range updates {
data.Set(key, fmt.Sprintf("%v", value))
}
// Create PUT request
reqURL := fmt.Sprintf("%s/cards/%s", c.baseURL, cardID)
req, err := http.NewRequestWithContext(ctx, "PUT", reqURL, strings.NewReader(data.Encode()))
if err != nil {
return fmt.Errorf("failed to create request: %w", err)
}
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
// Execute request
resp, err := c.httpClient.Do(req)
if err != nil {
return fmt.Errorf("failed to update card: %w", err)
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
body, _ := io.ReadAll(resp.Body)
return fmt.Errorf("trello API error (status %d): %s", resp.StatusCode, string(body))
}
return nil
}
|