import { RequestHandler } from "../entities/RequestHandler"; import { ConversationsHelper } from "../helpers/ConversationsHelper"; import { Conversation } from "../entities/Conversation"; /** * Conversations controller * * @author Pierre HUBERT */ export class ConversationsController { /** * Get the list of conversations of the user * * @param handler */ public static async GetList(handler: RequestHandler) { const list = await ConversationsHelper.GetListUser(handler.getUserId()); handler.send(list.map(c => this.ConversationToAPI(c))); } /** * Turn a conversation object into an API entry * * @param c */ private static ConversationToAPI(c : Conversation) : any { return { ID: c.id, ID_owner: c.ownerID, last_active: c.lastActive, name: c.name.length > 0 ? c.name : false, following: c.following ? 1 : 0, saw_last_message: c.sawLastMessage ? 1 : 0, members: c.members }; } }