5 * Copyright (C) 2006-2015 Matteo Nastasi
6 * mailto: nastasi@alternativeoutput.it
7 * matteo.nastasi@milug.org
8 * web: http://www.alternativeoutput.it
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABLILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details. You should have received a
19 * copy of the GNU General Public License along with this program; if
20 * not, write to the Free Software Foundation, Inc, 59 Temple Place -
21 * Suite 330, Boston, MA 02111-1307, USA.
26 define('BRISK_CONF', "brisk.conf.pho");
27 define('FTOK_PATH', "/var/lib/brisk");
28 define('LEGAL_PATH', "/tmp/legal_brisk");
29 define('PROXY_PATH', "/var/lib/brisk_proxy");
30 define('TABLES_N', 36);
31 define('TABLES_APPR_N', 12);
32 define('TABLES_AUTH_N', 8);
33 define('TABLES_CERT_N', 4);
34 define('PLAYERS_N', 3);
35 define('MAX_POINTS', 5);
36 define('MAX_PLAYERS', (20 + (PLAYERS_N * TABLES_N)));
37 define('SHM_DIMS_MIN', (50000 + 10000 * TABLES_N + 15000 * MAX_PLAYERS));
38 define('SHM_DIMS_MAX', SHM_DIMS_MIN + 1048576);
39 define('SHM_DIMS_DLT', 65536);
41 define('SHM_DIMS_U_MIN', 4096);
42 define('SHM_DIMS_U_MAX', 65536);
43 define('SHM_DIMS_U_DLT', 4096);
46 define('COMM_GEN_N', 50);
49 define('CHAT_ILL_TIME', 6);
50 define('CHAT_ENABLED', TRUE);
52 define('SESS_LEN', 13);
53 define('STREAM_TIMEOUT', 60);
54 /* FIXME: move to sac-a-push .phh */
55 /* TIME_RD define the server-side timeout, after half of it a ping request
56 is sent to client, after this time the client is log out */
57 define('EXPIRE_TIME_RD', 180);
58 define('EXPIRE_TIME_SMAMMA', 360);
59 define('EXPIRE_TIME_WAG', 10);
60 define('WAKEUP_TIME', 12);
61 // BAN_TIME da allineare anche in commons.js
62 define('BAN_TIME', 900);
63 define('GARBAGE_TIMEOUT', 5);
64 define('NICKSERV', "BriskServ");
66 define('LOCK_SHARE_MAX', 10000);
68 define('DBG_ONL2', 0x000001);
69 define('DBG_ONLY', 0x000002);
70 define('DBG_MAIN', 0x000004);
71 define('DBG_READ', 0x000008);
72 define('DBG_REA2', 0x000010);
73 define('DBG_SEND', 0x000020);
74 define('DBG_LOCK', 0x000040);
75 define('DBG_WRIT', 0x000080);
76 define('DBG_LOAD', 0x000100);
77 define('DBG_AUTH', 0x000200);
78 define('DBG_CRIT', 0x000400);
79 define('DBG_LMOP', 0x000800);
80 define('DBG_TRAC', 0x001000);
81 define('DBG_SHME', 0x002000);
82 define('DBG_ENGI', 0x004000);
83 define('DBG_CDS', 0x008000);
84 define('DBG_STEP', 0x010000);
85 // NOTE: BRISK DEBUG must be a numerical constant, not the result of operations on symbols
86 define('BRISK_DEBUG', 0x0800);
88 define('BRISK_SINGLE_DEBUG',0);
89 define('BRISK_SINGLE_SESS', "");
90 define('DEBUGGING', "no-debugging");
92 define('BSK_BUSTING', "dev");
94 require_once("$DOCUMENT_ROOT/Etc/".BRISK_CONF);
95 require_once("${G_base}Obj/ipclass.phh");
97 $mlang_brisk = array( 'btn_backstand'=> array( 'it' => 'torna in piedi',
98 'en' => 'back standing' ),
99 'btn_close' => array( 'it' => 'chiudi',
102 'tit_all' => array( 'it' => 'tutti',
105 'tabtout_a'=> array( 'it' => '<br>Sei stato inattivo per ',
106 'en' => '<br>You are being idle for ' ),
107 'tabtout_b'=> array( 'it' => ' minuti. <br><br>Quindi ritorni tra i <b>Giocatori in piedi</b>.',
108 'en' => ' minutes. <br><br>Then you return with the <b>standing players</b>.'),
109 'tickmust' => array( 'it' => '<br>Per attivare il messaggio di segnalazione del tavolo occorre essere seduti.<br><br>',
110 'en' => '<br>To activate the signalling message of the table it\'s necessary to be sitting<br><br>'),
111 'tickjust' => array( 'it' => '<br>Il messaggio di segnalazione del tavolo è già attivato.<br><br> ',
112 'en' => 'EN<br>Il messaggio di segnalazione del tavolo è già attivato.<br><br> '),
113 'tickwait' => array( 'it' => '<br>Il messaggio di segnalazione del tavolo<br>è disattivato ancora per %d second%s.<br><br>',
114 'en' => 'EN<br>The signalling message of the table<br>will be deactivated for %d second%s.<br><br>'),
115 'alarpass' => array( 'it' => '<br>La password digitata non è corretta.<br><br>',
116 'en' => '<br>The entered password is not correct.<br><br>'),
117 'alarret' => array( 'it' => 'Alarm \\"<b>%s</b>\\" inviato a <b>%s</b>.',
118 'en' => 'Alarm \\"<b>%s</b>\\" sent to <b>%s</b>.'),
119 'authmust' => array( 'it' => '<b>Per autenticare qualcuno devi a tua volta essere autenticato e certificato.</b>',
120 'en' => '<b>To authenticate someone you have to be authenticated and certified.</b>'), // on your turn
121 'mesgmust' => array( 'it' => '<b>Per inviare un messaggio devi essere autenticato.</b>',
122 'en' => '<b>To send a message you have to be authenticated.</b>'),
123 'nickmust' => array( 'it' => 'Il nickname deve contenere almeno una lettera dell\'alfabeto o una cifra.',
124 'en' => 'The nickname have to contain at least one letter or one number.'),
125 'nickdupl' => array( 'it' => 'Nickname <b>%s</b> già in uso.',
126 'en' => 'The nickname <b>%s</b> is already in use.'),
127 'authchan' => array( 'it' => '<b>Non puoi cambiare nick a un tavolo per soli autenticati o se sei in modalità isolata.</b>',
128 'en' => '<b>You can\'t change your nickname into a table for only authenticated or if you are in isolation mode.</b>'),
129 'nickjust' => array( 'it' => 'Il nickname <b>\'%s\'</b> è già registrato, <b>se il suo proprietario si autentificherà verrai rinominato d\'ufficio come ghost<i>N</i>.</b>',
130 'en' => 'The nickname <b>\'%s\'</b> is already registered, <b>if its proprietary will authenticate you will named again officially ghost<i>N</i>.</b>'), // FIXME: him ???
131 'statunkn' => array( 'it' => 'Questo stato non esiste.',
132 'en' => 'This state don\'t exists.'),
133 'tabincon' => array( 'it' => '<br>I dati del tavolo n° %d sono inconsistenti, verranno resettati.<br><br>Torni in piedi.<br><br>',
134 'en' => 'EN <br>I dati del tavolo n° %d sono inconsistenti, verranno resettati.<br><br>Torni in piedi.<br><br>'),
135 'listmust' => array( 'it' => '<b>Per andare in isolamento non bisogna essere seduti a tavoli non riservati.</b>',
136 'en' => '<b>To go to isolation you must don\'t stay on not reserved tables</b>'),
138 'tit_onisol'=>array( 'it' => '(autenticati)',
139 'en' => '(authenticated)'),
140 'db_failed' =>array('it' => '<br>Il collegamento al database è fallito.<br>Temporaneamente tutte le autenticazioni verranno sospese, accederai a Brisk come un utente normale.<br><br>Ci scusiamo per il disagio.',
141 'en' => 'Connection to the database failed<br>All authentications are suspended temporarly, you login as normal user.<br>We are about the limitation'),
143 'tos_old' => array( 'it' => '<b>%s</b> ha sottoscritto dei Termini del Servizio antecedenti a quelli necessari per poter richiedere questa funzionalità.',
144 'en' => 'EN <b>%s</b> ha sottoscritto dei Termini del Servizio antecedenti a quelli necessarig per poter richiedere questa funzionalità.'),
145 'inf_self' => array( 'it' => 'Non puoi informarti su te stesso.',
146 'en' => 'EN Non puoi informarti su te stesso.'),
147 'inf_nfd' => array( 'it' => 'Non è stato trovato un garante per <b>%s</b>.',
148 'en' => 'EN Non è stato trovato un garante per <b>%s</b>.'),
149 'inf_err' => array( 'it' => 'Error %d. Utilizzo: <b>/info <i><login></i></b>.',
150 'en' => 'Error %d. Usage: <b>/info <i><login></i></b>.')
153 $G_lng = langtolng($G_lang);
155 $G_all_points = array( 11,10,4,3,2, 0,0,0,0,0 );
156 $G_brisk_version = "5.9.1";
158 /* MLANG: ALL THE INFO STRINGS IN brisk.phh */
159 $root_wellarr = array( 'it' => array ( 'Brisk (Ver. '.$G_brisk_version.'), <b>NOVITA\'</b>: possibilità di vedere solo tavoli e utenti registrati.' ),
160 # , 'Se vuoi iscriverti alla <a target="_blank" href="mailto:ml-briscola+subscribe@milug.org">Mailing List</a>, cliccala!' ),
161 'en' => array ( 'EN Brisk (Ver. '.$G_brisk_version.'), <b>NOVITA\'</b>: puoi creare la tua rete di amicizie con /info,',
162 'vedere cosa pensano i tuoi amici degli altri utenti e tavoli riservati per registrati e apprendisti.',
163 'Se vuoi iscriverti alla <a target="_blank" href="mailto:ml-briscola+subscribe@milug.org">Mailing List</a>, cliccala!' ) );
165 $G_room_help = array( 'it' => '
166 <div style=\\"text-align: left; padding: 8px;\\">
167 <b>Descrizione</b><br>
168 Questa è un\'implementazione della briscola in cinque, così come è spiegata su
169 <a target=\\"_blank\\" href=\\"http://it.wikipedia.org/wiki/Briscola#Gioco_a_5\\">Wikipedia</a>; in breve è la variante con l\'asta prima sulla carta e poi sui punti.<br><br>
170 <b>Configurazione del browser.</b><br>
171 Occorre abilitare i cookies.<br>
173 <b>Uso del sito</b><br>
174 Potete sedervi a un tavolo o rimanere in piedi.<br>
175 Se al vostro tavolo si raggiungono i 5 giocatori inizia automaticamente la partita.<br>
178 All\'inizio vengono distribuite le carte e parte l\'asta; per partecipare all\'asta, quando sarà il vostro turno, potrete scegliere se andare avanti o passare cliccando sulle icone corrispondenti. Se si arriva ai punti, scrivete nella textbox il vostro rilancio e cliccate PUNTI.<br><br>
179 Chi vince l\'asta dovrà decidere il seme della carta scelta e inizierà la mano.<br>
180 Per giocare le carte dovrete trascinarle nel quadrato al centro del vostro schermo.<br><br>
181 Il vostro turno è sempre segnalato da una cornice verde lampeggiante intorno al quadrato al centro del vostro schermo.<br><br>
182 Durante la partita, se vorrete ricaricare la pagina, usate l\'apposito bottone \\"reload\\" in basso a destra.<br>
183 Dopo che è iniziata una partita per uscirne dovete chiedere agli altri giocatori di sbloccarla cliccando sul lucchetto. Se non si segue questa prassi, una volta usciti, non vi potrete sedere a nessun tavolo per '.floor(BAN_TIME/60).' minuti.
185 <dt><b>Comandi della chat</b>
186 <!-- <dd><b>/nick <i><nuovo_nickname></i></b> - cambio di nickname -->
187 <dd><b>/tav <i><frase di invito></i></b> - invito per gli altri giocatori al tavolo dove si è seduti
188 <dd><b>/st <i><stato></i></b> - cambia l\'icona associata al tuo user; <i>stato</i> può valere: \\"normale\\", \\"fuori\\", \\"pausa\\", \\"cibo\\", \\"cane\\", \\"lavoro\\", \\"presente\\" oppure \\"sigaretta\\"
189 <dd><b>/cont <i><id partita></i></b> - quando si è a un tavolo per garantiti, permette di proseguire una partita giocata in precedenza con gli stessi giocatori
190 <dd><b>/info <i><login></i></b> - mostra lo stato corrente dell\'utente passato come argomento e in che relazione siete
191 <dd><b>/authreq</b> - se si è autenticati permette di garantire per un utente fidato
192 <dd><b>/mesgtoadm</b> - se si è autenticati permette di lasciare un messaggio all\'amministratore del sito
193 <!-- <dd><b>/listen <all or auth></b> - se si è autenticati permette leggere solo i messaggi degli altri autenticati (auth) o di tutti (all) -->
199 <div style=\\"text-align: left; padding: 8px;\\">
200 <b>EN Descrizione</b><br>
201 EN Questa è un\'implementazione della briscola in cinque, così come è spiegata su
202 <a target=\\"_blank\\" href=\\"http://it.wikipedia.org/wiki/Briscola#Gioco_a_5\\">Wikipedia</a>; in breve è la variante con l\'asta prima sulla carta e poi sui punti.<br><br>
203 <b>Configurazione del browser.</b><br>
204 Occorre abilitare i cookies.<br>
206 <b>Uso del sito</b><br>
207 Potete sedervi a un tavolo o rimanere in piedi.<br>
208 Se al vostro tavolo si raggiungono i 5 giocatori inizia automaticamente la partita.<br>
211 All\'inizio vengono distribuite le carte e parte l\'asta; per partecipare all\'asta, quando sarà il vostro turno, potrete scegliere se andare avanti o passare cliccando sulle icone corrispondenti. Se si arriva ai punti, scrivete nella textbox il vostro rilancio e cliccate PUNTI.<br><br>
212 Chi vince l\'asta dovrà decidere il seme della carta scelta e inizierà la mano.<br>
213 Per giocare le carte dovrete trascinarle nel quadrato al centro del vostro schermo.<br><br>
214 Il vostro turno è sempre segnalato da una cornice verde lampeggiante intorno al quadrato al centro del vostro schermo.<br><br>
215 Durante la partita, se vorrete ricaricare la pagina, usate l\'apposito bottone \\"reload\\" in basso a destra.<br>
216 Dopo che è iniziata una partita per uscirne dovete chiedere agli altri giocatori di sbloccarla cliccando sul lucchetto. Se non si segue questa prassi, una volta usciti, non vi potrete sedere a nessun tavolo per '.floor(BAN_TIME/60).' minuti.
218 <dt><b>Comandi della chat</b>
219 <dd><b>/nick <i><nuovo_nickname></i></b> - cambio di nickname
220 <dd><b>/tav <i><frase di invito></i></b> - invito per gli altri giocatori al tavolo dove si è seduti
221 <dd><b>/st <i><stato></i></b> - cambia l\'icona associata al tuo user; <i>stato</i> può valere: \\"normale\\", \\"fuori\\", \\"pausa\\", \\"cibo\\", \\"cane\\", \\"lavoro\\", \\"presente\\" oppure \\"sigaretta\\"
222 <dd><b>/cont <i><id partita></i></b> - quando si è a un tavolo per garantiti, permette di proseguire una partita giocata in precedenza con gli stessi giocatori
223 <dd><b>/info <i><login></i></b> - mostra lo stato corrente dell\'utente passato come argomento e in che relazione siete
224 <dd><b>/authreq</b> - se si è autenticati permette di garantire per un utente fidato
225 <dd><b>/mesgtoadm</b> - se si è autenticati permette di lasciare un messaggio all\'amministratore del sito
226 <!-- <dd><b>/listen <all or auth></b> - se si è autenticati permette leggere solo i messaggi degli altri autenticati (auth) o di tutti (all) -->
232 $G_room_passwdhowto = array( 'it' => '<br><h2>Come registrarsi su Brisk</h2>
233 <div style=\\"text-align: left; padding: 8px;\\">
234 Attualmente ci sono due metodi per ottenere una password sul sito:<br><br>
236 <li><b>Facendosi garantire da un utente di Brisk che sia certificato.</b><br><br>
237 <li><b>Auto-garantendosi utilizzando uno dei seguenti sistemi di identificazione digitale:</b><br><br>
239 <li>Carta Regionale dei Servizi della Lombardia (la tessera sanitaria)
240 <li>Carta Regionale dei Servizi del Friuli Venezia Giulia (la tessera sanitaria)
241 <li>Smart card di InfoCamere
244 <b>Per auto-garantisi occorre possedere:</b><br><br>
246 <li>il codice PIN della propria carta
247 <li>il lettore di smart-card per collegare la carta al PC (acquistabile di solito presso le edicole)
250 <b>Per effettuare la registrazione collegarsi al sito:</b> <a class=\\"flat\\" target=\\"_blank\\" href=\\"https://brisk.mine.nu\\">https://brisk.mine.nu</a>
252 Se sei in possesso di una carta che permette l\'identificazione via internet che non è nell\'elenco qui sopra
253 <a class=\\"flat\\" href=\\"mailto:authadmbrisk@alternativeoutput.it\\">fai una segnalazione</a>.<br><br>
254 Le regole per ottenere la certificazione sono in via di definizione, l\' unica accettata è la conoscenza
255 diretta dell\' utente da parte dell\' amministratore.
260 'en' => '<br><h2>EN Come registrarsi su Brisk</h2>
261 <div style=\\"text-align: left; padding: 8px;\\">
262 EN Attualmente ci sono due metodi per ottenere una password sul sito:<br><br>
264 <li><b>Facendosi garantire da un utente di Brisk che già possidede una password</b><br><br>
265 <li><b>Auto-garantendosi utilizzando uno dei seguenti sistemi di identificazione digitale:</b><br><br>
267 <li>Carta Regionale dei Servizi della Lombardia (la tessera sanitaria)
268 <li>Carta Regionale dei Servizi del Friuli Venezia Giulia (la tessera sanitaria)
271 <b>Per auto-garantisi occorre possedere:</b><br><br>
273 <li>il codice PIN della propria carta
274 <li>il lettore di smart-card per collegare la carta al PC (acquistabile di solito presso le edicole)
277 <b>Per effettuare la registrazione collegarsi al sito:</b> <a class=\\"flat\\" target=\\"_blank\\" href=\\"https://brisk.mine.nu\\">https://brisk.mine.nu</a>
279 Se sei in possesso di una carta che permette l\'identificazione via internet che non è nell\'elenco qui sopra
280 <a class=\\"flat\\" href=\\"mailto:authadmbrisk@alternativeoutput.it\\">fai una segnalazione</a>.<br><br>
281 Le regole per ottenere la certificazione sono in via di definizione, l\' unica accettata è la conoscenza
282 diretta dell\' utente da parte dell\' amministratore.
289 <dd>Seguendo la procedura di auto-garanzia all\'url: <a href="https://brisk.mine.nu">https://brisk.mine.nu</a>
293 $G_room_about = array( 'it' => '<br>
294 <div id=\\"header\\" class=\\"header\\">
295 <img class=\\"nobo\\" src=\\"img/brisk_logo64.png\\">
296 briscola chiamata in salsa ajax
298 <br><b>version '.$G_brisk_version.'</b><br><br>
299 Copyright 2006-2012 <a href=\\"mailto:brisk@alternativeoutput.it\\">Matteo Nastasi</a> (aka mop)<br><br>',
301 <div id=\\"header\\" class=\\"header\\">
302 <img class=\\"nobo\\" src=\\"img/brisk_logo64.png\\">
303 declaration briscola in ajax sauce <b>(Beta)</b>
305 <br><b>version '.$G_brisk_version.'</b><br><br>
306 Copyright 2006-2012 <a href=\\"mailto:brisk@alternativeoutput.it\\">Matteo Nastasi</a> (aka mop)<br><br>');
309 $G_PG_vow = array("a", "e", "i", "o", "u", "y");
312 "b", "bb", "bc", "bd", "bf", "bg", "bk", "bl", "bm", "bn", "bp", "br", "bs", "bt", "bv", "bw", "bz",
313 "c", "cb", "cc", "cd", "cf", "cg", "ck", "cl", "cm", "cn", "cp", "cq", "cr", "cs", "ct", "cv", "cw", "cx", "cz",
314 "d", "db", "dc", "dd", "df", "dg", "dk", "dl", "dm", "dn", "dp", "dr", "ds", "dt", "dv", "dw", "dx", "dz",
315 "f", "fb", "fc", "fd", "ff", "fg", "fk", "fl", "fm", "fn", "fp", "fr", "fs", "ft", "fv", "fw", "fx", "fz",
316 "g", "gb", "gc", "gd", "gf", "gg", "gk", "gl", "gm", "gn", "gp", "gr", "gs", "gt", "gv", "gw", "gx", "gz",
317 "j", "jb", "jc", "jd", "jf", "jg", "jk", "jl", "jm", "jn", "jp", "jq", "jr", "js", "jt", "jv", "jw", "jx", "jz",
318 "k", "kb", "kc", "kd", "kf", "kg", "kk", "kl", "km", "kn", "kp", "kr", "ks", "kt", "kv", "kw", "kx", "kz",
319 "l", "lb", "lc", "ld", "lf", "lg", "lk", "ll", "lm", "ln", "lp", "lr", "ls", "lt", "lv", "lw", "lx", "lz",
320 "m", "mb", "mc", "md", "mf", "mg", "mk", "ml", "mm", "mn", "mp", "mr", "ms", "mt", "mv", "mw", "mx", "mz",
321 "n", "nb", "nc", "nd", "nf", "ng", "nk", "nl", "nm", "nn", "np", "nr", "ns", "nt", "nv", "nw", "nx", "nz",
322 "p", "pb", "pc", "pd", "pf", "pg", "pk", "pl", "pm", "pn", "pp", "pr", "ps", "pt", "pv", "pw", "px", "pz",
323 "q", "qb", "qc", "qd", "qf", "qg", "qk", "ql", "qm", "qn", "qp", "qq", "qr", "qs", "qt", "qv", "qw", "qx", "qz",
324 "r", "rb", "rc", "rd", "rf", "rg", "rk", "rl", "rm", "rn", "rp", "rr", "rs", "rt", "rv", "rw", "rx", "rz",
325 "s", "sb", "sc", "sd", "sf", "sg", "sk", "sl", "sm", "sn", "sp", "sq", "sr", "ss", "st", "sv", "sw", "sx", "sz",
326 "t", "tb", "tc", "td", "tf", "tg", "tk", "tl", "tm", "tn", "tp", "tr", "ts", "tt", "tv", "tw", "tx", "tz",
327 "v", "vb", "vc", "vd", "vf", "vg", "vk", "vl", "vm", "vn", "vp", "vr", "vs", "vt", "vv", "vw", "vx", "vz",
328 "w", "wb", "wc", "wd", "wf", "wg", "wk", "wl", "wm", "wn", "wp", "wr", "ws", "wt", "wv", "ww", "wx", "wz",
329 "x", "xb", "xc", "xd", "xf", "xg", "xk", "xl", "xm", "xn", "xp", "xr", "xs", "xt", "xv", "xw", "xx", "xz",
330 "z", "zb", "zc", "zd", "zf", "zg", "zk", "zl", "zm", "zn", "zp", "zr", "zs", "zt", "zv", "zw", "zx", "zz",
332 // $G_PG_cons_n = count($G_PG_cons);
333 // printf("N CONS: %d\n", $G_PG_cons_n);
335 /* printf("%d %d\n", count($voc), count($cons)); */
336 /* for ($i = 0 ; $i < 26 ; $i++) { */
337 /* if (array_search(chr(ord('a') + $i), $voc) !== FALSE || $i == 7) */
339 /* printf(' "%s", ', chr(ord('a') + $i)); */
340 /* for ($e = 0 ; $e < 26 ; $e++) { */
341 /* if (array_search(chr(ord('a') + $e), $voc) !== FALSE || $e == 7) */
343 /* printf('"%s%s", ', chr(ord('a') + $i), chr(ord('a') + $e)); */
350 return (ip2long($s));
355 return (long2ip($i));
358 function int2four($l)
360 if (PHP_INT_SIZE == 4)
363 return ( ($l & 0x80000000 ? 0xffffffff00000000 : 0x00) | $l );
366 function four2int($s)
368 return ($s & 0xffffffff);
373 return int2four( ip2int($s) );
378 return int2ip( four2int($i) );
381 function nickserv_msg($dt, $msg) {
382 return sprintf('chatt_sub("%s",[0x040003,"%s"],"%s");', $dt, NICKSERV, $msg);
385 function passwd_gen($seed = NULL)
387 GLOBAL $G_PG_vow, $G_PG_vow_n, $G_PG_cons, $G_PG_cons_n;
396 for ($sil = 0 ; $sil < 7 ; $sil++) {
397 if (($sil % 2) == 0) {
399 for ($n = 0 ; $n < mt_rand(1,2) ; $n++) {
401 $old = mt_rand(0, $G_PG_vow_n-1);
402 $pw .= $G_PG_vow[$old];
405 $new = mt_rand(0, $G_PG_vow_n-1);
407 $new = ($new + mt_rand(0, $G_PG_vow_n-2)) % $G_PG_vow_n;
408 $pw .= $G_PG_vow[$new];
414 $pw .= $G_PG_cons[mt_rand(0, $G_PG_cons_n-1)];
421 function cmd_return($val, $desc)
423 return array('val' => $val, 'desc' => $desc);
426 function cmd_serialize($attrs)
431 foreach ($attrs as $key => $value) {
432 $ret .= $sep . $key . '=' . urlencode($value);
438 function cmd_deserialize($cmd)
441 $a = explode('&', $cmd);
443 while ($i < count($a)) {
444 $b = split('=', $a[$i]);
445 $ret[urldecode($b[0])] = urldecode($b[1]);
456 function versions_cmp($v1, $v2)
458 // printf("V1: [%s]\nV2: [%s]\n", $v1, $v2);
462 $v1_ar = split('\.', $v1);
463 $v2_ar = split('\.', $v2);
465 $v2_ct = count($v2_ar);
467 for ($i = 0 ; $i < count($v1_ar) ; $i++) {
468 if (($v2_ct - 1) < $i) {
471 // printf("here [%s] [%s]\n", $v1_ar[$i], $v2_ar[$i]);
472 if ($v1_ar[$i] != $v2_ar[$i]) {
473 if (strval($v1_ar[$i]) < strval($v2_ar[$i]))
482 // return string with IPV4 address
483 function addrtoipv4($addr)
485 $ipv4addr_arr = explode(':' , $addr);
486 if (isset($ipv4addr_arr[3])) {
487 $ipv4addr = $ipv4addr_arr[3];
497 for ($i = 0; $i < ob_get_level(); $i++)
499 ob_implicit_flush(1);
503 function force_no_cache(&$header_out)
505 $header_out['Pragma'] = 'no-cache, must-revalidate';
506 $header_out['Cache-Control'] = 'no-cache';
507 $header_out['Expires'] = '-1';
510 function file_lock($fname, $is_exclusive)
512 if (($res = @fopen($fname, "r+")) == FALSE) {
516 if (flock($res, ($is_exclusive ? LOCK_EX : LOCK_SH)) == FALSE) {
524 function file_unlock($res)
527 flock($res, LOCK_UN);
532 $escpush_from = array("\\", "\"");
533 $escpush_to = array("\\\\", "\\\"");
536 GLOBAL $escpush_from, $escpush_to;
538 return str_replace($escpush_from, $escpush_to, $s);
541 $escinp_from = array( "\"" );
542 $escinp_to = array( """ );
544 function escinput($s)
546 GLOBAL $escinp_from, $escinp_to;
548 return str_replace($escinp_from, $escinp_to, $s);
553 return htmlentities($s, ENT_COMPAT, "UTF-8");
556 function esclfhtml($s)
558 return str_replace(" ", " ", str_replace("\n", "<br>", htmlspecialchars($s)));
561 function langtolng($lang)
565 return ($G_lang == 'en' ? '-en' : '');
568 function csplitter($in, $sep)
574 for ($i = 0 ; $i < strlen($in) ; $i++) {
575 $ini = substr($in, $i, 1);
579 else if ($ini == $sep) {
598 $from = array ( '\\', '@', '|' );
599 $to = array ( '\\\\', '@', '¦' );
601 return (str_replace($from, $to, htmlentities($s,ENT_COMPAT,"UTF-8")));
606 $from = array ( '\\', '|', "\t", "\n");
607 $to = array ( '\\\\', '\\|', "\\t", "\\n");
609 return (str_replace($from, $to, $s));
612 function xcapemesg($s)
614 $from = array ( "\n");
615 $to = array ( "\\n");
617 return (str_replace($from, $to, $s));
627 function getbyid($idx)
629 return ($this->el[$idx]);
632 function setbyid($idx, $v)
634 $this->el[$idx] = $v;
638 define('TABLE_AUTH_TY_PUBL', 0);
639 define('TABLE_AUTH_TY_APPR', 1);
640 define('TABLE_AUTH_TY_AUTH', 2);
641 define('TABLE_AUTH_TY_CERT', 3);
649 var $auth_type; // required authorization to sit down
656 var $table_start; // information field
664 function create($idx)
666 if (($thiz = new Table()) == FALSE)
670 $thiz->player = array();
673 if ($idx < TABLES_CERT_N)
674 $thiz->auth_type = TABLE_AUTH_TY_CERT;
675 else if ($idx < TABLES_AUTH_N)
676 $thiz->auth_type = TABLE_AUTH_TY_AUTH;
677 else if ($idx < TABLES_APPR_N)
678 $thiz->auth_type = TABLE_AUTH_TY_APPR;
680 $thiz->auth_type = TABLE_AUTH_TY_PUBL;
686 $thiz->table_token = "";
687 $thiz->table_start = 0;
689 $thiz->wakeup_time = 0;
696 $this->idx = $from->idx;
697 $this->player = array();
698 for ($i = 0 ; $i < $from->player_n ; $i++)
699 $this->player[$i] = $from->player[$i];
700 $this->player_n = $from->player_n;
702 log_main("PLAYER_N - parent::copy.".$this->player_n);
704 $this->auth_type = $from->auth_type;
706 $this->wag_own = $from->wag_own;
707 $this->wag_com = $from->wag_com;
708 $this->wag_tout = $from->wag_tout;
710 $this->table_token = $from->table_token;
711 $this->table_start = $from->table_start;
713 $this->wakeup_time = $from->wakeup_time;
716 function myclone($from)
718 if (($thiz = new Table()) == FALSE)
726 function spawn($from)
728 if (($thiz = new Table()) == FALSE)
731 $thiz->idx = $from->idx;
732 $thiz->player = array();
733 for ($i = 0 ; $i < $from->player_n ; $i++)
734 $thiz->player[$i] = $i;
735 $thiz->player_n = $from->player_n;
737 $thiz->auth_type = $from->auth_type;
739 $thiz->wag_own = $from->wag_own;
740 $thiz->wag_com = $from->wag_com;
741 $thiz->wag_tout = $from->wag_tout;
743 $thiz->table_token = $from->table_token;
744 $thiz->table_start = $from->table_start;
746 $thiz->wakeup_time = $from->wakeup_time;
751 function wag_set($user_idx, $mesg)
755 $this->wag_own = $user_idx;
756 $this->wag_com = $mesg;
760 function wag_reset($timeout)
762 log_main("WAG_RESET");
764 unset($this->wag_own);
767 $this->wag_tout = $timeout;
770 function player_get($idx)
772 return ($this->player[$idx]);
775 function player_set($idx, $player)
777 $this->player[$idx] = $player;
780 function user_add($idx)
782 $this->player[$this->player_n] = $idx;
785 return ($this->player_n - 1);
788 function user_rem($brisk, $user)
790 $tabpos = $user->table_pos;
792 /* verifico la consistenza dei dati */
793 if ($brisk->user[$this->player[$tabpos]] == $user) {
795 /* aggiorna l'array dei giocatori al tavolo. */
796 for ($i = $tabpos ; $i < $this->player_n-1 ; $i++) {
797 $this->player[$i] = $this->player[$i+1];
798 $user_cur = $brisk->user[$this->player[$i]];
799 $user_cur->table_pos = $i;
804 log_main("INCONSISTENCY ON TABLE.");
808 // Table->act_content - return 'id' of type of output required for table button
809 function act_content($user)
812 $isstanding = ($user->subst == 'standup');
813 $sitted = $this->player_n;
815 $cur_table = $user->table;
819 if ($sitted < PLAYERS_N) {
820 switch ($this->auth_type) {
821 case TABLE_AUTH_TY_CERT:
822 if ($user->is_cert() && !$user->is_appr())
827 case TABLE_AUTH_TY_AUTH:
828 if ($user->is_auth() && !$user->is_appr())
833 case TABLE_AUTH_TY_APPR:
834 if ($user->is_auth())
849 if ($table == $cur_table)
856 $ret = sprintf('j_tab_act_cont(%d, \'%s\');', $table, $act);
869 function Delay_Manager($triglevel)
871 $this->triglevel = $triglevel;
872 $this->delta = array();
873 $this->lastcheck = 0;
876 function delta_get($curtime)
878 // clean too old delta items
879 for ($i = 0 ; $i < count($this->delta) ; $i++) {
880 if ($this->delta[$i][0] < $curtime) {
881 array_splice($this->delta, $i, 1);
886 // add new delta items if delay exceeded $this->triglevel sec
887 if ($curtime > $this->lastcheck + $this->triglevel && $curtime < $this->lastcheck + 1200.0) {
888 $delta = $curtime - $this->lastcheck - $this->triglevel;
889 array_push($this->delta, array($curtime + $delta , $delta));
890 // fprintf(STDERR, "DELTA: add new delta [%f] [%f] [%f]\n", $this->triglevel, $curtime + $delta, $delta);
893 // extract the maximum valid delta
895 for ($i = 0 ; $i < count($this->delta) ; $i++) {
896 $delta_cur = $this->delta[$i][1];
897 if ($delta_max < $delta_cur)
898 $delta_max = $delta_cur;
901 // fprintf(STDERR, "DELTA: status %d, delta_max: %f\n", count($this->delta), $delta_max);
906 function lastcheck_set($curtime)
908 $this->lastcheck = $curtime;
916 function Client_prefs()
920 static function from_user($user)
922 $thiz = new Client_prefs();
923 $thiz->user_load($user);
928 static function from_json($json)
930 $thiz = new Client_prefs();
931 if ($thiz->json_load($json) == FALSE) {
939 function user_load($user)
941 // fprintf(STDERR, "QQ %s: %x\n", __FUNCTION__, $user->flags);
942 $this->listen = ($user->flags & USER_FLAG_MAP_AUTH) >> 2;
943 if ($user->rec != FALSE) {
944 $this->supp_comp = $user->rec->supp_comp_get();
947 $this->supp_comp = "000000000000";
950 // fprintf(STDERR, "QQ %s: LISTEN: %d\n", __FUNCTION__, $this->listen);
953 function json_load($json_s)
958 if (gettype($json_s) == "string") {
959 if (($json = json_decode($json_s)) == FALSE)
965 if ($this->listen < 0 || $this->listen > 2)
967 $this->listen = $json->listen;
969 if (mb_strlen($json->supp_comp, "ASCII") != 12)
972 for ($i = 0, $idx = 0 ; $i < 12 ; $i++) {
973 if (($json->supp_comp[$i] >= '0' && $json->supp_comp[$i] <= '9') ||
974 ($json->supp_comp[$i] >= 'a' && $json->supp_comp[$i] <= 'f'))
980 $this->supp_comp = $json->supp_comp;
987 function store($user, $is_save)
990 // fprintf(STDERR, "QQ %s::%s PRE: %x\n", __CLASS__, __FUNCTION__,
991 // $user->flags & (~USER_FLAG_S_ALL & ~USER_FLAG_AUTH));
992 $user->flags_set(($this->listen << 2), USER_FLAG_MAP_AUTH);
993 // fprintf(STDERR, "QQ %s::%s %x\n", __CLASS__, __FUNCTION__,
995 if ($user->is_supp_custom()) {
996 $user->rec->supp_comp_set($this->supp_comp);
999 $user->prefs_store();
1003 define('GHOST_SESS_TOUT', 1800);
1004 define('GHOST_SESS_REAS_LOUT', 1); // logout
1005 define('GHOST_SESS_REAS_ANOT', 2); // another user get session
1006 define('GHOST_SESS_REAS_TOUT', 3); // room timeout
1007 define('GHOST_SESS_REAS_TTOT', 4); // table timeout
1008 define('GHOST_SESS_REAS_ANON', 5); // anonymizer access
1009 define('GHOST_SESS_REAS_PROX', 6); // proxy access
1017 function GhostSessEl($time, $sess, $reas)
1019 $this->time = $time + GHOST_SESS_TOUT;
1020 $this->sess = $sess;
1021 $this->reas = $reas;
1029 function GhostSess()
1031 $this->gs = array();
1034 // push or update for this session
1035 function push($time, $sess, $reas)
1037 foreach($this->gs as $el) {
1038 if ($el->sess == "$sess") {
1040 $el->time = $time + GHOST_SESS_TOUT;
1045 $this->gs[] = new GhostSessEl($time, $sess, $reas);
1051 foreach($this->gs as $key => $el) {
1052 if ($el->sess == "$sess") {
1053 $ret = $this->gs[$key];
1054 unset($this->gs[$key]);
1061 function garbage_manager($curtime)
1063 foreach($this->gs as $key => $el) {
1064 if ($el->time < $curtime) {
1065 unset($this->gs[$key]);
1075 var $crystal_filename;
1079 var $comm; // commands for many people
1080 var $step; // current step of the comm array
1081 var $garbage_timeout;
1084 var $ban_list; // ban list (authized allowed)
1085 var $black_list; // black list (anti-dos, noone allowed)
1086 var $cloud_smasher; // list of cloud ip ranges to be rejected
1092 public static $sess_cur;
1100 static function create($crystal_filename, $ban_list, $black_list, $cloud_smasher) {
1101 if (($brisk_ser = @file_get_contents($crystal_filename)) != FALSE) {
1102 if (($brisk = unserialize($brisk_ser)) != FALSE) {
1103 fprintf(STDERR, "ROOM FROM FILE\n");
1104 rename($crystal_filename, $crystal_filename.".old");
1106 $brisk->reload(TRUE, $ban_list, $black_list, $cloud_smasher);
1112 fprintf(STDERR, "NEW ROOM\n");
1113 $thiz = new Brisk();
1115 $thiz->crystal_filename = $crystal_filename;
1116 $thiz->user = array();
1117 $thiz->table = array();
1118 $thiz->match = array();
1120 $thiz->ban_list = IpClass::create();
1121 $thiz->black_list = IpClass::create();
1122 $thiz->cloud_smasher = IpClass::create();
1123 $thiz->ghost_sess = new GhostSess();
1125 for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
1126 $thiz->user[$i] = User::create($thiz, $i, "", "");
1129 for ($i = 0 ; $i < TABLES_N ; $i++) {
1130 $thiz->table[$i] = Table::create($i);
1132 $thiz->garbage_timeout = 0;
1133 $thiz->shm_sz = SHM_DIMS_MIN;
1135 $thiz->delay_mgr = new Delay_Manager(1.5);
1137 static::$sess_cur = FALSE;
1139 $thiz->reload(TRUE, $ban_list, $black_list, $cloud_smasher);
1144 function reload($is_first, $ban_list, $black_list, $cloud_smasher)
1146 fprintf(STDERR, "RELOAD STUFF (%d)(%d)(%d)\n",
1147 count($ban_list), count($black_list), count($cloud_smasher));
1149 if (defined('CURL_DE_SAC_VERS')) {
1150 if (brisk_cds_reload($this) == FALSE) {
1154 $this->ban_list->update($ban_list);
1155 $this->black_list->update($black_list);
1156 $this->cloud_smasher->update($cloud_smasher);
1159 $this->banned_kickoff();
1160 $this->garbage_manager(TRUE);
1164 function banned_kickoff()
1168 for ($table_idx = 0 ; $table_idx < TABLES_N ; $table_idx++) {
1169 $table_cur = $this->table[$table_idx];
1170 // if the table is complete and exists we check users IP
1172 if ($table_cur->player_n == PLAYERS_N) {
1173 if (isset($this->match[$table_idx]) &&
1174 $table_cur->table_token == $bin5->table_token) {
1175 log_main("PLAYERS == N TABLE ".$table_idx);
1177 $bin5 = $this->match[$table_idx];
1179 $is_ban |= $bin5->banned_kickoff();
1184 for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
1185 $user_cur = $this->user[$i];
1187 if ($user_cur->is_active() == FALSE)
1190 // check if the IP is blacklisted
1191 if ($this->black_check($user_cur->ip) ||
1192 $this->cloud_check($user_cur->ip)) {
1193 $user_cur->lacc = 0;
1198 // if authorized not check if banlisted
1199 if ($user_cur->is_auth()) {
1203 if ($this->ban_check($user_cur->ip)) {
1204 $user_cur->lacc = 0;
1212 function ban_check($ip_str)
1214 return ($this->ban_list->check($ip_str));
1217 function black_check($ip_str)
1219 return ($this->black_list->check($ip_str));
1222 function cloud_check($ip_str)
1224 return ($this->cloud_smasher->check($ip_str));
1227 function users_cleanup()
1230 for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
1231 $user_cur = $this->user[$i];
1233 if ($user_cur->the_end
1234 && (($user_cur->rd_toflush == FALSE
1235 && $user_cur->rd_step == $user_cur->step)
1236 || $user_cur->rd_endtime_is_expired($curtime))
1238 $user_cur->reset(); // users_cleanup, OK
1243 function garbage_manager($force)
1245 GLOBAL $G_lang, $mlang_brisk, $G_base;
1249 log_rd2("garbage_manager START");
1251 /* Garbage collector degli utenti in timeout */
1252 $curtime = microtime(TRUE);
1254 $delta = $this->delay_mgr->delta_get($curtime);
1256 if (!$force && !($this->garbage_timeout < $curtime)) {
1257 $this->delay_mgr->lastcheck_set($curtime);
1261 // Before all align times with table timeout
1262 for ($table_idx = 0 ; $table_idx < TABLES_N ; $table_idx++) {
1263 $table_cur = $this->table[$table_idx];
1264 // if the table is complete and exists its shared mem we get the info about users lacc
1266 if ($table_cur->player_n == PLAYERS_N) {
1267 log_main("PLAYERS == N TABLE ".$table_idx);
1270 $no_recovery = FALSE;
1271 if (isset($this->match[$table_idx])) {
1272 $bin5 = $this->match[$table_idx];
1274 if ($table_cur->table_token != $bin5->table_token) {
1275 log_main("ERROR: not matching table_token. Brisk: ".$table_cur->table_token." Table: ".$bin5->table_token);
1276 log_main("ERROR: not matching table_start. Brisk: ".$table_cur->table_start." Table: ".$bin5->table_start);
1277 $no_recovery = TRUE;
1281 if ($bin5 != FALSE) {
1285 log_main("garbage_manager: bri loaded successfully.");
1286 $bin5->garbage_manager(TRUE);
1288 $bin5_table = $bin5->table[0];
1290 // is the end of the table
1292 if ($bin5->the_end == TRUE) {
1294 * DESTROY OF FINISHED TABLE && MOVE PLAYER TO ROOM AGAIN
1296 log_main("garbage_manager: INSIDE THE END.");
1298 $plist = "$table_cur->table_token|$table_cur->idx|$table_cur->player_n";
1299 for ($i = 0 ; $i < $table_cur->player_n ; $i++) {
1300 $plist .= '|'.$this->user[$table_cur->player[$i]]->sess;
1303 for ($i = 0 ; $i < $bin5_table->player_n ; $i++) {
1304 // stat must be "table" by definition
1305 $user_cur = $this->user[$table_cur->player[$i]];
1306 $bin5_user = $bin5->user[$i];
1308 $user_cur->subst = $bin5_user->subst;
1309 $user_cur->rd_step = $bin5_user->rd_step;
1310 $user_cur->step = $bin5_user->step;
1311 $user_cur->lacc = $bin5_user->lacc;
1312 $user_cur->laccwr = $bin5_user->lacc;
1313 $user_cur->bantime = $bin5_user->bantime;
1314 $user_cur->the_end = $bin5_user->the_end;
1315 if ($user_cur->the_end) {
1316 $this->ghost_sess->push($curtime, $user_cur->sess, GHOST_SESS_REAS_TTOT);
1320 log_legal($curtime, $user_cur->ip, $user_cur, "STAT:DESTROY_GAME", $plist);
1322 $this->room_join_wakeup($user_cur, FALSE, 0);
1323 $table_cur->table_token = "";
1324 $table_cur->wakeup_time = $curtime + WAKEUP_TIME;
1326 $this->match_del($table_idx);
1329 log_main("gm:: save_data");
1331 for ($i = 0 ; $i < $bin5_table->player_n ; $i++) {
1332 $this->user[$table_cur->player[$i]]->lacc = $bin5->user[$i]->lacc;
1335 } // if ($bin5 == FALSE
1336 else if ($no_recovery == FALSE) {
1337 log_crit("ERROR: table ".$table_idx." unrecoverable join");
1339 for ($i = 0 ; $i < $table_cur->player_n ; $i++) {
1340 $user_cur = $this->user[$table_cur->player[$i]];
1341 $user_cur->subst = "shutdowner";
1342 $user_cur->step_inc();
1344 $ret = sprintf('stat = "%s"; subst = "%s";', $user_cur->stat, $user_cur->subst);
1345 $ret .= "gst.st = ".($user_cur->step+1)."; ";
1346 // MLANG <br>I dati del tavolo n° ".$user_cur->table." sono inconsistenti, verranno resettati.<br><br>Torni in piedi.<br><br>
1347 $prestr = sprintf($mlang_brisk['tabincon'][$G_lang], $user_cur->table);
1348 $ret .= show_notify($prestr, 2000, $mlang_brisk['btn_close'][$G_lang], 400, 110);
1349 $user_cur->comm[$user_cur->step % COMM_N] = $ret;
1350 $user_cur->step_inc();
1353 $plist = "$table_cur->table_token|$user_cur->table|$table_cur->player_n";
1354 for ($i = 0 ; $i < $table_cur->player_n ; $i++) {
1355 $plist .= '|'.$this->user[$table_cur->player[$i]]->sess;
1357 log_legal($curtime, $user_cur->ip, $user_cur, "STAT:DESTROY_GAME(RECOVERY)", $plist);
1359 $this->room_join_wakeup($user_cur, TRUE, -2);
1360 $table_cur->table_token = "";
1363 } // if ($table_cur->player_n == PLAYERS_N) {
1364 } // for ($table_idx = 0 ; $table_idx < TABLES_N ; $table_idx++) {
1366 log_rd2("out new loop.");
1368 for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
1369 $user_cur = $this->user[$i];
1371 log_rd2("User: ".$user_cur->name." stat: ".$user_cur->stat." subst: ".$user_cur->subst);
1373 if ($user_cur->is_active() == FALSE)
1376 if ($user_cur->lacc + (($user_cur->ping_req ? 1.5 : 1.0) * EXPIRE_TIME_RD) < ($curtime - $delta)) {
1377 // Auto logout dell'utente
1378 log_rd2("AUTO LOGOUT.".($user_cur->lacc + EXPIRE_TIME_RD)." curtime - delta ".($curtime - $delta));
1380 $this->ghost_sess->push($curtime, $user_cur->sess, GHOST_SESS_REAS_TOUT);
1381 $user_cur->the_end = TRUE;
1383 log_rd2("AUTO LOGOUT.");
1384 if ($user_cur->stat == 'table' || $user_cur->stat == 'room') {
1385 log_auth($user_cur->sess, "Autologout session.");
1387 if ($user_cur->subst == 'sitdown' || $user_cur->stat == 'table')
1388 $this->room_wakeup($user_cur);
1389 else if ($user_cur->subst == 'standup')
1390 $this->room_outstandup($user_cur);
1392 log_rd2("LOGOUT FROM WHAT ???");
1396 if ($user_cur->laccwr + EXPIRE_TIME_SMAMMA < ($curtime - $delta)) { // lo rimettiamo in piedi
1397 if ($user_cur->stat == 'room' && $user_cur->subst == 'sitdown') {
1398 $this->room_wakeup($user_cur);
1399 $user_cur->comm[$user_cur->step % COMM_N] = "gst.st = ".($user_cur->step+1)."; ";
1400 /* MLANG: <br>Sei stato inattivo per ".(EXPIRE_TIME_SMAMMA/60.0)." minuti. <br><br>Quindi ritorni tra i <b>Giocatori in piedi</b>.", "torna ai tavoli" */
1401 $user_cur->comm[$user_cur->step % COMM_N] .= show_notify($mlang_brisk['tabtout_a'][$G_lang].(EXPIRE_TIME_SMAMMA/60.0).$mlang_brisk['tabtout_b'][$G_lang], 0, $mlang_brisk['btn_backstand'][$G_lang], 400, 100);
1402 $user_cur->step_inc();
1406 log_rd2("GARBAGE UPDATED!");
1408 $this->garbage_timeout = $curtime + GARBAGE_TIMEOUT;
1411 $this->ghost_sess->garbage_manager($curtime);
1413 $this->delay_mgr->lastcheck_set($curtime);
1417 function show_room($user_step, $user)
1419 GLOBAL $G_lang, $mlang_brisk;
1420 log_main("show_room: username: ".$user->name);
1422 $ret = sprintf('gst.st = %d; ', $user_step);
1424 $prefs = Client_prefs::from_user($user);
1425 $ret .= sprintf('prefs_load(\'%s\', false, false);', json_encode($prefs));
1428 if ($user->flags & USER_FLAG_ISOLAUTH) {
1429 $ret .= 'list_set(\'isolation\', false, \''.$mlang_brisk['tit_onisol'][$G_lang].'\' ); ';
1432 $ret .= 'list_set(\'all\', false, \'\' ); ';
1436 if ($user->subst == 'standup')
1437 $ret .= "tra.show(); ";
1439 $ret .= "tra.hide(); ";
1441 $ret .= sprintf('stat = "%s";', $user->stat);
1443 $ret .= root_welcome($user);
1444 if ($user->flags & USER_FLAG_DBFAILED) {
1445 $ret .= "gst.st = ".($user->step+1)."; ";
1446 $ret .= show_notify($mlang_brisk['db_failed'][$G_lang], 0, $mlang_brisk['btn_close'][$G_lang], 400, 140);
1449 $ret .= sprintf('subst = "%s";', $user->subst);
1450 $ret .= $user->myname_innerHTML();
1452 for ($i = 0 ; $i < TABLES_N ; $i++) {
1454 $ret .= $this->table_content($user, $i);
1456 $ret .= $this->table[$i]->act_content($user);
1457 if ($this->table[$i]->wag_own != -1)
1458 $ret .= sprintf('tra.add(%d, "%s: %s"); ', $i, $this->user[$this->table[$i]->wag_own]->name, $this->table[$i]->wag_com);
1460 $ret .= sprintf('tra.rem(%d); ', $i);
1462 $ret .= $this->standup_content($user);
1463 $ret .= "setTimeout(preload_images, 0, g_preload_img_arr, g_imgct); ";
1468 function room_wakeup($user)
1470 $table_idx = $user->table;
1471 $table = $this->table[$table_idx];
1473 log_main("WAKEUP: begin function table:".$table_idx." stat: ".$user->stat." subst: ".$user->subst);
1477 $from_table = ($user->stat == "table");
1479 log_main("WAKEUP: from table [".$user->table."] nplayers_n: ".$this->table[$user->table]->player_n);
1481 for ($i = 0 ; $i < $table->player_n ; $i++) {
1482 $user_cur = $this->user[$table->player[$i]];
1483 log_main("PREIMPOST: INLOOP name: ".$user_cur->name);
1485 if ($user->idx_get() != $table->player[$i]) {
1486 $user_cur->stat_set("room");
1487 $user_cur->subst = "sitdown";
1488 $user_cur->laccwr = $curtime;
1490 else if ($user->is_active()) {
1491 $user_cur->stat_set("room");
1492 $user_cur->subst = "standup";
1493 $user_cur->laccwr = $curtime;
1494 $user_cur->table = -1;
1499 $user->stat_set("room");
1500 $user->subst = "standup";
1501 $user->laccwr = $curtime;
1504 $remove_wagon = FALSE;
1505 if($table->wag_own == $user->idx_get()) {
1506 $table->wag_reset($curtime);
1507 $remove_wagon = TRUE;
1510 /* aggiorna l'array dei giocatori al tavolo. */
1511 $table->user_rem($this, $user);
1513 for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
1514 $user_cur = $this->user[$i];
1515 if ($user_cur->is_active() == FALSE || $user_cur->stat != 'room') // is not active user or the stat isn't 'room'
1518 // log_main("VALORI: name: ".$user_cur->name."from_table: ".$from_table." tab: ".$user_cur->table." taix: ".$table_idx." ucur: ".$user_cur." us: ".$user);
1520 $ret = "gst.st = ".($user_cur->step+1)."; ".($remove_wagon ? sprintf("tra.rem(%d);",$table_idx) : "");
1521 if ($from_table && ($user_cur->table == $table_idx || $user->idx_get() == $i)) {
1522 $ret .= 'gst.st_loc++; xstm.stop(); window.onunload = null; window.onbeforeunload = null; document.location.assign("index.php");|';
1523 // $ret .= 'gst.st_loc++; document.location.assign("index.php");|';
1524 log_main("DOCUMENT.index.php: from table");
1526 else if ($user_cur->stat == "room") {
1527 log_main("DOCUMENT.index.php: from table");
1529 $ret .= $this->table_content($user_cur, $table_idx);
1530 $ret .= $this->standup_content($user_cur);
1532 // $ret .= table_act_content(FALSE, 0, $table_idx, $user->table, FALSE);
1533 $ret .= $table->act_content($user);
1535 if ($user->idx_get() == $i) {
1536 // set the new status
1537 $ret .= 'subst = "standup"; tra.show(); ';
1538 // clean the action buttons in other tables
1539 for ($e = 0 ; $e < TABLES_N ; $e++) {
1540 if ($this->table[$e]->player_n < PLAYERS_N) {
1541 $ret .= $this->table[$e]->act_content($user);
1546 $ret .= $table->act_content($user_cur);
1549 log_wr("ROOM_WAKEUP: ".$ret);
1550 $user_cur->comm[$user_cur->step % COMM_N] = $ret;
1551 $user_cur->step_inc();
1555 function room_join_wakeup($user, $update_lacc = FALSE, $trans_delta)
1557 $table_idx = $user->table;
1558 $table = $this->table[$table_idx];
1560 log_main("JOIN_WAKEUP: begin function table:".$table_idx." stat: ".$user->stat." subst: ".$user->subst);
1563 $user_wup = array();
1565 $user_tab = array();
1567 log_main("JOIN WAKEUP: from table [".$user->table."] nplayers_n: ".$this->table[$user->table]->player_n);
1569 for ($i = 0 ; $i < $table->player_n ; $i++) {
1570 $user_cur = $this->user[$table->player[$i]];
1571 log_main("PREIMPOST INLOOP name: ".$user_cur->name);
1572 if ($user_cur->is_empty()) {
1575 if ($update_lacc == TRUE) {
1576 $user_cur->laccwr = $curtime;
1578 log_main("cur: ".$user_cur->name." subst: ".$user_cur->subst);
1579 if ($user_cur->subst == "shutdowned") {
1580 $user_cur->stat_set("room");
1581 $user_cur->subst = "sitdown";
1583 else if ($user_cur->subst == "shutdowner") {
1584 $user_cur->stat_set("room");
1585 $user_cur->subst = "standup";
1586 $user_cur->table = -1;
1587 $user_wup[$user_wup_n++] = $user_cur;
1589 $remove_wagon = FALSE;
1590 if($table->wag_own == $table->player[$i]) {
1591 $remove_wagon = TRUE;
1592 $table->wag_reset($curtime);
1595 $user_tab[$user_tab_n++] = $table->player[$i];
1598 for ($wup_idx = 0 ; $wup_idx < $user_wup_n ; $wup_idx++)
1599 $table->user_rem($this, $user_wup[$wup_idx]);
1601 /* aggiorna l'array dei giocatori al tavolo. */
1603 for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
1604 log_main("START LOOP");
1605 $user_cur = $this->user[$i];
1606 if ($user_cur->is_active() == FALSE || $user_cur->stat != 'room') { // is not active user or the stat isn't 'room'
1607 log_main("name: ".$user_cur->name."skip subst: ".$user_cur->subst);
1612 log_main("VALORI name: ".$user_cur->name." tab: ".$user_cur->table." taix: ".$table_idx);
1614 $ret = "gst.st = ".($user_cur->step+1)."; ".($remove_wagon ? sprintf("tra.rem(%d);",$table_idx) : "");
1615 if ($user_cur->stat == "room") {
1616 log_main("DOCUMENT.index.php from table");
1618 $ret .= $this->table_content($user_cur, $table_idx);
1619 $ret .= $this->standup_content($user_cur);
1621 $ret .= $table->act_content($user_cur);
1624 for ($tab_idx = 0 ; $tab_idx < $user_tab_n ; $tab_idx++)
1625 if ($user_tab[$tab_idx] == $i)
1628 // for users that wakeup the room will be reconstructed by index_rd.php
1629 if ($tab_idx < $user_tab_n) {
1630 log_main("PRE show_room username: ".$user_cur->name." STEP: ".$user_cur->step);
1632 // ARRAY_POP DISABLED
1633 // if ($trans_delta == 0)
1634 // while (array_pop($user_cur->comm) != NULL);
1636 $user_cur->trans_step = $user_cur->step + 1 + $trans_delta;
1637 $user_cur->comm[$user_cur->step % COMM_N] = "";
1638 $user_cur->step_inc();
1639 $user_cur->comm[$user_cur->step % COMM_N] = $this->show_room(($user_cur->step + 1), $user_cur);
1640 $user_cur->step_inc();
1641 log_main("POST show_room username: ".$user_cur->name." STEP: ".$user_cur->step);
1645 log_main("JOIN_WAKEUP wup_idx ".$wup_idx." wup_n ".$user_wup_n);
1647 log_main("JOIN_WAKEUP more");
1649 $ret .= $table->act_content($user_cur);
1651 log_main("JOIN_WAKEUP end more");
1653 log_wr("ROOM_JOIN_WAKEUP: ".$ret);
1654 $user_cur->comm[$user_cur->step % COMM_N] = $ret;
1655 $user_cur->step_inc();
1660 function info_show($user, $target, $dt)
1662 if success return assoc. array with "ret" => 0 and other fields
1663 else return an assoc. array with "ret: != 0 and "mesg" with an error description
1665 function info_show($user, $target, $dt)
1667 GLOBAL $G_lang, $mlang_brisk, $G_base;
1674 if ($target == "") {
1678 if (($bdb = BriskDB::create()) == FALSE) {
1682 if ($target == $user->name) {
1684 $mesg = sprintf($mlang_brisk['inf_self'][$G_lang]);
1687 if (($user_item = $bdb->getitem_bylogin($target, $user_code)) == FALSE) {
1691 if (($guar_item = $bdb->getitem_bycode($user_item->guar_code_get())) != FALSE) {
1692 $guar_login = $guar_item->login_get();
1697 $user_tos_vers = $user_item->tos_vers_get();
1699 $partyskill = $bdb->usersnet_partyskill($user->code, $user_item->code);
1701 $widefriend = $bdb->usersnet_widefriend($user->code, $user_item->code);
1702 $widefriend['skill'] = $bdb->usersnet_wideskill($user->code, $user_item->code);
1703 $narrowfriend = $bdb->usersnet_narrowfriend($user->code, $user_item->code);
1704 $narrowfriend['skill'] = $bdb->usersnet_narrowskill($user->code, $user_item->code);
1706 if (($usersnet_item = $bdb->usersnet_bycode($user->code, $user_item->code,
1707 $widefriend, $narrowfriend)) == FALSE) {
1708 $usersnet_item = $bdb->usersnet_default($user->code, $user_item->code,
1709 $widefriend, $narrowfriend);
1712 if (versions_cmp($user_tos_vers, "1.2") < 0) {
1713 $mesg = sprintf($mlang_brisk['tos_old'][$G_lang], xcape($target));
1715 else if ($guar_login == "") {
1716 $mesg = sprintf($mlang_brisk['inf_nfd'][$G_lang], xcape($target));
1720 if ($ret > 0 && $mesg == "") {
1721 $mesg = sprintf($mlang_brisk['inf_err'][$G_lang], $ret);
1725 $jret = json_encode(array("ret" => $ret, "mesg" => $mesg));
1728 $jret = json_encode(array("ret" => 0,
1731 // FIXME: state internationalization
1733 ($user_item->type & USER_FLAG_TY_APPR ? "Apprendista" :
1734 ($user_item->type & USER_FLAG_TY_CERT ? "Certificato" :
1735 ($user_item->type & (USER_FLAG_TY_NORM | USER_FLAG_TY_SUPER) ?
1736 "Normale" : "Stato sconosciuto"))),
1737 "guar" => ($user_item->type & USER_FLAG_TY_APPR ?
1739 "party" => $partyskill,
1740 "match" => (versions_cmp($user_tos_vers, "1.4") < 0 ? "non autorizzato" : $user_item->match_cnt) ,
1741 "game" => (versions_cmp($user_tos_vers, "1.4") < 0 ? "non autorizzato" : $user_item->game_cnt),
1742 "friend" => usersnet_friend_getlabel($usersnet_item->friend),
1743 "skill" => $usersnet_item->skill,
1744 "trust" => $usersnet_item->trust,
1745 "widefriend" => $usersnet_item->widefriend,
1746 "narrowfriend" => $usersnet_item->narrowfriend
1753 function info_save($user, $json_s)
1755 GLOBAL $G_lang, $mlang_brisk, $G_base;
1763 if (($json = json_decode($json_s)) == FALSE) {
1768 if (($bdb = BriskDB::create()) == FALSE) {
1773 if (($subret = $bdb->usersnet_save($user->code, $json)) != 0) {
1774 $ret = 4000 + $subret;
1782 function room_outstandup($user)
1784 $this->room_sitdown($user, -1);
1787 function table_update($user)
1789 log_main("table_update: pre - USER: ".$user->name);
1791 $table_idx = $user->table;
1793 if ($table_idx > -1)
1794 $table = $this->table[$table_idx];
1796 for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
1798 $user_cur = $this->user[$i];
1799 if ($user_cur->is_active() == FALSE || $user_cur->stat != 'room') // is not active user or the stat isn't 'room'
1802 $ret = "gst.st = ".($user_cur->step+1)."; ";
1803 if ($table_idx > -1)
1804 $ret .= $this->table_content($user_cur, $table_idx);
1806 if ($user->idx_get() == $i) {
1807 $ret .= $user->myname_innerHTML();
1809 $user_cur->comm[$user_cur->step % COMM_N] = $ret;
1810 $user_cur->step_inc();
1813 log_main("table_update: post");
1816 function room_sitdown($user, $table_idx)
1818 log_main("room_sitdown ".($user == FALSE ? "USER: FALSE" : "USER: ".$user->name));
1822 if ($table_idx > -1 && $table_idx < TABLES_N) {
1823 $table = $this->table[$table_idx];
1826 if ($table->wag_own != -1 && $table->player_n == PLAYERS_N) {
1827 for ($i = 0 ; $i < TABLES_N ; $i++) {
1828 if ($table->wag_own == $table->player[$i]) {
1829 $train_app = sprintf("tra.rem(%d); ", $table_idx);
1830 $table->wag_reset(time());
1837 for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
1839 $user_cur = $this->user[$i];
1840 if ($user_cur->is_active() == FALSE || $user_cur->stat != 'room') // is not active user or the stat isn't 'room'
1843 $ret = "gst.st = ".($user_cur->step+1)."; ".$train_app;
1844 if ($table_idx > -1)
1845 $ret .= $this->table_content($user_cur, $table_idx);
1846 $ret .= $this->standup_content($user_cur);
1848 if ($user->idx_get() == $i) {
1849 $ret .= 'subst = "sitdown"; tra.hide(); ';
1850 // clean the action buttons in other tables
1851 for ($e = 0 ; $e < TABLES_N ; $e++) {
1852 $ret .= $this->table[$e]->act_content($user_cur);
1855 else if ($table_idx > -1) {
1856 if ($table->player_n == PLAYERS_N) {
1858 $ret .= $table->act_content($user_cur);
1861 $user_cur->comm[$user_cur->step % COMM_N] = $ret;
1862 $user_cur->step_inc();
1866 function kickuser($user, $out_reas)
1870 fprintf(STDERR, "MOP: GHOST_SESS: %d\n", $out_reas);
1872 $this->ghost_sess->push($curtime, $user->sess, $out_reas);
1874 fprintf(STDERR, "MOP: status out: %s %s %d\n", $user->stat, $user->subst, $user->idx);
1875 if ($user->stat == 'table' && $user->subst != 'sitdown') {
1876 $bin5 = &$this->match[$user->table];
1877 $user_bin5 = &$bin5->user[$user->table_pos];
1878 fprintf(STDERR, "MOP: status in: %s %s %d\n", $user_bin5->stat, $user_bin5->subst, $user_bin5->idx);
1879 $bin5->table_wakeup($user_bin5);
1880 $user->the_end = TRUE;
1881 $this->room_wakeup($user);
1885 if ($user->stat == 'table' || $user->stat == 'room') {
1886 $user->the_end = TRUE;
1887 if ($user->subst == 'sitdown' || $user->stat == 'table') {
1888 $this->room_wakeup($user);
1890 else if ($user->subst == 'standup') {
1891 fprintf(STDERR, "MOP: KICK here [%s]\n", btrace_line(debug_backtrace()));
1892 $this->room_outstandup($user);
1895 log_rd2("LOGOUT FROM WHAT ???");
1900 function kickuser_by_name($name, $out_reas)
1902 for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
1903 $user_out = $this->user[$i];
1904 if (strcmp($user_out->name, $name) == 0) {
1905 return ($this->kickuser($user_out, $out_reas));
1911 function kickuser_by_sess($sess, $out_reas)
1913 for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
1914 $user_out = $this->user[$i];
1915 if (strcmp($user_out->sess, $sess) == 0) {
1916 return ($this->kickuser($user_out, $out_reas));
1922 function kickuser_by_idx($idx, $out_reas)
1924 $user_out = $this->user[$idx];
1925 return ($this->kickuser($user_out, $out_reas));
1928 function chatt_send($user, $mesg, $mlang_indwr = NULL)
1930 GLOBAL $G_base, $G_alarm_passwd, $mlang_brisk, $G_lang;
1933 // fprintf(STDERR, "WE ARE HERE: [%s]\n", $mesg);
1936 $msg = mb_substr($mesg, 6, 128, "UTF-8");
1938 $dt = date("H:i ", $curtime);
1949 $is_normchat = FALSE;
1950 /* for old isolation management $is_ticker = FALSE; */
1951 $update_room = FALSE;
1953 if (strcmp($msg, "/tav") == 0 ||
1954 strncmp($msg, "/tav ", 5) == 0) {
1956 if ($user->stat != 'room' || $user->subst != 'sitdown') {
1957 /* MLANG: "<br>Per attivare il messaggio di segnalazione del tavolo occorre essere seduti.<br><br>", "<br>Il messaggio di segnalazione del tavolo è già attivato.<br><br>", "<br>Il messaggio di segnalazione del tavolo<br>è disattivato ancora per %d second%s.<br><br>" */
1958 $msg = $mlang_brisk['tickmust'][$G_lang];
1959 $to_user = show_notify($msg, 0, "chiudi", 400, 100);
1964 $table = $this->table[$user->table];
1966 if ($table->wag_own != -1) {
1967 // MLANG <br>Il messaggio di segnalazione del tavolo è già attivato.<br><br>
1968 $msg = $mlang_brisk['tickjust'][$G_lang];
1969 $to_user = show_notify($msg, 0, "chiudi", 400, 100);
1974 $dtime = $curtime - $table->wag_tout;
1975 if ($dtime < EXPIRE_TIME_WAG) {
1976 // MLANG - <br>Il messaggio di segnalazione del tavolo<br>è disattivato ancora per %d second%s.<br><br>
1977 $msg = sprintf($mlang_brisk['tickwait'][$G_lang],
1978 EXPIRE_TIME_WAG - $dtime, (EXPIRE_TIME_WAG - $dtime == 1 ? ($G_lang == 'en' ? "" : "o") : ($G_lang == 'en' ? "s" : "i")));
1979 $to_user = show_notify($msg, 0, $mlang_brisk['btn_close'][$G_lang] , 400, 100);
1984 $msg = substr($msg, 5);
1986 $table->wag_set($user->idx_get(), $msg);
1987 $to_user = sprintf('tra.add(%d, "%s");', $user->table, xcape(sprintf("%s: %s", $user->name, $msg)));
1988 $to_room = $to_user;
1989 /* for old isolation management $is_ticker = TRUE; */
1991 } // /tav chat command
1992 // just for development use currently
1993 else if (FALSE && strncmp($msg, "/out ", 5) == 0) {
1994 fprintf(STDERR, "MOP OUT\n");
1995 $target = substr($msg, 5);
1996 $this->kickuser_by_name($target, GHOST_SESS_REAS_ANON);
1998 else if (strncmp($msg, "/alarm ", 7) == 0) {
1999 if (strncmp($msg, "/alarm to ", 10) == 0) {
2000 $sp_pos = strpos($msg, " ", 10);
2001 $target = substr($msg, 10, $sp_pos - 10);
2002 $alarm_check = "/alarm to ".$target." ".$G_alarm_passwd." ";
2006 $alarm_check = "/alarm ".$G_alarm_passwd." ";
2009 if (strncmp($msg, $alarm_check, strlen($alarm_check)) != 0) {
2010 /* MLANG: "<br>La password digitata non è corretta.<br><br>" */
2011 $msg = $mlang_brisk['alarpass'][$G_lang];
2012 $to_user = show_notify($msg, 0, $mlang_brisk['btn_close'][$G_lang], 400, 100);
2017 /* MLANG: "Alarm <b>%s</b> inviato a <b>%s</b>." */
2018 $prestr = sprintf($mlang_brisk['alarret'][$G_lang], xcape(substr($msg, strlen($alarm_check))),
2019 ($target == "" ? $mlang_brisk['tit_all'][$G_lang] : xcape($target)) );
2020 $to_user = nickserv_msg($dt, $prestr);
2022 $msg = sprintf("<br><b>%s<br><br>%s</b><br><br>",
2023 $dt.NICKSERV, xcape(substr($msg, strlen($alarm_check))));
2024 /* MLANG: "chiudi" */
2025 $to_all = show_notify($msg, 0, $mlang_brisk['btn_close'][$G_lang], 400, 120);
2027 } // /alarm chat command
2028 else if (FALSE && strncmp($msg, "/listen ", 8) == 0) {
2029 $arg = substr($msg, 8);
2031 if (strcasecmp($arg, "isolation") == 0) {
2033 if ($user->stat == 'room' && $user->subst == 'sitdown' &&
2034 $user->table >= TABLES_AUTH_N) {
2035 $to_user = nickserv_msg($dt, $mlang_brisk['listmust'][$G_lang]);
2039 $user->flags &= ~USER_FLAG_MAP_AUTH;
2040 $user->flags |= USER_FLAG_ISOLAUTH;
2041 $to_user = 'list_set(\'isolation\', true, \''.$mlang_brisk['tit_onisol'][$G_lang].'\'); ';
2045 $flags_old = $user->flags;
2046 $user->flags &= ~USER_FLAG_MAP_AUTH;
2047 $to_user = 'list_set(\'all\', true, \'\'); ';
2050 // if from isolation redraw standup area
2051 if (($flags_old ^ $user->flags) & USER_FLAG_ISOLAUTH) {
2052 $to_user .= 'standup_data_old = null; '.$this->standup_content($user);
2056 else if (strcmp($msg, "/authreq") == 0) {
2057 if ($user->is_cert()) {
2058 $to_user = sprintf('authbox(300,200);');
2061 /* MLANG: "<b>Per autenticare qualcuno devi a tua volta essere autenticato.</b>", "Il nickname deve contenere almeno una lettera dell\'alfabeto o una cifra.", "Nickname <b>%s</b> già in uso." */
2062 $to_user = nickserv_msg($dt, $mlang_brisk['authmust'][$G_lang]);
2065 else if (strncmp($msg, "/mesgtoadm", 8) == 0) {
2066 if ($user->is_auth()) {
2067 $to_user = sprintf('mesgtoadmbox(500,300);');
2070 /* MLANG: "<b>Per inviare un messaggio devi essere autenticato.</b>" */
2071 $to_user = nickserv_msg($dt, $mlang_brisk['mesgmust'][$G_lang]);
2074 else if (FALSE && strncmp($msg, "/nick ", 6) == 0) {
2075 log_main("chatt_send BEGIN");
2078 if (($name_new = validate_name(substr($msg, 6))) == FALSE) {
2079 $to_user = nickserv_msg($dt, $mlang_brisk['nickmust'][$G_lang]);
2083 $msg = "COMMAND ".$msg;
2084 for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
2085 $user_cur = $this->user[$i];
2087 if ($user_cur->is_active() == FALSE)
2089 if (strcasecmp($user_cur->name,$name_new) == 0)
2092 if ($i < MAX_PLAYERS) {
2093 $prestr = sprintf($mlang_brisk['nickdupl'][$G_lang], xcape($name_new));
2094 $to_user = nickserv_msg($dt, $prestr);
2098 /* MLANG: "<b>Non puoi cambiare nick a un tavolo per soli autenticati.</b>", "Il nickname <b>\'%s\'</b> è già registrato, <b>se il suo proprietario si autentificherà verrai rinominato d\'ufficio come ghost<i>N</i>.</b>" */
2099 if ($user->is_auth()) {
2100 if (strcasecmp($user->name,$name_new) != 0) {
2101 if (( ($user->flags & USER_FLAG_MAP_AUTH) != USER_FLAG_ISOLAUTH) &&
2102 ($user->subst == 'standup' ||
2103 ($user->subst != 'standup' && $this->table[$user->table]->auth_type == TABLE_AUTH_TY_PUBL)
2106 $user->flags &= ~(USER_FLAG_AUTH | USER_FLAG_TY_ALL); // Remove auth if name changed
2107 for ($i = 0 ; $i < TABLES_N ; $i++) {
2108 $to_user .= $this->table[$i]->act_content($user);
2112 $to_user = nickserv_msg($dt, $mlang_brisk['authchan'][$G_lang]);
2117 $user->name = $name_new; // OK - nick changed
2118 /* se nome gia' in uso, segnala cosa potrebbe capitare */
2119 if ( ! $user->is_auth() ) {
2120 if (($bdb = BriskDB::create()) != FALSE) {
2122 /* MLANG: "Il nickname <b>\'%s\'</b> è già registrato, <b>se il suo proprietario si autentificherà verrai rinominato d\'ufficio come ghost<i>N</i>.</b>" */
2123 if ($bdb->login_exists(strtolower($name_new))) {
2124 $prestr = sprintf($mlang_brisk['nickjust'][$G_lang], xcape($name_new));
2125 $to_user .= nickserv_msg($dt, $prestr);
2130 log_main("chatt_send start set");
2132 $update_room = TRUE;
2134 } // nick chat command
2135 else if (strncmp($msg, "/info ", 6) == 0) {
2137 if (! $user->is_auth()) {
2139 $to_user = nickserv_msg($dt, $mlang_indwr['info_auth'][$G_lang]);
2142 $to_user = nickserv_msg($dt, "error");
2146 $info_user = substr($msg, 6);
2148 echo $this->info_show($user, urldecode($info_user), $dt);
2151 else if (strncmp($msg, "/st ", 4) == 0) {
2152 log_main("chatt_send BEGIN");
2155 $st_str = substr($msg, 4);
2157 if (strcasecmp($st_str, "normale") == 0) {
2158 $st = USER_FLAG_S_NORM;
2160 else if (strcasecmp($st_str, "pausa") == 0) {
2161 $st = USER_FLAG_S_PAU;
2163 else if (strcasecmp($st_str, "fuori") == 0) {
2164 $st = USER_FLAG_S_OUT;
2166 else if (strcasecmp($st_str, "cane") == 0) {
2167 $st = USER_FLAG_S_DOG;
2169 else if (strcasecmp($st_str, "cibo") == 0) {
2170 $st = USER_FLAG_S_EAT;
2172 else if (strcasecmp($st_str, "lavoro") == 0) {
2173 $st = USER_FLAG_S_WRK;
2175 else if (strcasecmp($st_str, "sigaretta") == 0) {
2176 $st = USER_FLAG_S_SMK;
2178 else if (strcasecmp($st_str, "presente") == 0) {
2179 $st = USER_FLAG_S_EYE;
2181 else if (strcasecmp($st_str, "coniglio") == 0) {
2182 $st = USER_FLAG_S_RABB;
2184 else if (strcasecmp($st_str, "calcio") == 0) {
2185 $st = USER_FLAG_S_SOCC;
2187 else if (strcasecmp($st_str, "pupo") == 0) {
2188 $st = USER_FLAG_S_BABY;
2190 else if (strcasecmp($st_str, "pulizie") == 0) {
2191 $st = USER_FLAG_S_MOP;
2193 else if (strcasecmp($st_str, "babbo") == 0) {
2194 $st = USER_FLAG_S_BABBO;
2196 else if (strcasecmp($st_str, "renna") == 0) {
2197 $st = USER_FLAG_S_RENNA;
2199 else if (strcasecmp($st_str, "pupazzo") == 0) {
2200 $st = USER_FLAG_S_PUPAZ;
2202 else if (strcasecmp($st_str, "vischio") == 0) {
2203 $st = USER_FLAG_S_VISCH;
2206 /* MLANG: "Questo stato non esiste." */
2207 $to_user = nickserv_msg($dt, $mlang_brisk['statunkn'][$G_lang]);
2211 log_main("chatt_send start set");
2212 if (($user->flags & USER_FLAG_S_ALL) != $st) {
2213 $update_room = TRUE;
2214 $user->flags = ($user->flags & ~USER_FLAG_S_ALL) | $st;
2217 } // nick chat command
2219 else { // normal chat line
2220 $is_normchat = TRUE;
2221 if (CHAT_ENABLED && $curtime < ($user->chat_ban + $user->chat_dlt)) {
2223 $user->chat_dlt = $user->chat_dlt * 2;
2224 if ($user->chat_dlt > 120)
2225 $user->chat_dlt = 120;
2227 else if ($user->chat_lst == $msg)
2229 else if (CHAT_ENABLED && $curtime - $user->chattime[($user->chat_cur + 1) % CHAT_N] < CHAT_ILL_TIME) {
2230 $user->chat_ban = $curtime;
2231 $user->chat_dlt = 5;
2235 $user->chat_ban = 0;
2236 $user->chat_dlt = 0;
2240 $to_user = sprintf('chatt_sub("%s",[%d,"%s"],"%s");', $dt, $user->flags, xcape($user->name), xcape("== chat ban =="));
2243 // TEMPORARY DISABLED UNTIL test user option will be available
2244 // if ( TRUE && (!$user->is_auth() || $user->is_appr()) ) {
2245 if (!$user->is_auth()) {
2246 $to_user = nickserv_msg($dt, xcape("Visto l'elevato numero di molestatori che ultimamente hanno preso dimora su Brisk abbiamo deciso"));
2247 $to_user .= nickserv_msg($dt, xcape("di disattivare temporaneamente la chat in room per i non registrati, non ce ne vogliate e buone feste."));
2249 $aug_head = array("Tanti", "Tantissimi", "Un enormità", "Un milione", "Un' esagerazione");
2250 $aug_body = array("a tutti gli utenti", "a tutti gli uomini", "a tutte le donne", "a tutti gli utenti");
2251 $aug_tail = array("di Brisk", "del sito", "della ciurma", "della comitiva", "del gruppo");
2253 $auguri = sprintf("%s auguri %s %s.",
2254 $aug_head[mt_rand(0, count($aug_head)-1)],
2255 $aug_body[mt_rand(0, count($aug_body)-1)],
2256 $aug_tail[mt_rand(0, count($aug_tail)-1)]);
2258 $to_room = sprintf('chatt_sub("%s",[%d,"%s"],"%s");', $dt, $user->flags, xcape($user->name),
2263 $to_user = sprintf('chatt_sub("%s",[%d,"%s"],"%s");', $dt, $user->flags, xcape($user->name), xcape($msg));
2264 // temporary silentiation for troll (will became array check)
2265 // if (strcasecmp($user->name,'JackRokka') != 0 && $user->sess != '47ea653f602e8')
2266 $to_room = $to_user;
2270 log_legal($curtime, $user->ip, $user,
2271 ($user->stat == 'room' ? 'room' : 'table '.$user->table),$msg);
2273 $user->chat_lst = "$msg";
2274 $user->chattime[$user->chat_cur % CHAT_N] = $curtime;
2284 // Output to clients
2287 if ($to_user != FALSE) {
2288 $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
2289 $user->comm[$user->step % COMM_N] .= $to_user;
2293 if ($to_room != FALSE) {
2294 for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
2295 $user_cur = $this->user[$i];
2296 if ($target != "" && $user_cur->name != $target)
2298 if ($user_cur->is_active() == FALSE // is not active user
2299 || $user_cur->stat == 'table' // or stat is 'table'
2300 || $user->idx_get() == $i) // or the $user idx is equal to current var
2303 if ($is_normchat == TRUE) {
2304 // use MAP_AUTH to check if auth or isolation
2305 if ($user_cur->flags & USER_FLAG_MAP_AUTH) {
2306 if ( ! $user->is_auth() ) {
2312 else if ($is_ticker) {
2313 if (($user_cur->flags & USER_FLAG_MAP_AUTH) == USER_FLAG_ISOLAUTH) {
2314 if ($user->table >= TABLES_AUTH_N)
2319 $user_cur->comm[$user_cur->step % COMM_N] = "gst.st = ".($user_cur->step+1)."; ";
2320 $user_cur->comm[$user_cur->step % COMM_N] .= $to_room;
2321 $user_cur->step_inc();
2326 // FIXME BRISK4: include for each kind of table
2327 require_once("${G_base}briskin5/Obj/briskin5.phh");
2328 // Before all align times with table timeout
2329 for ($table_idx = 0 ; $table_idx < TABLES_N ; $table_idx++) {
2330 if (isset($this->match[$table_idx])) {
2331 $bin5 = $this->match[$table_idx];
2333 $bin5_table = $bin5->table[0];
2334 for ($i = 0 ; $i < $bin5_table->player_n ; $i++) {
2335 // stat must be "table" by definition
2336 $bin5_user = $bin5->user[$i];
2338 if ($target != "" && $bin5_user->name != $target)
2340 log_main("writa: ".$user_mesg);
2341 $bin5_user->comm[$bin5_user->step % COMM_N] = "gst.st = ".($bin5_user->step+1)."; ";
2342 $bin5_user->comm[$bin5_user->step % COMM_N] .= $to_tabl;
2343 $bin5_user->step_inc();
2345 } // if (isset($this->match
2346 } // for ($table_idx = 0 ; $table_idx < TABLES_N ; $table_idx++) {
2347 } // if ($to_tabl == true ...
2350 if ($user->stat == 'room' && $user->subst == 'standup') {
2351 $this->standup_update($user);
2353 else if ($user->stat == 'room' && $user->subst == 'sitdown') {
2354 log_main("chatt_send pre table update");
2355 $this->table_update($user);
2356 log_main("chatt_send post table update");
2358 } // if ($update_room ...
2361 } // function chatt_send( ...
2363 function get_user($sess, &$idx)
2367 if (validate_sess($sess)) {
2368 for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
2369 if ($this->user[$i]->is_empty())
2371 if (strcmp($sess, $this->user[$i]->sess) == 0) {
2374 $ret = $this->user[$i];
2378 log_main(sprintf("get_user: Wrong sess from page [%s]",$PHP_SELF));
2379 // for ($i = 0 ; $i < MAX_PLAYERS ; $i++)
2380 // log_main(sprintf("get_user: Wrong sess compared with [%s]",$this->user[$i]->sess));
2383 log_main(sprintf("get_user: Wrong strlen [%s]",$sess));
2390 * function add_user(&$brisk, &$sess, &$idx, $name, $pass, $ip, $header, $cookie)
2393 * if ($idx > -1 && ret == FALSE) => duplicated nick
2394 * if ($idx == -2 && ret == FALSE) => invalid name
2395 * if ($idx == -3 && ret == FALSE) => wrong password
2396 * if ($idx == -1 && ret == FALSE) => no space left
2397 * if ($idx == 0 && ret == user) => SUCCESS
2398 * if ($idx == -($idx + 1) && ret == user) => SUCCESS (but the login exists in the auth db)
2401 function add_user(&$sess, &$idx, $name, $pass, $ip, $header, $cookie)
2407 $authenticate = FALSE;
2409 $login_exists = FALSE;
2411 $ghost_auth = FALSE;
2416 if (($name_new = validate_name($name)) == FALSE) {
2421 log_auth("XXX", sprintf("ARRIVA: [%s] pass:[%s]", $sess, ($pass == FALSE ? "FALSE" : $pass)));
2422 if (validate_sess($sess) == FALSE)
2425 /* if pass != FALSE verify the login with pass */
2426 log_auth("XXX", "auth1");
2428 if (($bdb = BriskDB::create()) != FALSE) {
2430 if ($pass != FALSE) { // TODO: here add a method to $bdb to check if the db is available.
2431 log_auth("XXX", "auth2");
2432 $authenticate = $bdb->login_verify($name_new, $pass, $code);
2433 log_auth("XXX", "authenticate: ".($authenticate != FALSE ? "TRUE" : "FALSE"));
2435 if ($authenticate != FALSE) {
2436 $user_type = $authenticate->type_get();
2444 $login_exists = $bdb->login_exists(strtolower($name_new));
2446 TO ENABLE USER-LOGIN ONLY
2447 - $login_exists = $bdb->login_exists(strtolower($name_new));
2448 + // $login_exists = $bdb->login_exists(strtolower($name_new));
2449 + // Force access with login and password
2456 // if db is down, send a warning and verify only current users
2457 // no actions at this moment
2459 for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
2461 if ($this->user[$i]->is_empty()) {
2462 if ($idfree == -1) {
2467 if (strcmp($sess, $this->user[$i]->sess) == 0) {
2472 if (strcasecmp($this->user[$i]->name, $name_new) == 0) {
2473 if ($authenticate != FALSE) {
2475 $ghost_auth = $this->user[$i]->is_auth();
2486 log_auth("XXX", sprintf("TROVATO A QUESTO PUNTO [%d] sess [%s] name [%s]", $idx, $sess, $name_new));
2488 /* there is another user logged with your account and you and him have authenticated => new user
2489 get the session of the old user */
2490 if ($ghost > -1 && $ghost_auth && ($authenticate != FALSE)) {
2493 $ghost_user = $this->user[$ghost];
2495 $this->ghost_sess->push($curtime, $ghost_user->sess, GHOST_SESS_REAS_ANOT);
2496 $ghost_user->comm[$ghost_user->step % COMM_N] = "";
2497 $ghost_user->step_inc();
2500 $ghost_user->sess = $sess;
2503 $ghost_user->sess = $sess;
2506 // If user at the table we need to update the table data too
2507 $table_idx = $ghost_user->table;
2508 if ($ghost_user->stat == "table" && $this->table[$table_idx]->player_n == PLAYERS_N) {
2509 require_once("${G_base}briskin5/Obj/briskin5.phh");
2510 if (isset($this->match[$table_idx])) {
2511 $bin5 = $this->match[$table_idx];
2513 if ($bin5->the_end != TRUE) {
2514 $bin5->user[$ghost_user->table_pos]->comm[$bin5->user[$ghost_user->table_pos]->step % COMM_N] = "";
2515 $bin5->user[$ghost_user->table_pos]->step_inc();
2516 $bin5->user[$ghost_user->table_pos]->sess = $sess;
2522 if (defined('CURL_DE_SAC_VERS')) {
2523 brisk_cds_execute($this, $ghost, $idx, $sess, $ip, $authenticate, $header);
2525 return ($this->user[$ghost]);
2527 else if ($idx != -1 && $i == MAX_PLAYERS) {
2532 $this->user[$idx]->sess = $sess;
2535 $this->user[$idx]->sess = $sess;
2537 $this->user[$idx]->name = $name_new; // OK - add new user
2538 $this->user[$idx]->stat_set("room");
2539 $this->user[$idx]->step_set(0);
2540 while (array_pop($this->user[$idx]->comm) != NULL);
2541 $this->user[$idx]->subst = "standup";
2542 $this->user[$idx]->lacc = $curtime;
2543 $this->user[$idx]->laccwr = $curtime;
2544 $this->user[$idx]->bantime = 0;
2545 $this->user[$idx]->ip = $ip;
2547 $this->user[$idx]->rec = $authenticate;
2548 $this->user[$idx]->flags = $user_type;
2549 $this->user[$idx]->flags |= ($authenticate != FALSE ? USER_FLAG_AUTH : 0x00);
2550 $this->user[$idx]->flags |= ( ($pass != FALSE && $bdb == FALSE) ? USER_FLAG_DBFAILED : 0x00);
2551 log_auth("XXX", sprintf("FLAGS: [%x]", $this->user[$idx]->flags));
2553 if ($authenticate != FALSE) {
2554 $this->user[$idx]->code = $authenticate->code_get();
2556 // fprintf(STDERR, "QQ %s: flag %x\n", __FUNCTION__, $this->user[$idx]->flags);
2558 log_main("ghost: rename!");
2559 $ghost_user = $this->user[$ghost];
2561 if ($ghost_auth == FALSE) {
2562 for ($sfx = 1 ; $sfx <= MAX_PLAYERS ; $sfx++) {
2563 $ghostname = 'ghost'.$sfx;
2564 for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
2565 if (strcmp("", $this->user[$i]->sess) == 0)
2568 if (strcasecmp($this->user[$i]->name, $ghostname) == 0) {
2573 if ($ghostname != '')
2577 $ghost_user->name = $ghostname;
2579 if ($ghost_user->stat == 'room' && $ghost_user->subst == 'standup') {
2580 $this->standup_update($ghost_user);
2583 log_main("chatt_send pre table update");
2584 $this->table_update($ghost_user);
2585 log_main("chatt_send post table update");
2587 } // if ($ghost_auth == FALSE
2589 // FIXME: cacciare il vecchio utente room && table (if needed)
2590 $ghost_user->the_end = TRUE;
2591 $ghost_user->lacc = 0;
2592 $this->garbage_manager(TRUE);
2594 } // if ($ghost > -1) {
2599 log_main(sprintf("TROVATO LIBERO A [%d] sess [%s] name [%s] count [%d] name [%s] code [%s]", $idx, $sess, $name_new, count($this->user),$this->user[$real_idx]->name, $this->user[$real_idx]->code));
2601 $ret = $this->user[$real_idx];
2602 if (defined('CURL_DE_SAC_VERS')) {
2603 brisk_cds_execute($this, $ghost, $real_idx, $sess, $ip, $authenticate, $header);
2611 function standup_update($user)
2613 for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
2614 $user_cur = $this->user[$i];
2615 if ($user_cur->is_active() == FALSE)
2618 log_main("STANDUP START: ".$user_cur->stat);
2620 if ($user_cur->stat == 'room') {
2621 $user_cur->comm[$user_cur->step % COMM_N] = "gst.st = ".($user_cur->step+1)."; ".$this->standup_content($user_cur);
2622 if ($user->idx_get() == $i) {
2623 $user_cur->comm[$user_cur->step % COMM_N] .= $user->myname_innerHTML();
2625 log_main("FROM STANDUP: NAME: ".$user_cur->name." SENDED: ".$user_cur->comm[$user_cur->step % COMM_N]);
2627 $user_cur->step_inc();
2632 function dump_data()
2634 $brisk_ser = serialize($this);
2635 $brisk_ser_len = mb_strlen($brisk_ser, "ASCII");
2636 if (file_put_contents($this->crystal_filename, $brisk_ser) == $brisk_ser_len) {
2643 function standup_content($user)
2647 if ($user->stat != 'room')
2650 $content = ' j_stand_cont( [ ';
2652 $user_cur_id = $user->idx_get();
2653 for ($i = 0 , $ct = 0 ; $i < MAX_PLAYERS ; $i++) {
2654 if ($this->user[$i]->is_active() == FALSE // is not active user
2655 || $this->user[$i]->stat != "room" // or the stat isn't 'room'
2656 || $this->user[$i]->name == "") // or the name is empty, happens when user is reset (TODO: check it)
2659 $flags = $this->user[$i]->flags;
2661 // sql record exists AND last donate > 2013-01-01
2662 if ($this->user[$i]->is_supp_custom()) {
2663 $supp_comp_s = sprintf(', "%s"', $this->user[$i]->rec->supp_comp_get());
2669 if ($this->user[$i]->subst == "standup") {
2670 $content .= sprintf('%s[ %d, "%s"%s ]',($ct > 0 ? ', ' : ''), $flags,
2671 xcape($this->user[$i]->name), $supp_comp_s);
2680 function table_content($user, $table_idx)
2686 // Si possono usare i dati nella classe table
2689 $sess = $user->sess;
2690 $table = $this->table[$table_idx];
2692 if ($user->stat != 'room')
2695 $user_cur_id = $user->idx_get();
2697 for ($i = 0 ; $i < $table->player_n ; $i++) {
2698 $user_cur = $this->user[$table->player[$i]];
2700 $flags = $user_cur->flags;
2702 log_main($user_cur->name. sprintf(" IN TABLE [%d]", $table_idx));
2703 if ($user_cur->is_supp_custom())
2704 $supp_comp_s = sprintf(', "%s"', $user_cur->rec->supp_comp_get());
2708 $content .= sprintf('%s[ %d, "%s"%s ]',($i == 0 ? '' : ', '), $flags,
2709 xcape($user_cur->name), $supp_comp_s);
2714 $ret .= sprintf('j_tab_cont(%d, %s);', $table_idx, $content);
2719 function request_mgr(&$s_a_p, $header, &$header_out, &$new_socket, $path, $addr, $get, $post, $cookie)
2721 GLOBAL $G_ban_list, $G_black_list, $G_cloud_smasher;
2723 // printf("NEW_SOCKET (root): %d PATH [%s]\n", intval($new_socket), $path);
2725 // fprintf(STDERR, "\n\n\n PRE_BLACK [%s]\n\n\n", $addr);
2726 if ($this->black_check($addr)) {
2727 // TODO: waiting async 5 sec before close
2728 // fprintf(STDERR, "\n\n\n BLACK CHECK\n\n\n");
2731 if ($path != "" && $path != "index.php") {
2732 if ($this->cloud_check($addr)) {
2733 // TODO: waiting async 5 sec before close
2738 $enc = get_encoding($header);
2739 if (isset($header['User-Agent'])) {
2740 if (strstr($header['User-Agent'], "MSIE")) {
2741 $transp_type = "htmlfile";
2744 $transp_type = "xhr";
2748 $transp_type = "iframe";
2750 force_no_cache($header_out);
2756 index_main($this, $transp_type, $header, $header_out, $addr, $get, $post, $cookie);
2757 $content = ob_get_contents();
2760 // fprintf(STDERR, "\n\nCONTENT [%s]\n\n", $content);
2761 $s_a_p->pendpage_try_addflush($new_socket, 20, $enc, $header_out, $content);
2765 case "index_wr.php":
2767 // Enhance required: in the POST case, after the header you must get content
2768 // from the socket, waiting if necessary
2772 index_wr_main($this, $addr, $get, $post, $cookie);
2773 $content = ob_get_contents();
2776 $s_a_p->pendpage_try_addflush($new_socket, 20, $enc, $header_out, $content);
2780 case "index_rd.php":
2781 case "index_rd_wss.php":
2782 if (($transp = gpcs_var('transp', $get, $post, $cookie)) === FALSE)
2784 if ($transp == 'websocket' || $transp == 'websocketsec')
2788 if (!isset($cookie['sess'])
2789 || (($user = $this->get_user($cookie['sess'], $idx)) == FALSE)) {
2791 $content = User::stream_fini($transp, $s_a_p->rndstr, TRUE);
2793 $s_a_p->pendpage_try_addflush($new_socket, 20, $enc, $header_out, $content);
2798 $this->sess_cur_set($user->sess);
2799 // close a previous opened index_read_ifra socket, if exists
2800 if (($prev = $user->rd_socket_get()) != NULL) {
2801 $s_a_p->socks_unset($user->rd_socket_get());
2802 fclose($user->rd_socket_get());
2803 // printf("CLOSE AND OPEN AGAIN ON IFRA2\n");
2804 $user->rd_socket_set(NULL);
2808 $user->stream_init($s_a_p->rndstr, $enc, $header, $header_out, $content, $get, $post, $cookie);
2809 $response = headers_render($header_out, -1).$user->chunked_content($content);
2810 $response_l = mb_strlen($response, "ASCII");
2812 $wret = @fwrite($new_socket, $response, $response_l);
2813 if ($wret < $response_l) {
2814 printf("TROUBLES WITH FWRITE: %d\n", $wret);
2815 $user->rd_cache_set(mb_substr($content, $wret, $response_l - $wret, "ASCII"));
2818 $user->rd_cache_set("");
2820 fflush($new_socket);
2823 $s_a_p->socks_set($new_socket, $user, NULL);
2824 $user->rd_socket_set($new_socket);
2825 // printf(" - qui ci siamo - ");
2832 if (!(BRISK_DEBUG & DBG_ENGI))
2834 fprintf(STDERR, "TEST.PHP running\n");
2835 if (isset($post['data'])) {
2836 $content = $post['data'];
2839 $content = "NO DATA AVAILABLE";
2841 $header_out['Content-Type'] = 'text/plain';
2842 $s_a_p->pendpage_try_addflush($new_socket, 20, $enc, $header_out, $content);
2846 /* FAR TODO: move all into an array of registered sub-apps */
2847 $subs = "briskin5/";
2848 $subs_l = strlen($subs);
2849 if (!strncmp($path, $subs, $subs_l)) {
2850 $ret = Bin5::request_mgr($s_a_p, $header, $header_out, $new_socket, substr($path, $subs_l) , $addr, $get, $post, $cookie);
2859 function match_add($idx, $match)
2861 $this->match[$idx] = $match;
2864 function match_del($idx)
2866 unset($this->match[$idx]);
2869 function match_get($idx, $token)
2871 if (isset($this->match[$idx])) {
2873 || $token == $this->match[$idx]->table_token) {
2874 return ($this->match[$idx]);
2879 function sess_cur_set($sess)
2881 static::$sess_cur = $sess;
2884 static function sess_cur_get()
2886 return(static::$sess_cur);
2888 } // end class Brisk
2890 function make_seed()
2892 list($usec, $sec) = explode(' ', microtime());
2893 return (float) $sec + ((float) $usec * 100000);
2896 function btrace_line($ar)
2898 GLOBAL $G_btrace_pref_sub;
2901 for ($i = 0 ; $i < count($ar) ; $i++) {
2902 $with_class = isset($ar[$i]['class']);
2903 $with_file = isset($ar[$i]['file']);
2904 $ret .= sprintf("%s%s%s (%s:%d)", ($i == 0 ? "" : ", "),
2905 ($with_class ? $ar[$i]['class'].$ar[$i]['type'] : ""),
2906 $ar[$i]['function'], ($with_file ? str_replace($G_btrace_pref_sub, "", $ar[$i]['file']) : ""),
2907 ($with_file ? $ar[$i]['line'] : ""));
2913 function trace_ftok($id, $add)
2915 // NOTE: without space to use sed to substitute "= @ftok(" with "= @ftok("
2916 $tok=@ftok($id, $add);
2918 log_shme($tok.": ".$id." + ".$add);
2923 function log_mop($step, $log)
2927 if (BRISK_SINGLE_SESS == "" && (BRISK_DEBUG & DBG_LMOP) == 0)
2930 $sess = Brisk::sess_cur_get();
2931 if (isset($sess) == FALSE)
2936 if (( (BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_LMOP) == 0)
2939 if ((BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_TRAC)
2940 $btrace = btrace_line(debug_backtrace());
2943 if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
2944 fwrite($fp, sprintf("LMOP: [%f] [%05d] [%s] [%s]\n", gettimeofday(TRUE), $step, $log, $btrace));
2949 function log_step($log)
2953 if (BRISK_SINGLE_SESS == "" && (BRISK_DEBUG & DBG_STEP) == 0)
2956 $sess = Brisk::sess_cur_get();
2957 if (isset($sess) == FALSE)
2962 if (( (BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_STEP) == 0)
2965 if ((BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_TRAC)
2966 $btrace = btrace_line(debug_backtrace());
2969 if (($fp = @fopen(LEGAL_PATH."/step.log", 'a')) != FALSE) {
2970 fwrite($fp, sprintf("STEP: [%f] [%s] [%s]\n", gettimeofday(TRUE), $log, $btrace));
2977 function log_cds($log)
2981 if (BRISK_SINGLE_SESS == "" && (BRISK_DEBUG & DBG_CDS) == 0)
2984 $sess = Brisk::sess_cur_get();
2985 if (isset($sess) == FALSE)
2990 if (( (BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_CDS) == 0)
2993 if ((BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_TRAC)
2994 $btrace = btrace_line(debug_backtrace());
2997 if (($fp = @fopen(LEGAL_PATH."/cds.log", 'a')) != FALSE) {
2998 fwrite($fp, sprintf("CDS: [%f] [%s] [%s]\n", gettimeofday(TRUE), $log, $btrace));
3004 function log_only2($log)
3008 if (BRISK_SINGLE_SESS == "" && (BRISK_DEBUG & DBG_ONL2) == 0)
3011 $sess = Brisk::sess_cur_get();
3012 if (isset($sess) == FALSE)
3017 if (( (BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_ONL2) == 0)
3020 if ((BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_TRAC)
3021 $btrace = btrace_line(debug_backtrace());
3024 if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
3025 fwrite($fp, sprintf("ONL2: [%s] [%s] [%s]\n", $ssess, $log, $btrace));
3030 function log_crit($log)
3034 if (BRISK_SINGLE_SESS == "" && (BRISK_DEBUG & DBG_CRIT) == 0)
3037 $sess = Brisk::sess_cur_get();
3038 if (isset($sess) == FALSE)
3043 if (( (BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_CRIT) == 0)
3046 if ((BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_TRAC)
3047 $btrace = btrace_line(debug_backtrace());
3050 if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
3051 fwrite($fp, sprintf("CRIT: [%s] [%s] [%s]\n", $ssess, $log, $btrace));
3056 function log_only($log)
3060 if (BRISK_SINGLE_SESS == "" && (BRISK_DEBUG & DBG_ONLY) == 0)
3063 $sess = Brisk::sess_cur_get();
3064 if (isset($sess) == FALSE)
3069 if (( (BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_ONLY) == 0)
3072 if ((BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_TRAC)
3073 $btrace = btrace_line(debug_backtrace());
3076 if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
3077 fwrite($fp, sprintf("ONLY: [%s] [%s] [%s]\n", $ssess, $log, $btrace));
3082 function log_main($log)
3086 if (BRISK_SINGLE_SESS == "" && (BRISK_DEBUG & DBG_MAIN) == 0)
3089 $sess = Brisk::sess_cur_get();
3090 if (isset($sess) == FALSE)
3095 if (( (BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_MAIN) == 0)
3098 if ((BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_TRAC)
3099 $btrace = btrace_line(debug_backtrace());
3102 if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
3103 fwrite($fp, sprintf("MAIN: [%s] [%s] [%s]\n", $ssess, $log, $btrace));
3108 function log_rd($log)
3112 if (BRISK_SINGLE_SESS == "" && (BRISK_DEBUG & DBG_READ) == 0)
3115 $sess = Brisk::sess_cur_get();
3116 if (isset($sess) == FALSE)
3121 if (( (BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_READ) == 0)
3124 if ((BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_TRAC)
3125 $btrace = btrace_line(debug_backtrace());
3128 if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
3129 fwrite($fp, sprintf("READ: [%s] [%s] [%s]\n", $ssess, $log, $btrace));
3134 function log_rd2($log)
3138 if (BRISK_SINGLE_SESS == "" && (BRISK_DEBUG & DBG_REA2) == 0)
3141 $sess = Brisk::sess_cur_get();
3142 if (isset($sess) == FALSE)
3147 if (( (BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_REA2) == 0)
3150 if ((BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_TRAC)
3151 $btrace = btrace_line(debug_backtrace());
3155 if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
3156 fwrite($fp, sprintf("REA2: [%s] [%s] [%s]\n", $ssess, $log, $btrace));
3161 function log_send($log)
3165 if (BRISK_SINGLE_SESS == "" && (BRISK_DEBUG & DBG_SEND) == 0)
3168 $sess = Brisk::sess_cur_get();
3169 if (isset($sess) == FALSE)
3174 if (( (BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_SEND) == 0)
3177 if ((BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_TRAC)
3178 $btrace = btrace_line(debug_backtrace());
3181 if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
3182 fwrite($fp, sprintf("SEND: [%s] [%s] [%s]\n", $ssess, $log, $btrace));
3187 function log_lock($log)
3191 if (BRISK_SINGLE_SESS == "" && (BRISK_DEBUG & DBG_LOCK) == 0)
3194 $sess = Brisk::sess_cur_get();
3195 if (isset($sess) == FALSE)
3200 if (( (BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_LOCK) == 0)
3203 if ((BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_TRAC)
3204 $btrace = btrace_line(debug_backtrace());
3207 if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
3208 fwrite($fp, sprintf("LOCK: [%s] [%s] [%s]\n", $ssess, $log, $btrace));
3213 function log_wr($log)
3217 if (BRISK_SINGLE_SESS == "" && (BRISK_DEBUG & DBG_WRIT) == 0)
3220 $sess = Brisk::sess_cur_get();
3221 if (isset($sess) == FALSE)
3226 if (( (BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_WRIT) == 0)
3229 if ((BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_TRAC)
3230 $btrace = btrace_line(debug_backtrace());
3233 if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
3234 fwrite($fp, sprintf("WRIT: [%s] [%s] [%s]\n", $ssess, $log, $btrace));
3239 function log_load($log)
3243 if (BRISK_SINGLE_SESS == "" && (BRISK_DEBUG & DBG_LOAD) == 0)
3246 $sess = Brisk::sess_cur_get();
3247 if (isset($sess) == FALSE)
3252 if (( (BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_LOAD) == 0)
3255 if ((BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_TRAC)
3256 $btrace = btrace_line(debug_backtrace());
3259 if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
3260 fwrite($fp, sprintf("LOAD: [%s] [%s] [%s]\n", $ssess, $log, $btrace));
3265 function log_auth($sess, $log)
3269 if (BRISK_SINGLE_SESS == "" && (BRISK_DEBUG & DBG_AUTH) == 0)
3272 if (( (BRISK_DEBUG | ($sess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_AUTH) == 0)
3275 if ((BRISK_DEBUG | ($sess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_TRAC)
3276 $btrace = btrace_line(debug_backtrace());
3279 if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
3280 fwrite($fp, sprintf("LOAD: [%s] [%d] [%s] [%s]\n", $sess, time(), $log, $btrace));
3285 function log_shme($log)
3289 if (BRISK_SINGLE_SESS == "" && (BRISK_DEBUG & DBG_SHME) == 0)
3292 $sess = Brisk::sess_cur_get();
3293 if (isset($sess) == FALSE)
3298 if (( (BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_SHME) == 0)
3301 if ((BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_TRAC)
3302 $btrace = btrace_line(debug_backtrace());
3305 if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
3306 fwrite($fp, sprintf("SHME: [%s] [%s] [%s]\n", $ssess, $log, $btrace));
3313 // function log_legal($curtime, $sess, $name, $where, $mesg)
3314 function log_legal($curtime, $addr, $user, $where, $mesg)
3316 if (($fp = @fopen(LEGAL_PATH."/legal.log", 'a')) != FALSE) {
3317 /* Unix time | session | nickname | IP | where was | mesg */
3318 fwrite($fp, sprintf("%ld|%s|%s|%s|%s|%s|%s|\n", $curtime, ($user ? $user->sess : "NOSESS"),
3319 ($user ? ($user->is_auth() ? 'A' : 'N') : "U"),
3320 ($user ? $user->name : "NO-USER"), $addr, $where , $mesg));
3325 function table_act_content($isstanding, $sitted, $table, $cur_table, $allowed)
3330 if ($sitted < PLAYERS_N) {
3338 if ($table == $cur_table)
3345 $ret = sprintf('j_tab_act_cont(%d, \'%s\');', $table, $act);
3350 function show_notify($text, $tout, $butt, $w, $h)
3352 log_main("SHOW_NOTIFY: ".$text);
3353 return sprintf('var noti = new notify(gst,"%s",%d,"%s",%d,%d);', $text, $tout, $butt, $w, $h);
3356 function show_notify_ex($text, $tout, $butt, $w, $h, $is_opaque, $block_time)
3358 log_main("SHOW_NOTIFY OPAQUE: ".$text);
3359 return sprintf('var noti = new notify_ex(gst,"%s",%d,"%s",%d,%d, %s, %d);', $text, $tout, $butt, $w, $h, ($is_opaque ? "true" : "false"), $block_time);
3362 function show_notify_document($text, $tout, $butt_arr, $confirm_func, $confirm_func_args, $w, $h, $is_opaque, $block_time)
3364 log_main("SHOW_NOTIFY OPAQUE: ".$text);
3367 for ($i = 0 ; $i < count($butt_arr) ; $i++) {
3368 $butts .= sprintf("%s'%s'", ($i == 0 ? "" : ","), $butt_arr[$i]);
3371 return sprintf('g_nd = new notify_document(gst, "%s", %d, [ %s ], %s, %s, %d, %d, %s, %d);|',
3372 escpush($text), $tout, $butts, ($confirm_func == NULL ? "null" : $confirm_func), (($confirm_func == NULL|| $confirm_func_args == NULL) ? "[]" : $confirm_func_args), $w, $h, ($is_opaque ? "true" : "false"), $block_time);
3376 function root_welcome($user)
3378 GLOBAL $root_wellarr, $G_lang;
3382 $dt = date("H:i ", $curtime);
3384 for ($i = 0 ; $i < count($root_wellarr[$G_lang]) ; $i++)
3385 $ret .= nickserv_msg($dt, str_replace('"', '\"', $root_wellarr[$G_lang][$i]));
3392 function validate_sess($sess)
3394 if (strlen($sess) == SESS_LEN)
3400 function validate_name($name)
3402 $name_new = str_replace(' ', '_', mb_substr(trim($name),0,12, "UTF-8"));
3404 for ($i = 0 ; $i < mb_strlen($name_new) ; $i++) {
3406 if (($c >= "a" && $c <= "z") || ($c >= "A" && $c <= "Z") || ($c >= "0" && $c <= "9"))
3413 function playsound($name)
3415 return (sprintf('g_jukebox.play("%s");', $name));
3418 function secstoword($secs)
3424 $mins = floor($secs / 60);
3426 if ($G_lang == 'en') {
3428 $ret = sprintf("%d minute%s%s", $mins, ($mins > 1 ? "s" : ""), ($secs > 0 ? " and " : ""));
3431 $ret .= sprintf("%d second%s", $secs, ($secs > 1 ? "s" : ""));
3435 $ret = sprintf("%d minut%s%s", $mins, ($mins > 1 ? "i" : "o"), ($secs > 0 ? " e " : ""));
3438 $ret .= sprintf("%d second%s", $secs, ($secs > 1 ? "i" : "o"));
3443 function sharedmem_sz($tok)
3445 if (($shm_id = @shmop_open($tok, 'a', 0, 0)) == FALSE) {
3446 log_main("shmop_open failed");
3449 $shm_sz = shmop_size($shm_id);
3450 shmop_close($shm_id);
3452 // log_main("shm_sz: ".$shm_sz." SHM_DIMS: ".SHM_DIMS);
3459 static function lock_data($is_exclusive)
3461 if (($res = file_lock(FTOK_PATH."/warrant", $is_exclusive)) != FALSE) {
3462 self::$delta_t = microtime(TRUE);
3463 log_lock("LOCK warrant [".self::$delta_t."]");
3471 static function unlock_data($res)
3475 log_lock("UNLOCK warrant [".(microtime(TRUE) - (self::$delta_t))."]");
3484 static function lock_data($is_exclusive)
3486 if (($res = file_lock(FTOK_PATH."/poll", $is_exclusive)) != FALSE) {
3487 self::$delta_t = microtime(TRUE);
3488 log_lock("LOCK poll [".self::$delta_t."]");
3496 static function unlock_data($res)
3500 log_lock("UNLOCK poll [".(microtime(TRUE) - (self::$delta_t))."]");
3506 function carousel_top()
3511 return (sprintf('<a target="_blank" href="http://shop.alternativeoutput.it"><img class="nobo" style="display: inline; border: 1px solid #808080;" alt="il negozio virtuale di Brisk" title="il negozio virtuale di Brisk" src="img/briskshop%d.gif"></a>', $rn));
3514 return (sprintf('<a target="_blank" href="http://www.alternativeoutput.it/briskblog"><img class="nobo" alt="il nuovo blog di Brisk" title="il nuovo blog di Brisk" style="display: inline; border: 1px solid #808080;" src="img/briskblog_bannersmall.png"></a>'));
3518 function login_consistency($name)
3521 if (($len = mb_strlen($name)) > 12) {
3525 for ($i = 0 ; $i < mb_strlen($name) ; $i++) {
3526 $c = mb_substr($name, $i, 1);
3527 if (mb_ereg_match ("[a-zA-Z0-9]", $c)) {