summaryrefslogtreecommitdiff
path: root/internal/api/trello.go
blob: a19bbea3b421a192342b0a5e0a6240168d7ce0c7 (plain)
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
package api

import (
	"context"
	"fmt"
	"log"
	"net/url"
	"sort"
	"sync"
	"time"

	"task-dashboard/internal/models"
)

const trelloBaseURL = "https://api.trello.com/1"

// TrelloClient handles interactions with the Trello API
type TrelloClient struct {
	BaseClient
	apiKey string
	token  string
}

// NewTrelloClient creates a new Trello API client
func NewTrelloClient(apiKey, token string) *TrelloClient {
	return &TrelloClient{
		BaseClient: NewBaseClient(trelloBaseURL),
		apiKey:     apiKey,
		token:      token,
	}
}

func (c *TrelloClient) authParams() url.Values {
	params := url.Values{}
	params.Set("key", c.apiKey)
	params.Set("token", c.token)
	return params
}

// 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 := c.authParams()
	params.Set("filter", "open")
	params.Set("fields", "id,name")

	var apiBoards []trelloBoardResponse
	if err := c.Get(ctx, "/members/me/boards?"+params.Encode(), nil, &apiBoards); err != nil {
		return nil, fmt.Errorf("failed to fetch boards: %w", err)
	}

	boards := make([]models.Board, 0, len(apiBoards))
	for _, apiBoard := range apiBoards {
		boards = append(boards, models.Board{
			ID:    apiBoard.ID,
			Name:  apiBoard.Name,
			Cards: []models.Card{},
		})
	}

	return boards, nil
}

// GetCards fetches all cards for a specific board
func (c *TrelloClient) GetCards(ctx context.Context, boardID string) ([]models.Card, error) {
	params := c.authParams()
	params.Set("filter", "open")
	params.Set("fields", "id,name,idList,due,url,idBoard")

	var apiCards []trelloCardResponse
	path := fmt.Sprintf("/boards/%s/cards?%s", boardID, params.Encode())
	if err := c.Get(ctx, path, nil, &apiCards); err != nil {
		return nil, fmt.Errorf("failed to fetch cards: %w", err)
	}

	if len(apiCards) == 0 {
		log.Printf("Trello GetCards: board %s returned 0 cards (may have only archived cards)", boardID)
	} else {
		log.Printf("Trello GetCards: board %s returned %d cards", boardID, len(apiCards))
	}

	// Fetch lists to get list names
	lists, err := c.getLists(ctx, boardID)
	listMap := make(map[string]string)
	if err != nil {
		log.Printf("Warning: failed to fetch lists for board %s: %v", boardID, err)
	} else {
		for _, list := range lists {
			listMap[list.ID] = list.Name
		}
	}

	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,
		}

		if apiCard.Due != nil && *apiCard.Due != "" {
			if dueDate, err := time.Parse(time.RFC3339, *apiCard.Due); 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 := c.authParams()
	params.Set("fields", "id,name")

	var apiLists []trelloListResponse
	path := fmt.Sprintf("/boards/%s/lists?%s", boardID, params.Encode())
	if err := c.Get(ctx, path, nil, &apiLists); err != nil {
		return nil, fmt.Errorf("failed to fetch lists: %w", err)
	}

	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 concurrently
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()

			sem <- struct{}{}
			defer func() { <-sem }()

			cards, err := c.GetCards(ctx, boards[i].ID)
			if err != nil {
				log.Printf("Error fetching cards for board %s (%s): %v", boards[i].Name, boards[i].ID, err)
			} else {
				for j := range cards {
					cards[j].BoardName = boards[i].Name
				}
				boards[i].Cards = cards
			}

			lists, err := c.getLists(ctx, boards[i].ID)
			if err != nil {
				log.Printf("Error fetching lists for board %s: %v", boards[i].Name, err)
			} else {
				boards[i].Lists = lists
			}
		}(i)
	}

	wg.Wait()

	// Sort boards: Non-empty boards first, newest card activity, then alphabetical
	sort.Slice(boards, func(i, j int) bool {
		hasCardsI := len(boards[i].Cards) > 0
		hasCardsJ := len(boards[j].Cards) > 0

		if hasCardsI != hasCardsJ {
			return hasCardsI
		}

		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
			}
		}

		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) {
	data := c.authParams()
	data.Set("idList", listID)
	data.Set("name", name)
	if description != "" {
		data.Set("desc", description)
	}
	if dueDate != nil {
		data.Set("due", dueDate.Format(time.RFC3339))
	}

	var apiCard trelloCardResponse
	if err := c.PostForm(ctx, "/cards", nil, data.Encode(), &apiCard); err != nil {
		return nil, fmt.Errorf("failed to create card: %w", err)
	}

	card := &models.Card{
		ID:     apiCard.ID,
		Name:   apiCard.Name,
		ListID: apiCard.IDList,
		URL:    apiCard.URL,
	}

	if apiCard.Due != nil && *apiCard.Due != "" {
		if parsedDate, err := time.Parse(time.RFC3339, *apiCard.Due); 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 {
	data := c.authParams()
	for key, value := range updates {
		data.Set(key, fmt.Sprintf("%v", value))
	}

	path := fmt.Sprintf("/cards/%s", cardID)
	if err := c.Put(ctx, path, nil, data.Encode(), nil); err != nil {
		return fmt.Errorf("failed to update card: %w", err)
	}

	return nil
}