generated from CodeYourFuture/Module-Template
-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathapi.mjs
More file actions
304 lines (258 loc) · 7.22 KB
/
api.mjs
File metadata and controls
304 lines (258 loc) · 7.22 KB
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
import {state} from "../index.mjs";
import {handleErrorDialog} from "../components/error.mjs";
// === ABOUT THE STATE
// state gives you these two functions only
// updateState({stateKey: newValues})
// destroyState()
// All you can do in this file, please!
// 1. You can go to the back end and make requests for data
// 2. You can put the response data into state in the right place
// 3. You can handle your errors
// Don't touch any other part of the application with this file
// Helper function for making API requests
async function _apiRequest(endpoint, options = {}) {
const token = state.token;
const baseUrl = "http://localhost:3000";
const defaultOptions = {
headers: {
"Content-Type": "application/json",
...(token ? {Authorization: `Bearer ${token}`} : {}),
},
mode: "cors",
credentials: "include",
};
const fetchOptions = {...defaultOptions, ...options};
const url = endpoint.startsWith("http") ? endpoint : `${baseUrl}${endpoint}`;
try {
const response = await fetch(url, fetchOptions);
if (!response.ok) {
const errorData = await response.json().catch(() => ({}));
const error = new Error(
errorData.message || `API error: ${response.status}`
);
error.status = response.status;
// Handle auth errors
if (error.status === 401 || error.status === 403) {
if (!endpoint.includes("/login") && !endpoint.includes("/register")) {
state.destroyState();
}
}
// Pass all errors forward to a dialog on the screen
handleErrorDialog(error);
throw error;
}
const contentType = response.headers.get("content-type");
return contentType?.includes("application/json")
? await response.json()
: {success: true};
} catch (error) {
if (!error.status) {
// Only handle network errors here, response errors are handled above
handleErrorDialog(error);
}
throw error; // Re-throw so it can be caught by the calling function
}
}
// Local helper to update a profile in the profiles array
function _updateProfile(username, profileData) {
const profiles = [...state.profiles];
const index = profiles.findIndex((p) => p.username === username);
if (index !== -1) {
profiles[index] = {...profiles[index], ...profileData};
} else {
profiles.push({username, ...profileData});
}
state.updateState({profiles});
}
// ====== AUTH methods
async function login(username, password) {
try {
const data = await _apiRequest("/login", {
method: "POST",
body: JSON.stringify({username, password}),
});
if (data.success && data.token) {
state.updateState({
token: data.token,
currentUser: username,
isLoggedIn: true,
});
await Promise.all([getBlooms(), getProfile(username), getWhoToFollow()]);
}
return data;
} catch (error) {
return {success: false};
}
}
async function getWhoToFollow() {
try {
const usernamesToFollow = await _apiRequest("/suggested-follows/3");
state.updateState({whoToFollow: usernamesToFollow});
return usernamesToFollow;
} catch (error) {
// Error already handled by _apiRequest
state.updateState({usernamesToFollow: []});
return [];
}
}
async function signup(username, password) {
try {
const data = await _apiRequest("/register", {
method: "POST",
body: JSON.stringify({username, password}),
});
if (data.success && data.token) {
state.updateState({
token: data.token,
currentUser: username,
isLoggedIn: true,
});
await getProfile(username);
}
return data;
} catch (error) {
return {success: false};
}
}
function logout() {
state.destroyState();
return {success: true};
}
// ===== BLOOM methods
async function getBloom(bloomId) {
const endpoint = `/bloom/${bloomId}`;
const bloom = await _apiRequest(endpoint);
state.updateState({singleBloomToShow: bloom});
return bloom;
}
async function getBlooms(username) {
const endpoint = username ? `/blooms/${username}` : "/home";
try {
const blooms = await _apiRequest(endpoint);
if (username) {
_updateProfile(username, {blooms});
} else {
state.updateState({timelineBlooms: blooms});
}
return blooms;
} catch (error) {
// Error already handled by _apiRequest
if (username) {
_updateProfile(username, {blooms: []});
} else {
state.updateState({timelineBlooms: []});
}
return [];
}
}
/**
* Fetches blooms containing a specific hashtag
*/
async function getBloomsByHashtag(hashtag) {
const tag = hashtag.startsWith("#") ? hashtag.substring(1) : hashtag;
const endpoint = `/hashtag/${encodeURIComponent(tag)}`;
try {
const blooms = await _apiRequest(endpoint);
state.updateState({
hashtagBlooms: blooms,
currentHashtag: `#${tag}`,
});
return blooms;
} catch (error) {
// Error already handled by _apiRequest
return {success: false};
}
}
async function postBloom(content) {
try {
const data = await _apiRequest("/bloom", {
method: "POST",
body: JSON.stringify({content}),
});
if (data.success) {
await getBlooms();
await getProfile(state.currentUser);
}
return data;
} catch (error) {
// Error already handled by _apiRequest
return {success: false};
}
}
// ======= USER methods
async function getProfile(username) {
const endpoint = username ? `/profile/${username}` : "/profile";
try {
const profileData = await _apiRequest(endpoint);
if (username) {
_updateProfile(username, profileData);
} else {
const currentUsername = profileData.username;
const fullProfileData = await _apiRequest(`/profile/${currentUsername}`);
_updateProfile(currentUsername, fullProfileData);
state.updateState({currentUser: currentUsername, isLoggedIn: true});
}
return profileData;
} catch (error) {
// Error already handled by _apiRequest
if (!username) {
state.updateState({isLoggedIn: false, currentUser: null});
}
return {success: false};
}
}
async function followUser(username) {
try {
const data = await _apiRequest("/follow", {
method: "POST",
body: JSON.stringify({follow_username: username}),
});
if (data.success) {
await Promise.all([
getProfile(username),
getProfile(state.currentUser),
getBlooms(),
]);
}
return data;
} catch (error) {
return {success: false};
}
}
async function unfollowUser(username) {
try {
const data = await _apiRequest("/unfollow", {
method: "POST",
body: JSON.stringify({follow_username: username}),
});
if (data.success) {
// Update both the unfollowed user's profile and the current user's profile
await Promise.all([
getProfile(username),
getProfile(state.currentUser),
getBlooms(),
]);
}
return data;
} catch (error) {
// Error already handled by _apiRequest
return {success: false};
}
}
const apiService = {
// Auth methods
login,
signup,
logout,
// Bloom methods
getBloom,
getBlooms,
postBloom,
getBloomsByHashtag,
// User methods
getProfile,
followUser,
unfollowUser,
getWhoToFollow,
};
export {apiService};