2020-04-01 08:44:49 +00:00
|
|
|
/**
|
|
|
|
* User websocket actions
|
|
|
|
*
|
|
|
|
* @author Pierre HUBERT
|
|
|
|
*/
|
|
|
|
|
|
|
|
import { UserWebSocketRequestsHandler } from "../entities/WebSocketRequestHandler";
|
|
|
|
import { UserWebSocketController } from "./UserWebSocketController";
|
|
|
|
import { WsMessage } from "../entities/WsMessage";
|
|
|
|
import { NotificationsHelper } from "../helpers/NotificationsHelper";
|
|
|
|
import { ConversationsHelper } from "../helpers/ConversationsHelper";
|
|
|
|
import { EventsHelper } from "../helpers/EventsHelper";
|
2020-04-01 09:31:15 +00:00
|
|
|
import { ConversationMessage } from "../entities/ConversationMessage";
|
|
|
|
import { ConversationsController } from "./ConversationsController";
|
2020-04-01 08:44:49 +00:00
|
|
|
|
|
|
|
export class UserWebSocketActions {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update incognito status of a user
|
|
|
|
*
|
|
|
|
* @param h Request handler
|
|
|
|
*/
|
|
|
|
public static async SetIncognito(h: UserWebSocketRequestsHandler) {
|
|
|
|
h.wsClient.incognito = h.postBool("enable", false);
|
2020-04-01 09:31:15 +00:00
|
|
|
h.success();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register to a conversation
|
|
|
|
*
|
|
|
|
* @param h Request handler
|
|
|
|
*/
|
|
|
|
public static async RegisterConv(h: UserWebSocketRequestsHandler) {
|
|
|
|
const convID = await h.postConversationId("convID");
|
|
|
|
h.wsClient.registeredConversations.add(convID);
|
|
|
|
h.success();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unregister a conversation
|
|
|
|
*
|
|
|
|
* @param h Request handler
|
|
|
|
*/
|
|
|
|
public static async UnregisterConv(h: UserWebSocketRequestsHandler) {
|
|
|
|
const convID = await h.postConversationId("convID");
|
|
|
|
h.wsClient.registeredConversations.delete(convID);
|
|
|
|
h.success();
|
2020-04-01 08:44:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send updated notifications number to some users
|
|
|
|
*
|
|
|
|
* @param usersID Target users ID
|
|
|
|
*/
|
|
|
|
public static async SendNewNotificationsNumber(usersID: number[]) {
|
|
|
|
|
|
|
|
// Process each user
|
|
|
|
for(const userID of usersID) {
|
|
|
|
if(!UserWebSocketController.IsConnected(userID))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Notify user
|
|
|
|
UserWebSocketController.Send(userID, "", new WsMessage({
|
|
|
|
title: "number_notifs",
|
|
|
|
id: "",
|
|
|
|
data: await NotificationsHelper.CountUnread(userID)
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send upated number of unread conversations count
|
|
|
|
*
|
|
|
|
* @param usersID Target users ID
|
|
|
|
*/
|
|
|
|
public static async SendNewUnreadConversationsCount(usersID: number[]) {
|
|
|
|
for(const userID of usersID) {
|
|
|
|
|
|
|
|
if(!UserWebSocketController.IsConnected(userID))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Notify user
|
|
|
|
UserWebSocketController.Send(userID, "", new WsMessage({
|
|
|
|
title: "number_unread_conversations",
|
|
|
|
id: "",
|
|
|
|
data: await ConversationsHelper.CountUnreadForUser(userID)
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
}
|
2020-04-01 09:31:15 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Propagate a new conversation message
|
|
|
|
*
|
|
|
|
* @param msg New message
|
|
|
|
*/
|
|
|
|
public static async SentNewConversationMessage(msg: ConversationMessage) {
|
|
|
|
for(const client of UserWebSocketController.active_clients.filter(
|
|
|
|
(e) => e.registeredConversations.has(msg.convID))) {
|
|
|
|
|
|
|
|
UserWebSocketController.Send(client.clientID, client.socketID, new WsMessage({
|
|
|
|
id: "",
|
|
|
|
title: "new_conv_message",
|
|
|
|
data: ConversationsController.ConversationMessageToAPI(msg)
|
|
|
|
}));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2020-04-01 08:44:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// When we get a new number of notifications
|
|
|
|
EventsHelper.Listen("updated_number_notifications", async (e) => await UserWebSocketActions.SendNewNotificationsNumber(e.usersID));
|
|
|
|
|
|
|
|
// When we get a new number of unread conversations
|
2020-04-01 09:31:15 +00:00
|
|
|
EventsHelper.Listen("updated_number_unread_conversations", async (e) => await UserWebSocketActions.SendNewUnreadConversationsCount(e.usersID));
|
|
|
|
|
|
|
|
// When a new message is sent
|
|
|
|
EventsHelper.Listen("sent_conversation_message", async (e) => await UserWebSocketActions.SentNewConversationMessage(e.msg));
|