-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.controller.ts
More file actions
478 lines (422 loc) · 14.5 KB
/
Copy pathcontent.controller.ts
File metadata and controls
478 lines (422 loc) · 14.5 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
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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
import { Request, Response } from "express";
import { ContentService } from "../services/content.service";
import { IncomingForm } from "formidable";
import { StorageService } from "../../storage/services/storage.service";
export class ContentController {
static async createContent(req: Request, res: Response) {
console.log("Creating Content...");
const { creatorUID, title, content, thumbnailUrl } = req.body;
try {
const response = await ContentService.createContent(
creatorUID,
title,
content,
thumbnailUrl
);
res.status(201).json(response);
} catch (error) {
console.log(error);
res
.status(500)
.json({ error: (error as string) || "Failed to create content" });
}
}
static async uploadThumbnail(req: Request, res: Response) {
console.log("Uploading Thumbnail...");
const form = new IncomingForm();
form.parse(req, async (err, fields, files: any) => {
if (err) {
console.error("Error parsing form: ", err);
return res.status(500).json({ error: "Failed to upload thumbnail." });
}
// Check if files.thumbnail exists and is an array
if (
!files.thumbnail ||
!Array.isArray(files.thumbnail) ||
!files.thumbnail[0]
) {
return res.status(400).json({ error: "No file uploaded." });
}
const file = files.thumbnail[0];
const fileName = file.newFilename;
const fileType = file.mimetype;
const filePath = file.filepath;
try {
if (!filePath) {
return res.status(400).json({ error: "File path is missing." });
}
// Pass the file object with the correct path to StorageService
const response = await StorageService.uploadFile(
{ ...file, path: filePath },
"thumbnails",
fileName,
fileType
);
res.status(201).json(response);
} catch (error: any) {
console.log(error);
res
.status(500)
.json({ error: error.message || "Failed to upload thumbnail" });
}
});
}
static async getContent(req: Request, res: Response) {
console.log("Fetching Content...");
const { contentId } = req.params;
try {
const response = await ContentService.getContent(contentId);
res.status(200).json(response);
} catch (error: any) {
console.log(error);
res
.status(500)
.json({ error: error.message || "Failed to fetch content" });
}
}
static async editContent(req: Request, res: Response) {
console.log("Fetching Content...");
const { contentId } = req.params;
const data = req.body;
const uid = req.user?.uid;
try {
// const confirmation = await axios.get(`${apiURL}/content/${contentId}`)
const confirmation = await ContentService.getContent(contentId);
const owner_id = confirmation?.creatorUID;
if (uid == owner_id) {
//check whether they are allowed to edit the content
const response = await ContentService.editContent(contentId, data);
res.status(200).json(response);
} else {
throw Error("You do not have this permission.");
}
} catch (error: any) {
console.log(error);
res
.status(500)
.json({ error: error.message || "Failed to edit content" });
}
}
static async editContentAndThumbnail(req: Request, res: Response) {
console.log("Editing Content and Thumbnail...");
const { contentId, userId } = req.params;
try {
const confirmation = await ContentService.getContent(contentId);
const owner_id = confirmation?.creatorUID;
if (userId == owner_id) {
//check whether they are allowed to edit the content
let file_path: string;
let file_name: string;
if (confirmation?.thumbnail) {
file_path = decodeURIComponent(
confirmation.thumbnail.split("/o/")[1].split("?")[0]
); //Converts things like "%2F" to "/", etc.
file_name = file_path.split("/")[1]; // The line above returns thumbnails/filename, this line returns filename.
}
console.log("Form is being created:...");
const form = new IncomingForm();
form.parse(req, async (err, fields: any, files: any) => {
if (err) {
console.error("Error parsing form: ", err);
return res
.status(500)
.json({ error: "Failed to upload thumbnail." });
}
const file = files.thumbnail[0];
let fileName: string;
if (file_name) {
fileName = file_name;
} else {
fileName = file.newFilename;
}
const fileType = file.mimetype;
try {
if (!file) {
return res.status(400).json({ error: "No file uploaded." });
}
const response = await StorageService.uploadFile(
file,
"thumbnails",
fileName,
fileType
);
const updateData = JSON.parse(fields.data);
updateData.thumbnail = response.url;
console.log("updateData");
await ContentService.editContent(contentId, updateData);
res.status(201).json(response);
} catch (error: any) {
console.log(error);
res
.status(500)
.json({ error: error.message || "Failed to upload thumbnail" });
}
});
} else {
res.status(401).json("You are not authorized to edit this content.");
}
} catch (error: any) {
console.error(error);
res.status(500).json({
error: error.message || "You are not authorized to edit this content.",
});
}
}
static async deleteContent(req: Request, res: Response) {
console.log("Deleting Content...");
const { contentId } = req.params;
const { userId } = req.body;
try {
const confirmation = await ContentService.getContent(contentId);
const owner_id = confirmation?.creatorUID;
if (userId == owner_id) {
const response = await ContentService.deleteContent(contentId);
console.log("DELETING CONTENT:::::");
console.log(response);
res.status(200).json(response);
} else {
throw new Error("You don't have the permission to delete this!!");
}
} catch (error: any) {
console.log(error);
res
.status(500)
.json({ error: error.message || "Failed to delete content" });
}
}
// Like content
static async likeContent(req: Request, res: Response) {
console.log("Liking Content...");
const { contentId, userId } = req.params;
try {
const response = await ContentService.likeContent(contentId, userId);
res.status(200).json(response);
} catch (error: any) {
console.error("Error liking content:", error);
res.status(500).json({
error:
error instanceof Error ? error.message : "Failed to like content",
stack: error instanceof Error ? error.stack : null,
});
}
}
// Unlike content
static async unlikeContent(req: Request, res: Response) {
const { contentId, userId } = req.params;
try {
const response = await ContentService.unlikeContent(contentId, userId);
res.status(200).json(response);
} catch (error: any) {
console.error("Error unliking content:", error);
res.status(500).json({
error:
error instanceof Error ? error.message : "Failed to unlike content",
});
}
}
// Bookmark content
static async bookmarkContent(req: Request, res: Response) {
const { contentId, userId } = req.params;
try {
const response = await ContentService.bookmarkContent(contentId, userId);
res.status(200).json(response);
} catch (error: any) {
console.error("Error bookmarking content:", error);
res.status(500).json({
error:
error instanceof Error ? error.message : "Failed to bookmark content",
});
}
}
// Unbookmark content
static async unbookmarkContent(req: Request, res: Response) {
const { contentId, userId } = req.params;
try {
const response = await ContentService.unbookmarkContent(
contentId,
userId
);
res.status(200).json(response);
} catch (error: any) {
console.error("Error unbookmarking content:", error);
res.status(500).json({
error:
error instanceof Error
? error.message
: "Failed to unbookmark content",
});
}
}
// Share content
static async shareContent(req: Request, res: Response) {
const { userId, contentId } = req.params;
try {
// Call the service layer to handle *both* sharing and incrementing
const updatedContent = await ContentService.shareContent(
contentId,
userId
);
// Return success response
res.status(200).json({ content: updatedContent }); // Return the updated content
} catch (error: any) {
console.error("Error sharing content:", error);
res.status(500).json({
error:
error instanceof Error ? error.message : "Failed to share content",
});
}
}
// Unshare content
static async unshareContent(req: Request, res: Response) {
const { contentId, userId } = req.params;
try {
const response = await ContentService.unshareContent(contentId, userId);
res.status(200).json(response);
} catch (error: any) {
console.error("Error unsharing content:", error);
res.status(500).json({
error:
error instanceof Error ? error.message : "Failed to unshare content",
});
}
}
// Update the number of times the content was shared
static async incrementShareCount(req: Request, res: Response) {
const { contentId } = req.params;
try {
await ContentService.incrementShareCount(contentId);
res.status(200).json("Successfully incremented!");
} catch (error: any) {
res.status(500).json({
error:
error instanceof Error
? error.message
: "Failed to increment share count",
});
}
}
// Update the number of times the content was viewed
static async incrementViewCount(req: Request, res: Response) {
const { contentId } = req.params;
try {
await ContentService.incrementViewCount(contentId);
res.status(200).json("Successfully incremented!");
} catch (error: any) {
res.status(500).json({
error:
error instanceof Error
? error.message
: "Failed to increment view count",
});
}
}
static async getTrendingContent(req: Request, res: Response) {
console.log("Fetching Trending Content...");
const limit = req.query.limit ? parseInt(req.query.limit as string) : 10;
try {
const trendingContent = await ContentService.getTrendingContent(limit);
res.status(200).json({
success: true,
trendingContent,
message: "Trending content fetched successfully",
});
} catch (error: any) {
console.error("Error fetching trending content:", error);
res.status(500).json({
success: false,
error: error.message || "Failed to fetch trending content",
});
}
}
static async getAllContent(req: Request, res: Response) {
console.log("Fetching All Content...");
try {
const allContent = await ContentService.getAllContent();
res.status(200).json({
success: true,
content: allContent,
message: "All content fetched successfully",
});
} catch (error: any) {
console.error("Error fetching all content:", error);
res.status(500).json({
success: false,
error: error.message || "Failed to fetch all content",
});
}
}
static async getPersonalizedContent(req: Request, res: Response) {
console.log("Fetching Personalized Content...");
const { userId } = req.params;
const limit = req.query.limit ? parseInt(req.query.limit as string) : 20;
try {
console.log(`Getting personalized content for user: ${userId}`);
const personalizedContent = await ContentService.getPersonalizedContent(
userId,
limit
);
res.status(200).json({
success: true,
personalizedContent,
message: "Personalized content fetched successfully",
});
} catch (error: any) {
console.error("Error fetching personalized content:", error);
res.status(500).json({
success: false,
personalizedContent: [],
message: `Failed to fetch personalized content for user ${userId}, error: ${error.message}`,
});
}
}
static async getRelatedContentCreators(req: Request, res: Response) {
console.log("Fetching Related Content Creators...");
const { userId } = req.params;
const limit = req.query.limit ? parseInt(req.query.limit as string) : 5;
try {
console.log(`Getting related content creators for user: ${userId}`);
const relatedCreators = await ContentService.getRelatedContentCreators(
userId,
limit
);
res.status(200).json({
success: true,
relatedCreators,
message: "Related content creators fetched successfully",
});
} catch (error: any) {
console.error("Error fetching related content creators:", error);
res.status(500).json({
success: false,
relatedCreators: [],
message: `Failed to fetch related content creators for user ${userId}, error: ${error.message}`,
});
}
}
static async getRelatedContent(req: Request, res: Response) {
console.log("Fetching Related Content...");
const { contentId } = req.params;
const userId = (req.query.userId as string) || undefined;
const limit = req.query.limit ? parseInt(req.query.limit as string) : 5;
try {
console.log(`Getting related content for content ID: ${contentId}`);
const relatedContent = await ContentService.getRelatedContent(
contentId,
userId,
limit
);
res.status(200).json({
success: true,
relatedContent,
message: "Related content fetched successfully",
});
} catch (error: any) {
console.error("Error fetching related content:", error);
res.status(500).json({
success: false,
relatedContent: [],
message: `Failed to fetch related content for content ID ${contentId}, error: ${error.message}`,
});
}
}
}