import { RequestHandler } from "../entities/RequestHandler"; import { Comment } from "../entities/Comment"; import { LikesHelper, LikesType } from "../helpers/LikesHelper"; import { check_string_before_insert, removeHTMLNodes } from "../utils/StringUtils"; import { time } from "../utils/DateUtils"; import { CommentsHelper } from "../helpers/CommentsHelper"; /** * Comments controller * * @author Pierre HUBERT */ export class CommentsController { /** * Create a new comment * * @param h Request handler */ public static async Create(h: RequestHandler) { const postID = await h.postPostIDWithAccess("postID"); let content: string, image_path: string; // Check if an image was included in the request or not if(h.hasFile("image")) { content = this.GetCommentContent(h, "content", false); image_path = await h.savePostImage("image", "imgcommentaire", 700, 700); } else content = this.GetCommentContent(h, "content", true); const newComment = new Comment({ id: -1, timeSent: time(), postID: postID, userID: h.getUserId(), content: content, imagePath: image_path }); const commentID = await CommentsHelper.Create(newComment); // TODO : Create notifications // TODO : Delete any notifications targetting this user about the post h.send({success: true, commentID: commentID}); } /** * Get information about a single comment * * @param h Request handler */ public static async GetSingle(h: RequestHandler) { const commentID = h.postCommentIDWithAccess("commentID"); console.log("Comment ID: " + commentID); } /** * Get the content of a comment included in a POST field * * @param h Request handler * @param name The name of the post field * @param need_check True if the comment must have valid content / false else */ private static GetCommentContent(h: RequestHandler, name: string, need_check = true) : string { const content = h.postContent(name, need_check ? 3 : 0); if(need_check && !check_string_before_insert(content)) h.error(400, "Please check new comment content!"); return content; } /** * Turn a list of comment object into API entries * * @param h Request handler * @param l List of comments */ public static async CommentsToAPI(h: RequestHandler, l: Comment[]) : Promise> { const list = []; for (const comment of l) { list.push(await this.CommentToAPI(h, comment)); } return list; } /** * Turn a comment into an API object * * @param h Request handler * @param c Comment */ public static async CommentToAPI(h: RequestHandler, c: Comment) : Promise { return { ID: c.id, userID: c.userID, postID: c.postID, time_sent: c.timeSent, content: c.content, img_path: c.hasImage ? c.imagePath : null, img_url: c.hasImage ? c.imageURL : null, likes: await LikesHelper.Count(c.id, LikesType.COMMENT), userlike: h.signedIn ? await LikesHelper.IsLiking(h.getUserId(), c.id, LikesType.COMMENT) : false } } }