-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrello-api.js
68 lines (62 loc) · 1.96 KB
/
trello-api.js
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
import cache from "./util/cache.js";
import time from "./util/time.js";
const baseUrl = "https://api.trello.com";
const token = window.trelloToken;
const apiKey = "38f080e1a2bac242619048df0787ee5c";
const authTokenParams = `key=${apiKey}&token=${token}`;
export const trelloApi = {
async getAllCards(boardId) {
if (token !== "" && apiKey !== "" && boardId !== "") {
const storedBoard = cache.getObject(`board_${boardId}`);
const timeDiff = storedBoard
? time.millisecondsSince(storedBoard.lastFetched)
: 0;
if (storedBoard && timeDiff < 10000) {
return storedBoard.data;
} else {
const response = await fetch(
`${baseUrl}/1/boards/${boardId}/cards?${authTokenParams}`
);
if (response.status === 200) {
const data = await response.json();
cache.setObject(`board_${boardId}`, {
data: data,
lastFetched: new Date()
});
data.map(card => {
cache.setObject(`card_${card.shortLink}`, {
data: card,
lastFetched: new Date()
});
});
return data;
}
}
}
return [];
},
async getCardDetails(cardId) {
if (cardId && token !== "" && apiKey !== "" && cardId) {
const storedCard = cache.getObject(`card_${cardId}`);
const timeDiff = storedCard
? time.millisecondsSince(storedCard.lastFetched)
: 0;
if (storedCard && timeDiff < 30000) {
return storedCard.data;
} else {
const response = await fetch(
`${baseUrl}/1/cards/${cardId}?${authTokenParams}`
);
if (response.status === 200) {
const data = await response.json();
cache.setObject(`card_${cardId}`, {
data: data,
lastFetched: new Date()
});
return data;
}
}
}
return {};
}
};