forked from GDRCD/GDRCD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chat_save.proc.php
450 lines (366 loc) · 20.1 KB
/
chat_save.proc.php
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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
<?php
#################################################################################
# ##
# Save Chat HTML 1.3 - Author eLDiabolo ##
# ##
# e-mail: http://www.gdr-online.com/email.asp?email=eldiabolo ##
# ##
##################################################################################
#################################################################################
session_start();
/* Includo i file necessari */
include('includes/constant_values.inc.php');
include('config.inc.php');
include('vocabulary/' . $PARAMETERS['languages']['set'] . '.vocabulary.php');
include('includes/functions.inc.php');
/* Eseguo la connessione al database */
$handleDBConnection = gdrcd_connect();
$typeOrder = ($PARAMETERS['mode']['chat_from_bottom'] == 'ON') ? 'DESC' : 'ASC';
/*Query per caricamento dati dalla chat corrente, carica le azioni degli ultimi 240 min - 4 ore !! NON SALVA LE CHAT PRIVATE !!*/
if ($PARAMETERS['mode']['chatsavepvt'] == 'ON')
{
$query = gdrcd_query(" SELECT chat.id, chat.imgs, chat.mittente, chat.destinatario, chat.tipo, chat.ora, chat.testo, personaggio.url_img_chat, mappa.ora_prenotazione, mappa.privata
FROM chat
INNER JOIN mappa ON mappa.id = chat.stanza
LEFT JOIN personaggio ON personaggio.nome = chat.mittente
WHERE stanza = " . $_SESSION['luogo'] . " AND DATE_SUB(NOW(), INTERVAL 240 MINUTE) < ora ORDER BY id " . $typeOrder,
'result');
} else
{
$query = gdrcd_query(" SELECT chat.id, chat.imgs, chat.mittente, chat.destinatario, chat.tipo, chat.ora, chat.testo, personaggio.url_img_chat, mappa.ora_prenotazione, mappa.privata
FROM chat
INNER JOIN mappa ON mappa.id = chat.stanza
LEFT JOIN personaggio ON personaggio.nome = chat.mittente
WHERE stanza = " . $_SESSION['luogo'] . " AND mappa.privata = 0 AND DATE_SUB(NOW(), INTERVAL 240 MINUTE) < ora AND chat.ora > IFNULL(mappa.ora_prenotazione, '0000-00-00 00:00:00') ORDER BY id " . $typeOrder,
'result');
}
/*Inizio a preparare il testo da inserire poi nel file da salvare.*/
$add_chat = '
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="it" lang="it">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="shortcut icon" href="favicon.gif" type="image/gif" />
<link rel="stylesheet" href="' . $PARAMETERS['info']['site_url'] . '/css/homepage.css" type="text/css" />
<link rel="stylesheet" href="' . $PARAMETERS['info']['site_url'] . '/themes/' . $PARAMETERS['themes']['current_theme'] . '/main.css" type="text/css" />
<link rel="stylesheet" href="' . $PARAMETERS['info']['site_url'] . '/themes/' . $PARAMETERS['themes']['current_theme'] . '/chat.css" type="text/css" />
<link rel="stylesheet" href="' . $PARAMETERS['info']['site_url'] . '/layouts/' . $PARAMETERS['themes']['kind_of_layout'] . '_frames.php?css=true" type="text/css" />
</head>
<body class="main_body" style="overflow:auto; text-align:justify;">
';
$i = 0;
/* Eseguo la query e le formattazioni */
while ($row = gdrcd_query($query, 'fetch'))
{
/** BEGIN "Icone di Chat by eLDiabolo"
*
* Modifica immagini di chat. Icone razza, genere e gilda.
* Per farle apparire impostare i parametri relativi nel file config.inc.php
* se impostato su On compaiono le icone di gilda, in automatico riempie gli spazi vuoti
* per chi non ha raggiunto il limite dei simboli possibili così da avere la chat più ordinata
*
* v 1.3
* @author eLDiabolo
*/
$add_icon = '';
if ($PARAMETERS['mode']['chaticons'] == 'ON')
{
$add_icon .= '<span class="chat_icons">';
$icone_chat = explode(";", gdrcd_filter('out', $row['imgs']));
/*Aggiunta per rendere utilizzabile la chat anche in mancanza dell'installazione della patch Icone Chat
* Save Chat HTML 1.3
*@author eLDiabolo
*/
if (isset($PARAMETERS['settings']['chat']['guilds']))
{
if ($PARAMETERS['settings']['chat']['race'] == 'ON')
{
$add_icon .= '<img class="presenti_ico" src="' . $PARAMETERS['info']['site_url'] . '/themes/' . $PARAMETERS['themes']['current_theme'] . '/imgs/icons/races/' . $icone_chat[1] . '">';
}
if ($PARAMETERS['settings']['chat']['gender'] == 'ON')
{
$add_icon .= '<img class="presenti_ico" src="' . $PARAMETERS['info']['site_url'] . '/imgs/icons/testamini' . $icone_chat[0] . '.png">';
}
if ($PARAMETERS['settings']['chat']['guilds'] == 'ON')
{
$query_ruoli = "SELECT clgpersonaggioruolo.id_ruolo, ruolo.nome_ruolo, ruolo.immagine FROM clgpersonaggioruolo INNER JOIN ruolo ON ruolo.id_ruolo = clgpersonaggioruolo.id_ruolo WHERE clgpersonaggioruolo.personaggio='" . $row['mittente'] . "'";
$result_ruoli = gdrcd_query($query_ruoli, 'result');
$gilde = 0;
if (gdrcd_query($result_ruoli, 'num_rows') > 0)
{
while ($ruoli = gdrcd_query($result_ruoli, 'fetch'))
{
$gilde++;
$add_icon .= '<img class="presenti_ico" src="' . $PARAMETERS['info']['site_url'] . '/themes/' . $PARAMETERS['themes']['current_theme'] . '/imgs/guilds/' . $ruoli['immagine'] . '" alt="' . gdrcd_filter('out',
$record3['nome_ruolo']) . '" title="' . gdrcd_filter('out',
$ruoli['nome_ruolo']) . '" />';
}
}
for ($i = $PARAMETERS['settings']['guilds_limit']; $i > $gilde; $i--)
{
$add_icon .= '<img class="presenti_ico" src="' . $PARAMETERS['info']['site_url'] . '/imgs/icons/guilds/null.png" alt="" title="" />';
}
}
} else
{
/*Aggiunta per rendere utilizzabile la chat anche in mancanza dell'installazione della patch Icone Chat
* Save Chat HTML 1.3
*@author eLDiabolo
*/
$add_icon .= '<img class="presenti_ico" src="' . $PARAMETERS['info']['site_url'] . '/themes/' . $PARAMETERS['themes']['current_theme'] . '/imgs/icons/races/' . $icone_chat[1] . '">';
$add_icon .= '<img class="presenti_ico" src="' . $PARAMETERS['info']['site_url'] . '/imgs/icons/testamini' . $icone_chat[0] . '.png">';
}
/*Corretta la svista riportata nel pacchetto "Icone Chat v 1.1"
*@author eLDiabolo
*/
$add_icon .= '</span>';
}
/** END "Icone di Chat by eLDiabolo"
*
* @author eLDiabolo
*/
switch ($row['tipo'])
{
case 'P':
/** * Fix problema visualizzazione spazi vuoti con i sussurri
* @author eLDiabolo
*/
$add_chat .= '<div class="chat_row_' . $row['tipo'] . '">';
/** * Avatar di chat
* @author Blancks
*/
if ($PARAMETERS['mode']['chat_avatar'] == 'ON' && ! empty($row['url_img_chat']))
{
$add_chat .= '<img src="' . $row['url_img_chat'] . '" class="chat_avatar" style="width:' . $PARAMETERS['settings']['chat_avatar']['width'] . 'px; height:' . $PARAMETERS['settings']['chat_avatar']['height'] . 'px;" />';
}
$add_chat .= '<span class="chat_time">' . gdrcd_format_time($row['ora']) . '</span>';
if ($PARAMETERS['mode']['chaticons'] == 'ON')
{
$add_chat .= $add_icon;
}
$add_chat .= '<span class="chat_name"><a href="#" onclick="Javascript: document.getElementById(\'tag\').value=\'' . $row['mittente'] . '\'; document.getElementById(\'type\')[2].selected = \'1\'; document.getElementById(\'message\').focus();">' . $row['mittente'] . '</a>';
if (empty ($row['destinatario']) === false)
{
$add_chat .= '<span class="chat_tag"> [' . gdrcd_filter('out', $row['destinatario']) . ']</span>';
}
$add_chat .= ': </span> ';
$add_chat .= '<span class="chat_msg">' . gdrcd_chatcolor(gdrcd_filter('out', $row['testo'])) . '</span>';
/** * Fix problema visualizzazione spazi vuoti con i sussurri
* @author eLDiabolo
*/
if ($PARAMETERS['mode']['chat_avatar'] == 'ON')
{
$add_chat .= '<br style="clear:both;" />';
}
$add_chat .= '</div>';
break;
case 'A':
/** * Fix problema visualizzazione spazi vuoti con i sussurri
* @author eLDiabolo
*/
$add_chat .= '<div class="chat_row_' . $row['tipo'] . '">';
/** * Avatar di chat
* @author Blancks
*/
if ($PARAMETERS['mode']['chat_avatar'] == 'ON' && ! empty($row['url_img_chat']))
{
$add_chat .= '<img src="' . $row['url_img_chat'] . '" class="chat_avatar" style="width:' . $PARAMETERS['settings']['chat_avatar']['width'] . 'px; height:' . $PARAMETERS['settings']['chat_avatar']['height'] . 'px;" />';
}
$add_chat .= '<span class="chat_time">' . gdrcd_format_time($row['ora']) . '</span>';
if ($PARAMETERS['mode']['chaticons'] == 'ON')
{
$add_chat .= $add_icon;
}
$add_chat .= '<span class="chat_name"><a href="#" onclick="Javascript: document.getElementById(\'tag\').value=\'' . $row['mittente'] . '\'; document.getElementById(\'type\')[2].selected = \'1\'; document.getElementById(\'message\').focus();">' . $row['mittente'] . '</a>';
if (empty ($row['destinatario']) === false)
{
$add_chat .= '<span class="chat_tag"> [' . gdrcd_filter('out', $row['destinatario']) . ']</span>';
}
$add_chat .= '</span> ';
$add_chat .= '<span class="chat_msg">' . gdrcd_chatcolor(gdrcd_filter('out', $row['testo'])) . '</span>';
/** * Fix problema visualizzazione spazi vuoti con i sussurri
* @author eLDiabolo
*/
if ($PARAMETERS['mode']['chat_avatar'] == 'ON')
{
$add_chat .= '<br style="clear:both;" />';
}
$add_chat .= '</div>';
break;
case 'S':
if ($_SESSION['login'] == $row['destinatario'])
{
/** * Fix problema visualizzazione spazi vuoti con i sussurri
* @author eLDiabolo
*/
$add_chat .= '<div class="chat_row_' . $row['tipo'] . '">';
$add_chat .= '<span class="chat_name">' . $row['mittente'] . ' ' . $MESSAGE['chat']['whisper']['by'] . ': </span> ';
$add_chat .= '<span class="chat_msg">' . gdrcd_filter('out', $row['testo']) . '</span>';
/** * Fix problema visualizzazione spazi vuoti con i sussurri
* @author eLDiabolo
*/
$add_chat .= '</div>';
} else
{
if ($_SESSION['login'] == $row['mittente'])
{
/** * Fix problema visualizzazione spazi vuoti con i sussurri
* @author eLDiabolo
*/
$add_chat .= '<div class="chat_row_' . $row['tipo'] . '">';
$add_chat .= '<span class="chat_msg">' . $MESSAGE['chat']['whisper']['to'] . ' ' . gdrcd_filter('out',
$row['destinatario']) . ': </span>';
$add_chat .= '<span class="chat_msg">' . gdrcd_filter('out', $row['testo']) . '</span>';
/** * Fix problema visualizzazione spazi vuoti con i sussurri
* @author eLDiabolo
*/
$add_chat .= '</div>';
} else
{
if (($_SESSION['permessi'] >= MODERATOR) && ($PARAMETERS['mode']['spyprivaterooms'] == 'ON'))
{
/** * Fix problema visualizzazione spazi vuoti con i sussurri
* @author eLDiabolo
*/
$add_chat .= '<div class="chat_row_' . $row['tipo'] . '">';
$add_chat .= '<span class="chat_msg">' . $row['mittente'] . ' ' . $MESSAGE['chat']['whisper']['from_to'] . ' ' . gdrcd_filter('out',
$row['destinatario']) . ' </span>';
$add_chat .= '<span class="chat_msg">' . gdrcd_filter('out', $row['testo']) . '</span>';
/** * Fix problema visualizzazione spazi vuoti con i sussurri
* @author eLDiabolo
*/
$add_chat .= '</div>';
}
}
}
break;
case 'N':
/** * Fix problema visualizzazione spazi vuoti con i sussurri
* @author eLDiabolo
*/
$add_chat .= '<div class="chat_row_' . $row['tipo'] . '">';
$add_chat .= '<span class="chat_time">' . gdrcd_format_time($row['ora']) . '</span>';
$add_chat .= '<span class="chat_name">' . $row['destinatario'] . '</span> ';
$add_chat .= '<span class="chat_msg">' . gdrcd_chatcolor(gdrcd_filter('out', $row['testo'])) . '</span>';
/** * Fix problema visualizzazione spazi vuoti con i sussurri
* @author eLDiabolo
*/
$add_chat .= '</div>';
break;
case 'M':
/** * Fix problema visualizzazione spazi vuoti con i sussurri
* @author eLDiabolo
*/
$add_chat .= '<div class="chat_row_' . $row['tipo'] . '">';
$add_chat .= '<span class="chat_master">' . gdrcd_filter('out', $row['testo']) . '</span>';
/** * Fix problema visualizzazione spazi vuoti con i sussurri
* @author eLDiabolo
*/
$add_chat .= '</div>';
break;
case 'I':
/** * Fix problema visualizzazione spazi vuoti con i sussurri
* @author eLDiabolo
*/
$add_chat .= '<div class="chat_row_' . $row['tipo'] . '">';
$add_chat .= '<img class="chat_img" src="' . gdrcd_filter('out', $row['testo']) . '" />';
/** * Fix problema visualizzazione spazi vuoti con i sussurri
* @author eLDiabolo
*/
$add_chat .= '</div>';
break;
case 'C':
/** * Fix problema visualizzazione spazi vuoti con i sussurri
* @author eLDiabolo
*/
$add_chat .= '<div class="chat_row_' . $row['tipo'] . '">';
$add_chat .= '<span class="chat_time">' . gdrcd_format_time($row['ora']) . '</span>';
$add_chat .= '<span class="chat_msg">' . gdrcd_filter('out', $row['testo']) . '</span>';
/** * Fix problema visualizzazione spazi vuoti con i sussurri
* @author eLDiabolo
*/
$add_chat .= '</div>';
break;
case 'D':
/** * Fix problema visualizzazione spazi vuoti con i sussurri
* @author eLDiabolo
*/
$add_chat .= '<div class="chat_row_' . $row['tipo'] . '">';
$add_chat .= '<span class="chat_time">' . gdrcd_format_time($row['ora']) . '</span>';
$add_chat .= '<span class="chat_msg">' . gdrcd_filter('out', $row['testo']) . '</span>';
/** * Fix problema visualizzazione spazi vuoti con i sussurri
* @author eLDiabolo
*/
$add_chat .= '</div>';
break;
case 'O':
/** * Fix problema visualizzazione spazi vuoti con i sussurri
* @author eLDiabolo
*/
$add_chat .= '<div class="chat_row_' . $row['tipo'] . '">';
$add_chat .= '<span class="chat_time">' . gdrcd_format_time($row['ora']) . '</span>';
$add_chat .= '<span class="chat_msg">' . gdrcd_filter('out', $row['testo']) . '</span>';
/** * Fix problema visualizzazione spazi vuoti con i sussurri
* @author eLDiabolo
*/
$add_chat .= '</div>';
break;
}
$i++;
$add_chat .= '#stop#';
}
$add_chat .= '
</body>
</html>
';
/* Scrivo tutto in un file di testo */
$start = gdrcd_format_datetime_cat($start_time);
$end = gdrcd_format_datetime_cat($end_time);
/* Scrivo tutto in un file di testo */
$file = $start . "-" . $end . "-" . $_SESSION['login'];
$rand = rand(1, 10000);
$file = md5($file . $rand);
$file = $file . ".html";
if ($PARAMETERS['mode']['chatsave_link'] == 'ON')
{
$file = "giocate/" . $file;
$fp = fopen($file, 'wb');
$message = str_replace("#stop#", "\r\n", $add_chat);
fwrite($fp, $message, strlen($message));
fclose($fp);
echo '<a href="' . $file . '">Link giocata</a>';
}
if ($PARAMETERS['mode']['chatsave_download'] == 'ON')
{
$fp = fopen($file, "wb");
$message = str_replace("#stop#", "\r\n", $add_chat);
fwrite($fp, $message, 65536);
fclose($fp);
/* Do le informazioni di download */
header("Content-Disposition: attachment; filename=" . urlencode($file));
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");
header("Content-Description: File Transfer");
header("Content-Length: " . filesize($file));
/* Passo le info del file al browser */
$fp = fopen($file, "r");
while ( ! feof($fp))
{
print fread($fp, 65536);
flush();
}
fclose($fp);
/* Elimino il file temporaneo */
unlink($file);
/* Chiudo la finestra aperta */
}
if ($PARAMETERS['mode']['chatsave_download'] == 'ON' && $PARAMETERS['mode']['chatsave_link'] == 'OFF')
{
?>
<script language="JavaScript1.2">
self.close();
</script>
<?php } ?>