-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
253 lines (221 loc) · 9.22 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
import { initializeApp } from "https://www.gstatic.com/firebasejs/10.12.2/firebase-app.js";
import { getDatabase, ref, push, onChildAdded, set, get, onValue } from "https://www.gstatic.com/firebasejs/10.12.2/firebase-database.js";
// Funzione per codificare HTML per prevenire attacchi XSS
function encodeHTML(html) {
return document.createElement('div').appendChild(document.createTextNode(html)).parentNode.innerHTML;
}
// Funzione per ottenere l'ora corrente formattata
function getCurrentTime() {
const now = new Date();
const hours = now.getHours().toString().padStart(2, '0');
const minutes = now.getMinutes().toString().padStart(2, '0');
return `${hours}:${minutes}`;
}
// Funzione per abilitare o disabilitare una textarea
function toggleTextarea(textareaId, status) {
const textarea = document.getElementById(textareaId);
textarea.disabled = status;
}
// Funzione per abilitare o disabilitare un pulsante
function toggleButton(buttonId, status) {
const button = document.getElementById(buttonId);
button.disabled = status;
}
// Funzione per generare una stringa casuale
function generaStringaCasuale() {
return Math.random().toString(36).substring(2);
}
// Funzione per mostrare un messaggio di alert nella chat
function mostraMessaggioAlertChat(text) {
const chatMessages = document.getElementById('chatMessages');
chatMessages.innerHTML += `<div class="alert-yellow">${text}</div>`;
}
// Funzione per ricaricare la pagina con un parametro aggiuntivo
function reloadWithParameter(param, value) {
const url = new URL(window.location.href);
url.searchParams.set(param, value);
window.location.href = url.toString();
}
// Funzione per controllare se un parametro è presente nell'URL
function checkParameter(param) {
const urlParams = new URLSearchParams(window.location.search);
return urlParams.has(param);
}
// Funzione per inviare un messaggio
function inviaMessaggio(ref, message) {
if (message !== '') {
const messageData = {
sender: currentUser,
text: message
};
push(ref, messageData);
if (clickCount === 2) {
clickCount--;
}
messageInput.value = '';
}
}
// Configurazione Firebase
const firebaseConfig = {};
// Inizializzazione Firebase
const firebaseApp = initializeApp(firebaseConfig);
const database = getDatabase(firebaseApp);
const chatRef = ref(database, '/');
let currentChatId = null; // ID della chat corrente
let clickCount = 0; // Contatore dei click sul pulsante trova chat
let currentUser = generaStringaCasuale(); // ID utente corrente
let inactivityTimeout = null; // Timeout per inattività
// ID degli elementi del DOM
let IDbuttonNewChat = "trovaChatButton";
let IDInputMessage = "messageInput";
let IDChat = "chatMessages";
let IDSendButton = "sendMessageButton";
const trovaChatButton = document.getElementById(IDbuttonNewChat);
// Funzione per trovare una chat con un partecipante
function trovaChatConPartecipantiUno() {
get(chatRef).then((snapshot) => {
const data = snapshot.val();
if (data) {
let chatTrovata = false;
// Itera sulle chat esistenti per trovare una chat con un partecipante
Object.keys(data).some(chatId => {
const partecipanti = data[chatId].partecipanti;
if (partecipanti === 1 && !chatTrovata) {
mostraMessaggioAlertChat("In attesa di un utente...");
const chatRef = ref(database, `/${chatId}/partecipanti`);
set(chatRef, 2);
chatTrovata = true;
currentChatId = chatId;
return true;
}
});
if (chatTrovata) {
const partecipantiRef = ref(database, `/${currentChatId}/partecipanti`);
// Aggiungi listener per aggiornamenti sui partecipanti
onValue(partecipantiRef, (snapshot) => {
const partecipanti = snapshot.val();
if (partecipanti === 2) {
mostraMessaggioAlertChat("Utente trovato");
trovaChatButton.textContent = 'Nuova chat';
toggleTextarea(IDInputMessage, false);
toggleButton(IDbuttonNewChat, false);
avviaChat(currentChatId);
} else if (partecipanti === 0) {
mostraMessaggioAlertChat("Utente disconnesso");
trovaChatButton.textContent = 'Nuova chat';
clickCount = 2;
toggleTextarea(IDInputMessage, true);
}
});
} else if (!Object.values(data).some(room => room.partecipanti === 1)) {
// Se non ci sono chat con un partecipante, crea una nuova chat
const idChatDaInserire = generaStringaCasuale();
chatTrovata = true;
currentChatId = idChatDaInserire;
avviaChat(currentChatId);
inserisciNuovaChatNelDatabase(idChatDaInserire);
}
} else {
// Se non ci sono chat nel database, crea una nuova chat
const idChatDaInserire = generaStringaCasuale();
inserisciNuovaChatNelDatabase(idChatDaInserire);
}
}).catch((error) => {
console.error("Errore durante il recupero dei dati dal database:", error);
});
}
// Funzione per avviare la chat
function avviaChat(chatId) {
const chatRef = ref(database, `/${chatId}/messages`);
// Listener per nuovi messaggi
onChildAdded(chatRef, (snapshot) => {
const messageData = snapshot.val();
const chatMessages = document.getElementById(IDChat);
const messageClass = messageData.sender === currentUser ? 'sent' : 'received';
const messageText = messageData.text;
chatMessages.innerHTML += `<div class="message ${messageClass}">${encodeHTML(messageText)} <span class="timestamp">${getCurrentTime()}</span></div>`;
chatMessages.scrollTop = chatMessages.scrollHeight;
resetInactivityTimeout(chatId); // Resetta il timeout di inattività quando viene ricevuto un nuovo messaggio
});
const messageInput = document.getElementById(IDInputMessage);
messageInput.addEventListener('keydown', handleKeyPress);
messageInput.addEventListener('keypress', handleKeyPress);
const sendMessageButton = document.getElementById(IDSendButton);
sendMessageButton.addEventListener('click', () => {
inviaMessaggio(chatRef, messageInput.value.trim());
});
// Funzione per gestire la pressione dei tasti
function handleKeyPress(event) {
if (event.key === 'Enter' && !event.shiftKey) {
event.preventDefault();
inviaMessaggio(chatRef, messageInput.value.trim());
}
}
resetInactivityTimeout(chatId);
}
// Funzione per resettare il timeout di inattività
function resetInactivityTimeout(chatId) {
clearTimeout(inactivityTimeout);
inactivityTimeout = setTimeout(() => {
chiudiChatPerInattivita(chatId);
}, 300000);
}
// Funzione per chiudere la chat per inattività
function chiudiChatPerInattivita(chatId) {
mostraMessaggioAlertChat("Chat chiusa per inattività.");
const partecipantiRef = ref(database, `/${chatId}/partecipanti`);
set(partecipantiRef, 0);
toggleTextarea(IDInputMessage, true);
trovaChatButton.textContent = 'Nuova chat';
clickCount = 2;
}
// Funzione per inserire una nuova chat nel database
function inserisciNuovaChatNelDatabase(idChat) {
const chatPath = `/${idChat}`;
const chatData = { partecipanti: 1 };
set(ref(database, chatPath), chatData);
mostraMessaggioAlertChat("In attesa di un utente...");
const partecipantiRef = ref(database, `/${idChat}/partecipanti`);
// Listener per aggiornamenti sui partecipanti
onValue(partecipantiRef, (snapshot) => {
const partecipanti = snapshot.val();
if (partecipanti === 2) {
mostraMessaggioAlertChat("Utente trovato");
trovaChatButton.textContent = 'Nuova chat';
toggleTextarea(IDInputMessage, false);
toggleButton(IDbuttonNewChat, false);
} else if (partecipanti === 0) {
mostraMessaggioAlertChat("Utente disconnesso");
trovaChatButton.textContent = 'Nuova chat';
clickCount = 3;
toggleTextarea(IDInputMessage, true);
}
});
}
// Event listener per il pulsante trova chat
trovaChatButton.addEventListener('click', function() {
clickCount++;
if (clickCount >= 3) {
reloadWithParameter('new-chat', 'true');
} else if (clickCount === 2) {
trovaChatButton.textContent = 'Sei sicuro?';
} else {
trovaChatConPartecipantiUno();
toggleButton(IDbuttonNewChat, true);
}
});
// Funzione eseguita prima di chiudere la finestra
window.onbeforeunload = function () {
if (currentChatId) {
const chatRef = ref(database, `/${currentChatId}/partecipanti`);
set(chatRef, 0);
}
};
// Funzione eseguita al caricamento della pagina
window.onload = function() {
if (checkParameter('new-chat')) {
clickCount++;
trovaChatConPartecipantiUno();
toggleButton(IDbuttonNewChat, true);
}
};