2022-01-06 01:26:15 +00:00
|
|
|
import { Server as SocketIO } from "socket.io";
|
|
|
|
import { Server } from "http";
|
|
|
|
import AppError from "../errors/AppError";
|
|
|
|
import { logger } from "../utils/logger";
|
|
|
|
|
2022-05-06 22:49:45 +00:00
|
|
|
import { v4 as uuidv4 } from 'uuid';
|
|
|
|
import ListUserParamiterService from "../services/UserServices/ListUserParamiterService";
|
2022-05-16 02:48:06 +00:00
|
|
|
import { addHours, addMinutes, addSeconds, intervalToDuration, add } from "date-fns";
|
2022-05-06 22:49:45 +00:00
|
|
|
|
2022-01-06 01:26:15 +00:00
|
|
|
let io: SocketIO;
|
|
|
|
|
2022-05-03 21:20:58 +00:00
|
|
|
//test del
|
2022-05-06 22:49:45 +00:00
|
|
|
import createOrUpdateOnlineUserService from "../services/UserServices/CreateOrUpdateOnlineUserService";
|
|
|
|
import { splitDateTime } from "../helpers/SplitDateTime";
|
|
|
|
import format from 'date-fns/format';
|
|
|
|
import ptBR from 'date-fns/locale/pt-BR';
|
|
|
|
import ListUserOnlineOffline from "../services/UserServices/ListUsersOnlineOfflineService";
|
|
|
|
|
2022-05-16 02:48:06 +00:00
|
|
|
let count: number = 0
|
|
|
|
let listOnline: any[] = []
|
|
|
|
let listOnlineAux: any[] = []
|
2022-05-06 22:49:45 +00:00
|
|
|
let countOnline: number = 0
|
2022-05-16 02:48:06 +00:00
|
|
|
let obj: any = { listOnline: [], uuid: null, listOnlineAux: [] }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let lstOnline: any[] = []
|
|
|
|
let lstOnlineAux: any[] = []
|
|
|
|
let lstTry: any[] = []
|
2022-05-06 22:49:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let dateTime = splitDateTime(new Date(format(new Date(), 'yyyy-MM-dd HH:mm:ss', { locale: ptBR })))
|
|
|
|
|
2022-05-16 02:48:06 +00:00
|
|
|
|
2022-01-06 01:26:15 +00:00
|
|
|
export const initIO = (httpServer: Server): SocketIO => {
|
|
|
|
io = new SocketIO(httpServer, {
|
|
|
|
cors: {
|
|
|
|
origin: process.env.FRONTEND_URL
|
|
|
|
}
|
2022-05-06 22:49:45 +00:00
|
|
|
});
|
|
|
|
|
2022-01-06 01:26:15 +00:00
|
|
|
|
|
|
|
io.on("connection", socket => {
|
2022-05-06 22:49:45 +00:00
|
|
|
logger.info("Client Connected");
|
2022-05-03 21:20:58 +00:00
|
|
|
|
|
|
|
|
2022-05-16 02:48:06 +00:00
|
|
|
socket.on("online", (userId: any) => {
|
2022-05-06 22:49:45 +00:00
|
|
|
|
2022-05-16 02:48:06 +00:00
|
|
|
obj.uuid = uuidv4()
|
|
|
|
|
|
|
|
if (userId.logoutUserId) {
|
2022-05-06 22:49:45 +00:00
|
|
|
|
2022-05-16 02:48:06 +00:00
|
|
|
let index = lstOnline.findIndex((x: any) => x.id == userId.logoutUserId)
|
2022-05-06 22:49:45 +00:00
|
|
|
|
2022-05-16 02:48:06 +00:00
|
|
|
if (index != -1) {
|
2022-05-03 21:20:58 +00:00
|
|
|
|
2022-05-16 02:48:06 +00:00
|
|
|
lstOnline.splice(index, 1)
|
2022-05-03 21:20:58 +00:00
|
|
|
|
2022-05-16 02:48:06 +00:00
|
|
|
}
|
2022-04-27 17:28:31 +00:00
|
|
|
|
2022-05-03 21:20:58 +00:00
|
|
|
|
2022-05-16 02:48:06 +00:00
|
|
|
index = lstOnlineAux.findIndex((x: any) => x.id == userId.logoutUserId)
|
|
|
|
|
|
|
|
if (index != -1) {
|
|
|
|
|
|
|
|
lstOnlineAux.splice(index, 1)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
2022-05-06 22:49:45 +00:00
|
|
|
}
|
2022-05-03 21:20:58 +00:00
|
|
|
|
2022-05-16 02:48:06 +00:00
|
|
|
if (lstOnline.length == 0) {
|
|
|
|
|
|
|
|
const index = listOnlineAux.findIndex((e: any) => e.id == userId)
|
2022-05-03 21:20:58 +00:00
|
|
|
|
2022-05-16 02:48:06 +00:00
|
|
|
if (index == -1) {
|
|
|
|
listOnlineAux.push({ 'id': userId })
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
console.log(' -------------- PULO FORA')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
lstOnline.push({ 'id': userId, 'status': 'online', 'try': 0 })
|
|
|
|
|
|
|
|
lstOnlineAux.push({ 'id': userId })
|
|
|
|
console.log(' 1 PUSHED NEW USER ID 1: ', userId)
|
|
|
|
|
|
|
|
obj.listOnline = lstOnline
|
2022-05-06 22:49:45 +00:00
|
|
|
|
|
|
|
}
|
2022-05-16 02:48:06 +00:00
|
|
|
else {
|
2022-05-03 21:20:58 +00:00
|
|
|
|
2022-05-16 02:48:06 +00:00
|
|
|
const indexAux = lstOnlineAux.findIndex((e: any) => e.id == userId)
|
2022-05-06 22:49:45 +00:00
|
|
|
|
2022-05-16 02:48:06 +00:00
|
|
|
if (indexAux == -1) {
|
|
|
|
lstOnlineAux.push({ 'id': userId })
|
|
|
|
}
|
2022-05-06 22:49:45 +00:00
|
|
|
|
2022-05-16 02:48:06 +00:00
|
|
|
const index = lstOnline.findIndex((e: any) => e.id == userId)
|
2022-05-06 22:49:45 +00:00
|
|
|
|
2022-05-16 02:48:06 +00:00
|
|
|
if (index == -1) {
|
2022-05-06 22:49:45 +00:00
|
|
|
|
|
|
|
|
2022-05-16 02:48:06 +00:00
|
|
|
lstOnline.push({ 'id': userId, 'status': 'online', 'try': 0 })
|
2022-05-06 22:49:45 +00:00
|
|
|
|
|
|
|
|
2022-05-16 02:48:06 +00:00
|
|
|
console.log(' 2 PUSHED NEW USER ID: ', userId)
|
|
|
|
|
|
|
|
obj.listOnline = lstOnline
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
|
|
|
|
if (countOnline > (lstOnline.length - 1)) {
|
|
|
|
|
|
|
|
lstOnline.forEach((x: any) => {
|
|
|
|
if (lstOnlineAux.map((e: any) => e.id).includes(x.id)) {
|
|
|
|
x.try = 0
|
|
|
|
x.status = 'online'
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
var difference = lstOnline.filter((x: any) => !lstOnlineAux.map((e: any) => e.id).includes(x.id));
|
|
|
|
|
|
|
|
|
|
|
|
if (difference.length > 0) {
|
|
|
|
|
|
|
|
difference.forEach((e) => {
|
|
|
|
|
|
|
|
e.try += 1
|
|
|
|
|
|
|
|
if (e.try > 1) {
|
|
|
|
e.status = 'waiting...'
|
|
|
|
}
|
|
|
|
|
|
|
|
if (e.try > 3) {
|
|
|
|
|
|
|
|
const index = lstOnline.findIndex((x: any) => x.id == e.id)
|
|
|
|
|
|
|
|
if (index != -1) {
|
|
|
|
|
|
|
|
lstOnline.splice(index, 1)
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
})
|
|
|
|
|
2022-05-06 22:49:45 +00:00
|
|
|
|
|
|
|
}
|
2022-05-16 02:48:06 +00:00
|
|
|
obj.listOnline = lstOnline
|
|
|
|
obj.listOnlineAux = lstOnlineAux
|
2022-05-06 22:49:45 +00:00
|
|
|
|
2022-05-16 02:48:06 +00:00
|
|
|
|
|
|
|
lstOnlineAux = []
|
|
|
|
listOnlineAux = []
|
|
|
|
|
|
|
|
countOnline = -1
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
countOnline++
|
2022-05-06 22:49:45 +00:00
|
|
|
}
|
|
|
|
|
2022-05-03 21:20:58 +00:00
|
|
|
}
|
|
|
|
|
2022-05-16 02:48:06 +00:00
|
|
|
exports.ob = obj
|
2022-05-06 22:49:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
});
|
2022-04-27 17:28:31 +00:00
|
|
|
|
2022-01-06 01:26:15 +00:00
|
|
|
socket.on("joinChatBox", (ticketId: string) => {
|
|
|
|
logger.info("A client joined a ticket channel");
|
|
|
|
socket.join(ticketId);
|
|
|
|
});
|
|
|
|
|
|
|
|
socket.on("joinNotification", () => {
|
|
|
|
logger.info("A client joined notification channel");
|
|
|
|
socket.join("notification");
|
|
|
|
});
|
|
|
|
|
|
|
|
socket.on("joinTickets", (status: string) => {
|
|
|
|
logger.info(`A client joined to ${status} tickets channel.`);
|
|
|
|
socket.join(status);
|
|
|
|
});
|
|
|
|
|
|
|
|
socket.on("disconnect", () => {
|
|
|
|
logger.info("Client disconnected");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
return io;
|
|
|
|
};
|
|
|
|
|
|
|
|
export const getIO = (): SocketIO => {
|
|
|
|
if (!io) {
|
|
|
|
throw new AppError("Socket IO not initialized");
|
|
|
|
}
|
|
|
|
return io;
|
|
|
|
};
|
2022-05-03 21:20:58 +00:00
|
|
|
|
2022-05-06 22:49:45 +00:00
|
|
|
|
|
|
|
// exports.listOnlineUsers = listUserId
|
|
|
|
// exports.listUserId
|
2022-05-16 02:48:06 +00:00
|
|
|
|