123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- const ChatModel = require('../model/chat');
- const UserModel = require('../model/user');
- const MessageModel = require('../model/message');
- const listChats = async (req, res, next) => {
- try {
- const userId = req.user.id;
- const { total, limit, page, chats } = await ChatModel.getList(
- userId,
- req.query
- );
- const messages = await MessageModel.getLastMessagesList(userId);
- const lastOnline = await chats.reduce(async (acc, { companionId }) => {
- const { _id, online, updatedAt } = await UserModel.findById(companionId);
- acc.push({ _id, online, updatedAt });
- return acc;
- }, []);
- const lastMessages = await messages.reduce(
- (acc, { message, companionId, createdAt, updatedAt }) => {
- const obj = {
- message,
- companionId,
- createdAt,
- updatedAt,
- };
- if (acc.length === 0) {
- acc.push(obj);
- return acc;
- }
- if (acc.some((el) => el.companionId === companionId)) {
- const i = acc.findIndex((el) => {
- return el.companionId === companionId;
- });
- acc[i] = obj;
- return acc;
- }
- acc.push(obj);
- return acc;
- },
- []
- );
- return res.json({
- status: 'success',
- code: 200,
- data: {
- total,
- limit,
- page,
- chats,
- lastMessages,
- lastOnline,
- },
- });
- } catch (e) {
- next(e);
- }
- };
- const startChat = async (req, res, next) => {
- try {
- const id = req.body.id;
- const user = req.user;
- const userId = user.id;
- const companion = await UserModel.findById(id);
- const isUser = await ChatModel.getByField(id, userId);
- const isCompanion = await ChatModel.getByField(userId, id);
- const { name, lastName, avatarUrl, color, online, number } = companion;
- const {
- name: Name,
- lastName: LastName,
- avatarUrl: AvatarUrl,
- color: Color,
- online: Online,
- number: Number,
- } = user;
- if (companion && (isUser || isCompanion)) {
- await ChatModel.update(isUser._id, {
- name,
- lastName,
- avatarUrl,
- color,
- online,
- number,
- });
- await ChatModel.update(isCompanion._id, {
- name: Name,
- lastName: LastName,
- avatarUrl: AvatarUrl,
- color: Color,
- online: Online,
- number: Number,
- });
- const updatedChat = await ChatModel.getByField(id, userId);
- return res.status(200).json({
- status: 'success',
- code: 200,
- data: updatedChat,
- });
- }
- if (companion && !isUser && !isCompanion) {
- const newChat = await ChatModel.add({
- name,
- lastName,
- avatarUrl,
- color,
- online,
- number,
- companionId: id,
- owner: userId,
- });
- await ChatModel.add({
- name: Name,
- lastName: LastName,
- avatarUrl: AvatarUrl,
- color: Color,
- online: Online,
- number: Number,
- companionId: userId,
- owner: id,
- });
- return res.status(201).json({
- status: 'success',
- code: 201,
- data: newChat,
- });
- }
- } catch (e) {
- next(e);
- }
- };
- const muteChat = async (req, res, next) => {
- try {
- const id = req.body.id;
- const userId = req.user.id;
- const isChat = await ChatModel.getByField(id, userId);
- if (isChat) {
- const { _id, mute } = isChat;
- await ChatModel.update(_id, { mute: !mute });
- return res.status(200).json({
- status: 'success',
- code: 200,
- data: {},
- });
- }
- } catch (e) {
- next(e);
- }
- };
- const seenChat = async (req, res, next) => {
- try {
- const id = req.body.id;
- const userId = req.user.id;
- const isChat = await ChatModel.getByField(id, userId);
- const isMessage = await MessageModel.getList(userId, {});
- if (isChat && isMessage) {
- const { _id } = isChat;
- const { total } = isMessage;
- await ChatModel.update(_id, { seen: total });
- return res.status(200).json({
- status: 'success',
- code: 200,
- data: {},
- });
- }
- } catch (e) {
- next(e);
- }
- };
- const chatById = async (req, res, next) => {
- try {
- const userId = req.user.id;
- const companionId = req.params.companionId;
- const { online } = await UserModel.findById(companionId);
- const isChat = await ChatModel.getByField(companionId, userId);
- if (isChat) {
- const {
- name,
- lastName,
- avatarUrl,
- color,
- mute,
- seen,
- total,
- number,
- _id,
- companionId,
- owner,
- createdAt,
- updatedAt,
- __v,
- } = isChat;
- return res.json({
- status: 'success',
- code: 200,
- data: {
- name,
- lastName,
- avatarUrl,
- color,
- online,
- mute,
- seen,
- total,
- number,
- _id,
- companionId,
- owner,
- createdAt,
- updatedAt,
- __v,
- },
- });
- }
- } catch (e) {
- next(e);
- }
- };
- module.exports = {
- listChats,
- startChat,
- muteChat,
- seenChat,
- chatById,
- };
|