a59cc4427793fdc26f4b7097d1307cde55f9d099
[brisk.git] / web / Obj / user.phh
1 <?php
2 /*
3  *  brisk - Obj/user.phh
4  *
5  *  Copyright (C) 2012 Matteo Nastasi
6  *                          mailto: nastasi@alternativeoutput.it 
7  *                                  matteo.nastasi@milug.org
8  *                          web: http://www.alternativeoutput.it
9  *
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.
14  *
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.
22  */
23
24 require_once("${G_base}Obj/transports.phh");
25
26
27 // User flags
28 define('USER_FLAG_AUTH',     0x02);
29
30 define('USER_FLAG_MAP_AUTH', 0x0c);
31 define('USER_FLAG_LISTAUTH', 0x04);
32 define('USER_FLAG_ISOLAUTH', 0x08);
33
34 define('USER_FLAG_DBFAILED', 0x10);
35
36 //   user status
37 define('USER_FLAG_S_NORM',  0x000); // done
38 define('USER_FLAG_S_PAU',   0x100); // done
39 define('USER_FLAG_S_OUT',   0x200); // done
40 define('USER_FLAG_S_DOG',   0x300); // done
41 define('USER_FLAG_S_EAT',   0x400); // done
42 define('USER_FLAG_S_WRK',   0x500); // done
43 define('USER_FLAG_S_SMK',   0x600); // done
44 define('USER_FLAG_S_EYE',   0x700); // done
45 define('USER_FLAG_S_RABB',  0x800); // done
46 define('USER_FLAG_S_SOCC',  0x900); // done
47 define('USER_FLAG_S_BABY',  0xa00); // done
48 define('USER_FLAG_S_MOP',   0xb00); // done
49 define('USER_FLAG_S_BABBO',   0xc00); // done
50 define('USER_FLAG_S_RENNA',   0xd00); // done
51 define('USER_FLAG_S_PUPAZ',   0xe00); // done
52 define('USER_FLAG_S_VISCH',   0xf00); // done
53
54 define('USER_FLAG_S_ALL',   0xf00); // done
55
56 /* type of user normal, supporter etc ... */
57 define('USER_FLAG_TY_ALL',     0xff0000); // done
58 define('USER_FLAG_TY_NORM',    0x010000); // done
59 define('USER_FLAG_TY_SUPER',   0x020000); // done
60 define('USER_FLAG_TY_CERT',    0x040000); // done
61 //  ... other usefull status ...
62 define('USER_FLAG_TY_FIRONLY', 0x200000); // done
63 define('USER_FLAG_TY_ADMIN',   0x400000); // done
64 define('USER_FLAG_TY_DISABLE', 0x800000); // done
65
66 // ... reasons for disabling account ...
67 define('USER_DIS_REA_NONE',       0);
68 define('USER_DIS_REA_INVMAIL',    1);
69 define('USER_DIS_REA_LICENCE',    2);
70 define('USER_DIS_REA_BANNED',     3);
71 define('USER_DIS_REA_MALICIOUS',  4);
72 define('USER_DIS_REA_NU_ADDED',   5); // new user: new user added by hand or external sql
73 define('USER_DIS_REA_NU_MAILED',  6); // new user: mail sent to be confirmed
74 define('USER_DIS_REA_NU_TOBECHK', 7); // new user: name verification
75
76
77
78 // 240 is the right value, 600 is for fwrite error test
79 define('RD_ENDTIME_DELTA',  240);
80 define('RD_KEEPALIVE_TOUT',   4);
81
82 $S_load_stat = array( 'rU_heavy'      => 0,
83                       'lL_laccgarb'   => 0,
84                       'wU_lacc_upd'   => 0,
85                       'wR_garbage'    => 0,
86                       'wR_minusone'   => 0,
87                       'wR_the_end'    => 0 );
88
89 $mlang_user = array(
90                      'btn_backtotab'  => array('it' => ' torna ai tavoli ',
91                                                'en' => ' back to tables '),
92                      'btn_btotabsup'  => array('it' => ' grazie della donazione, torna ai tavoli ',
93                                                'en' => ' thank you for donation, back to tables '),
94
95                      'btn_agree'      => array('it' => ' accetto ',
96                                                'en' => ' agree '),
97                      'btn_refuse'     => array('it' => ' rifiuto ',
98                                                'en' => ' refuse '),
99                      'btn_dload'      => array('it' => ' scarico ',
100                                                'en' => ' download '),
101                      'btn_later'      => array('it' => ' leggo poi ',
102                                                'en' => ' read later '),
103                      'toc_date_dscl'  => array('it' => 'I nuovi termini di servizio entreranno in vigore il %s.',
104                                                'en' => 'EN I nuovi termini di servizio entreranno in vigore il %s.')
105                      );
106
107 class User {
108   var $brisk;      // reference to the room where the user is registered
109   var $idx;        // index in the room users array when you are in game
110   var $idx_orig;   // index in the room table users array when you aren't in game
111   var $code;       // authentication code
112   var $name;       // name of the user
113   var $sess;       // session of the user
114   var $ip;         // ip of the user
115   var $lacc;       // last access (for the cleanup)
116   var $laccwr;     // last access (for the cleanup)
117   var $bantime;    // timeout to temporary ban
118   var $stat;       // status (outdoor, room, table, game, ...)
119   var $subst;      // substatus for each status   
120   var $step;       // step of the current status
121   var $trans_step; // step to enable transition between pages (disable == -1)
122   var $cl_step;    // current step returned by client
123   var $ping_req;   // ping is already requested ?
124
125   var $rd_socket;  // socket handle of push stream
126   var $rd_endtime; // end time for push stream
127   var $rd_stat;    // actual status of push stream
128   var $rd_subst;   // actual substatus of push stream
129   var $rd_step;    // actual step of push stream
130   var $rd_from;    // referer
131   var $rd_scristp; // current script step (for each session) 
132   var $rd_kalive;  // if no message are sent after RD_KEEPALIVE_TOUT secs we send a keepalive from server
133   var $rd_cache;   // place where store failed fwrite data
134   var $rd_toflush; // bool to inform about unfflushed socket
135   var $rd_zls;     // zlibstream object handle if compressed stream, else FALSE
136   var $rd_transp;  // class that define stream encapsulation type (iframe, xhr, ...)
137   var $rd_is_chunked; // is the transport chunked or not ?
138
139   var $comm;       // commands array
140   // var $asta_card;  // 
141   // var $asta_pnt;   //
142   // var $handpt;     // Total card points at the beginning of the current hand.
143   // var $exitislock; // Player can exit from the table ?
144
145   // FIXME: the table_orig field must be removed after table field verify of index management (in spawned table
146   //        it is allways ZERO
147   var $table;      // id of the current table when you are in game
148   var $table_orig; // id of the current table when you aren't in game
149   var $table_pos;  // idx on the table
150   var $table_token;// token that identify a game on a table
151   var $flags;      // Bitfield with: AUTHENTICATE: 0x02 
152   var $rec;        // field with user db record or FALSE
153   var $the_end;    // Flag to change the end of the session
154
155   var $chat_lst;      // Last chat line
156   var $chattime;      // Array of chat times
157   var $chat_cur;      // Current chat line number
158   var $chat_ban;      // Time for ban chat
159   var $chat_dlt;      // Delta t for ban
160   var $shm_sz;
161
162   const BASE = "";    // basepath for absolute web references
163
164   function User() {
165   }
166
167   static function create(&$brisk, $idx, $name, $sess, $stat = "", $subst = "", $table = -1, $ip="0.0.0.0") {
168     if (($thiz = new User()) == FALSE)
169       return (FALSE);
170
171     $thiz->room       = &$brisk;
172     $thiz->idx        = $idx;
173     $thiz->idx_orig   = $idx;
174     $thiz->code       = -1;
175     $thiz->name       = $name;
176     $thiz->sess       = $sess;
177     $thiz->ip         = $ip;
178     $thiz->lacc       = time();
179     $thiz->laccwr     = time();
180     $thiz->bantime    = 0;
181     $thiz->stat       = $stat;
182     $thiz->subst      = $subst;
183     $thiz->step       = 1;
184     $thiz->trans_step = -1;
185     $thiz->cl_step    = -1;
186     $thiz->ping_req   = FALSE;
187     $thiz->comm       = array();
188
189     $thiz->rd_socket  = NULL;
190     $thiz->rd_endtime = -1;
191     $thiz->rd_stat    = -1;
192     $thiz->rd_subst   = "";
193     $thiz->rd_step    = -1;
194     $thiz->rd_from    = "";
195     $thiz->rd_scristp = -1;
196     $thiz->rd_kalive  = -1;
197     $thiz->rd_cache   = "";
198     $thiz->td_toflush = FALSE;
199     $thiz->rd_zls     = FALSE;
200     $thiz->rd_transp  = NULL;
201     $thiz->rd_is_chunked = FALSE;
202     $thiz->ping_req   = FALSE;
203
204     $thiz->asta_card  = -2;
205     $thiz->asta_pnt   = -1;
206     $thiz->handpt     = -1;
207     $thiz->exitislock = TRUE;
208
209     $thiz->flags      = 0x00;
210     $thiz->rec        = FALSE;
211
212     $thiz->chattime   = array_fill(0, CHAT_N, 0);
213     $thiz->chat_cur   = 0;
214     $thiz->chat_lst   = "";
215     $thiz->chat_ban   = 0;
216     $thiz->chat_dlt   = 0;
217
218     $thiz->table_orig = $table;
219     $thiz->table      = $table;
220     $thiz->table_pos  = -1;
221     $thiz->table_token= "";
222     $thiz->shm_sz = SHM_DIMS_U_MIN;
223     return ($thiz);
224   }
225
226   function copy($from)
227   {
228     $this->idx        = $from->idx;
229     $this->idx_orig   = $from->idx;
230     $this->code       = $from->code;
231     $this->name       = $from->name;
232     $this->sess       = $from->sess;
233     $this->ip         = $from->ip;
234     $this->lacc       = $from->lacc;
235     $this->laccwr     = $from->laccwr;
236     $this->bantime    = $from->bantime;
237     $this->stat       = $from->stat;
238     $this->subst      = $from->subst;
239     $this->step       = $from->step;
240     $this->trans_step = $from->trans_step;
241     $this->cl_step    = $from->cl_step;
242     $this->ping_req   = $from->ping_req;
243     $this->comm       = array();
244
245     $i_start = (1 > ($from->step - COMM_N) ? 1 : ($from->step - COMM_N)); 
246     for ($i = $i_start ; $i < $from->step ; $i++) {
247         $ii = $i % COMM_N;
248         if (isset($from->comm[$ii])) {
249             $this->comm[$ii] = $from->comm[$ii];
250         }
251     }
252     $this->asta_card  = $from->asta_card;
253     $this->asta_pnt   = $from->asta_pnt;
254     $this->handpt     = $from->handpt;
255     $this->exitislock = $from->exitislock;
256
257     $this->flags      = $from->flags;
258     $this->rec        = $from->rec;
259
260     $this->chattime   = array();
261     for ($i = 0 ; $i < CHAT_N ; $i++)
262       $this->chattime[$i] = $from->chattime[$i];
263     $this->chat_cur   = $from->chat_cur;
264     $this->chat_lst   = $from->chat_lst;
265     $this->chat_ban   = $from->chat_ban;
266     $this->chat_dlt   = $from->chat_dlt;
267
268     $this->table_orig = $from->table_orig;
269     $this->table      = $from->table;
270     $this->table_pos  = $from->table_pos;
271     $this->table_token = $from->table_token;
272     $this->the_end    = $from->the_end;
273     $this->shm_sz     = $from->shm_sz;
274     return (TRUE);
275   }
276
277
278   static function myclone($from)
279   {
280     if (($thiz = new User()) == FALSE)
281       return (FALSE);
282     
283     $thiz->copy($from);
284
285     return ($thiz);
286   }
287   
288   static function spawn($from, $table, $table_pos)
289   {
290     if (($thiz = new User()) == FALSE)
291       return (FALSE);
292     
293     $thiz->idx        = $from->idx;
294     $thiz->idx_orig   = $from->idx;
295     $thiz->code       = $from->code;
296     $thiz->name       = $from->name;
297     $thiz->sess       = $from->sess;
298     $thiz->ip         = $from->ip;
299     $thiz->lacc       = $from->lacc;
300     $thiz->laccwr     = $from->laccwr;
301     $thiz->bantime    = $from->bantime;
302     $thiz->stat       = $from->stat;
303     $thiz->subst      = $from->subst;
304     $thiz->step       = $from->step;
305     $thiz->trans_step = $from->trans_step;
306     $thiz->cl_step    = $from->cl_step;
307     $thiz->ping_req   = $from->ping_req;
308     $thiz->comm       = array();
309
310     /*
311     $i_start = (1 > ($from->step - COMM_N) ? 1 : ($from->step - COMM_N)); 
312     for ($i = $i_start ; $i < $from->step ; $i++) {
313       log_wr("TRY PUSH:".$i);
314       $ii = $i % COMM_N;
315       $thiz->comm[$ii]   = $from->comm[$ii];
316     }
317     */
318     $thiz->asta_card  = $from->asta_card;
319     $thiz->asta_pnt   = $from->asta_pnt;
320     $thiz->handpt     = $from->handpt;
321     $thiz->exitislock = $from->exitislock;
322     $thiz->the_end    = $from->the_end;
323
324     $thiz->flags      = $from->flags;
325     $thiz->rec        = $from->rec;
326
327     $thiz->chattime   = array_fill(0, CHAT_N, 0);
328     $thiz->chat_cur   = 0;
329     $thiz->chat_lst   = "";
330     $thiz->chat_ban   = 0;
331     $thiz->chat_dlt   = 0;
332
333
334     $thiz->table_orig = $table;
335     $thiz->table      = 0;
336     $thiz->table_pos  = $table_pos;
337     $thiz->table_token = $from->table_token;
338     $thiz->shm_sz      = $from->shm_sz;
339
340     return ($thiz);
341   }
342
343   function is_auth()
344   {
345       return ($this->flags & USER_FLAG_AUTH);
346   }
347
348   function is_cert()
349   {
350       return (($this->flags & USER_FLAG_AUTH) && ($this->flags & USER_FLAG_TY_CERT));
351   }
352
353   function is_empty()
354   {
355       return ($this->sess == "");
356   }
357
358   function is_active()
359   {
360       if ($this->sess != "" && !$this->the_end) // OK: is_active()
361           return TRUE;
362       return FALSE;
363   }
364
365   function flags_set($flags, $mask)
366   {
367       $flags_old = $this->flags & (~$mask);
368       $this->flags = ($flags_old | ($flags & $mask));
369
370       return ($flags_old);
371   }
372
373   function prefs_store()
374   {
375       if (($bdb = BriskDB::create()) == FALSE) {
376           return FALSE;
377       }
378       return ($bdb->user_prefs_update($this->code, ($this->flags & (USER_FLAG_TY_ALL | USER_FLAG_MAP_AUTH)),
379                                       $this->rec->supp_comp_get()));
380   }
381
382   function tos_store()
383   {
384       if (($bdb = BriskDB::create()) == FALSE) {
385           return FALSE;
386       }
387       return ($bdb->user_tos_update($this->code, $this->rec->tos_vers_get()));
388   }
389
390   function state_store()
391   {
392    if (($bdb = BriskDB::create()) == FALSE) {
393           return FALSE;
394       }
395       return ($bdb->user_state_update($this->code, ($this->flags & (USER_FLAG_TY_ALL | USER_FLAG_MAP_AUTH)),
396                                       $this->rec->disa_reas_get()));
397   }
398
399   function rd_data_set($curtime, $transp, $enc, $stat, $subst, $step, $from)
400   {
401       $this->rd_endtime = $curtime + RD_ENDTIME_DELTA;
402       $this->rd_stat    = $stat;
403       $this->rd_subst   = $subst;
404       $this->rd_step    = $step; // TRACKED
405       $this->rd_from    = $from;
406       $this->rd_scristp = 0;
407       $this->rd_kalive  = $curtime + RD_KEEPALIVE_TOUT;
408       $this->rd_zls     = ZLibStream::create($enc);
409       $this->rd_transp  = Transport::create($transp);
410       $this->rd_is_chunked = $this->rd_transp->is_chunked();
411   }
412
413   function rd_socket_get() {
414       return ($this->rd_socket);
415   }
416
417   function rd_socket_set($sock) {
418       if ($sock == NULL) {
419           if ($this->rd_zls) {
420               $this->rd_zls->destroy();
421               $this->rd_zls = FALSE;
422           }
423       }
424       $this->rd_socket = $sock;
425   }
426
427   function rd_kalive_get()
428   {
429       return ($this->rd_kalive);
430   }
431
432   function rd_kalive_set($tm)
433   {
434       $this->rd_kalive = $tm;
435   }
436
437   function rd_kalive_is_expired($tm)
438   {
439       // printf("rd_kalive %d tm %d\n", $this->rd_kalive, $tm);
440       return ($this->rd_kalive < $tm);
441   }
442
443   function rd_endtime_is_expired($tm)
444   {
445       // printf("rd_endtime %d tm %d\n", $this->rd_kalive, $tm);
446       return ($this->rd_endtime < $tm);
447   }
448
449   function rd_kalive_reset($tm)
450   {
451       $this->rd_kalive = $tm + RD_KEEPALIVE_TOUT;
452   }
453
454   function rd_cache_get()
455   {
456       return ($this->rd_cache);
457   }
458
459   function rd_cache_set($cache)
460   {
461       $this->rd_cache = $cache;
462   }
463
464   function rd_zls_get()
465   {
466       return ($this->rd_zls);
467   }
468
469   function idx_get() {
470       return ($this->idx);
471   }
472
473   function code_get() {
474       return ($this->code);
475   }
476   
477   function stat_set($stat) {
478     log_main("sess: [".$this->sess. "] NEW STAT: [".$stat."]"); 
479     $this->stat = "$stat";
480     
481     /*
482     if (validate_sess($this->sess)) {
483       if (file_exists(PROXY_PATH) == FALSE)
484         mkdir(PROXY_PATH, 0775, TRUE);
485       $fp = @fopen(PROXY_PATH."/".$this->sess.".stat", 'w');
486       fwrite($fp, sprintf("%s\n",$this->stat));
487       fclose($fp);
488     }
489     */
490   }
491
492   function step_set($step) 
493   {
494       $this->step = $step & 0x7fffffff;
495       
496       return (TRUE);
497   }
498
499   function step_inc($delta = 1) {
500       $this->step += $delta;
501       /* modularization because unpack() not manage unsigned 32bit int correctly */
502       $this->step &= 0x7fffffff;
503       
504       return TRUE;
505   }
506
507
508   function save_step() 
509   {
510       do {
511           if (validate_sess($this->sess) == FALSE)
512               break;
513           if (file_exists(PROXY_PATH) == FALSE)
514               mkdir(PROXY_PATH, 0775, TRUE);
515           if (($fp = @fopen(PROXY_PATH."/".$this->sess.".step", 'w')) == FALSE)
516               break;
517           fwrite($fp, pack("LL",$this->step, $this->idx));
518           fclose($fp);
519           
520           log_main("step_set [".$this->sess. "] [".$this->step."]"); 
521           
522           return (TRUE);
523       } while (0);
524       
525       return (FALSE);
526   }
527   
528   static function load_step($sess) 
529   {
530       $fp = FALSE;
531       do {
532           if (validate_sess($sess) == FALSE)
533               break;
534           
535           if (file_exists(PROXY_PATH) == FALSE)
536               mkdir(PROXY_PATH, 0775, TRUE);
537           if (($fp = @fopen(PROXY_PATH."/".$sess.".step", 'rb')) == FALSE)
538               break;
539           if (($s = fread($fp, 8)) == FALSE)
540               break;
541           if (mb_strlen($s, "ASCII") != 8)
542               break;
543           $arr = unpack('Ls/Li', $s);
544           fclose($fp);
545           
546           // log_rd2("A0: ".$arr[0]."  A1: ".$arr[1]);
547           return ($arr);
548       } while (0);
549       
550       if ($fp != FALSE)
551           fclose($fp);
552       
553       log_rd2("STEP_GET [".$sess."]: return false ");
554       
555       return (FALSE);
556   }
557
558   static function unproxy_step($sess) {
559       log_rd2("UNPROXY: ".PROXY_PATH."/".$sess.".step");
560       if (file_exists(PROXY_PATH) == FALSE)
561           return;
562       @unlink(PROXY_PATH."/".$sess.".step");
563   }
564
565   function reset() {
566     $curtime = time();
567     log_legal($curtime, $this->ip, $this, "STAT:LOGOUT", '');
568
569     $tmp_sess = $this->sess;
570     $this->sess = "";
571     self::unproxy_step($tmp_sess);
572     $this->name = "";  // OK here
573     while (array_pop($this->comm) != NULL);
574     $this->step = 0;
575     $this->chattime = array_fill(0, CHAT_N, 0);
576     $this->chat_cur = 0;
577     $this->chat_lst = "";
578     $this->chat_ban = 0;
579     $this->chat_dlt = 0;
580     $this->the_end = FALSE;
581   }
582
583   function myname_innerHTML()
584   {
585       // 4 -> is certified
586       // 2 -> is authorized
587       // 1 -> is myself
588       $class_ids = (($this->flags & USER_FLAG_TY_CERT) >> 16) | ($this->flags & USER_FLAG_AUTH) | 1;
589       $sp = "";
590       $cl = "";
591
592       for ($i = 0 ; $i < 3 ; $i++) {
593           if ($class_ids & (1 << $i)) {
594               $cl .= sprintf("%sau%d", $sp, $i);
595               $sp = " ";
596           }
597       }
598       return (sprintf('$("myname").innerHTML = "<span class=\"%s\">%s</span>";', $cl,
599                       xcape($this->name,ENT_COMPAT,"UTF-8")));
600   }
601
602   /* INDEX_RD PORT */
603
604   static function blocking_error($is_unrecoverable)
605   {
606       log_crit("BLOCKING_ERROR UNREC: ".($is_unrecoverable ? "TRUE" : "FALSE"));
607       return (sprintf(($is_unrecoverable ? 'xstm.stop(); ' : '').'window.onbeforeunload = null; window.onunload = null; document.location.assign("index.php");'));
608   }
609   
610   // FIXME TO SUPPORT iframe
611   protected function page_sync($sess, $page, $table_idx, $table_token)
612   {
613       // log_rd2("page_sync:".var_export(debug_backtrace()));
614       
615       log_rd2("PAGE_SYNC");
616       printf("xXx USER::PAGE_SYNC [%s]\n", get_class($this));
617       return (sprintf('createCookie("table_idx", %d, 24*365, cookiepath); createCookie("table_token", "%s", 24*365, cookiepath); xstm.stop(); window.onunload = null; window.onbeforeunload = null; document.location.assign("%s");', $table_idx, $table_token, $page));
618   }
619
620   protected function maincheck($get, $post, $cookie)
621   {
622       GLOBAL $G_lang, $G_base, $G_doc_path, $mlang_user;
623       // GLOBAL $first_loop;
624       GLOBAL $G_with_splash, $G_splash_content, $G_splash_interval, $G_splash_idx;
625       GLOBAL $G_splash_w, $G_splash_h, $G_splash_timeout;
626       GLOBAL $G_tos_vers, $G_tos_fname, $G_tos_dthard, $G_tos_dtsoft, $G_tos_idx;
627
628       GLOBAL $S_load_stat;
629       
630       $CO_splashdate = "CO_splashdate".$G_splash_idx;
631
632       if (($splashdate = gpcs_var("$CO_splashdate", $get, $post, $cookie)) === FALSE)
633           $splashdate = "";
634
635       log_rd("maincheck begin");
636       
637       $ret = "";
638       $curtime = time();
639
640       /* Nothing changed, return. */
641       if ($this->rd_step == $this->step)
642           return (FALSE);
643       
644       log_rd2("do other cur_stat[".$this->rd_stat."] user->stat[".$this->stat."] cur_step[".$this->rd_step."] user_step[".$this->step."]");
645       
646       if ($this->rd_step == -1) {
647           /*  if $this->rd_step == -1 load the current state from the main struct  */
648           $S_load_stat['wR_minusone']++;
649
650           if ($this->trans_step != -1) {
651               log_rd2("TRANS USATO ".$this->trans_step);
652               $this->rd_step = $this->step = $this->trans_step; // TRACKED
653               $ret .= $this->room->show_room($this->step, $this);
654               $this->trans_step = -1;
655           }
656           else {
657               log_rd2("TRANS NON ATTIVATO");
658           }
659       }
660       
661       
662       /* this part I suppose is read only on $this->room structure */
663       if ($this->rd_step == -1) {
664           log_rd2("PRE-NEWSTAT: ".$this->stat);
665           
666           if ($this->stat == 'room') {
667               log_rd("roomma ".$this->step);
668               if ($this->rec !== FALSE) {
669                   $doc_filepath = $G_base.$G_doc_path.sprintf($G_tos_fname, $G_tos_vers, $G_lang);
670                   $doc_filename = basename($doc_filepath);
671                   if ($curtime > $G_tos_dtsoft || $curtime > $G_tos_dthard) {
672                       if (versions_cmp($this->rec->tos_vers_get(), $G_tos_vers) < 0) { // comparison between user version and current version
673                           $buttons = array($mlang_user['btn_agree'][$G_lang], $mlang_user['btn_refuse'][$G_lang],
674                                            $mlang_user['btn_dload'][$G_lang]);
675                           if ($curtime > $G_tos_dtsoft && $curtime < $G_tos_dthard) {
676                               // call notify soft (same as soft + later button)
677                               array_push($buttons, $mlang_user['btn_later'][$G_lang]);
678                               $type = "soft";
679                               $preface = sprintf("<div class='doc_alert'>%s</div>",
680                                                  sprintf($mlang_user['toc_date_dscl'][$G_lang],
681                                                          strftime("%e/%m/%Y", $G_tos_dthard)));
682                           }
683                           else {
684                               // call notify hard
685                               $type = "hard";
686                               $preface = "";
687                           }
688                           $ret .=  show_notify_document($preface.esclfhtml(file_get_contents($doc_filepath)), 0, $buttons,
689                                      "tos_confirm", sprintf("[ '%s/doc_download.php?doc=%s' ]", SITE_PREFIX,
690                                        basename($doc_filename, ".txt")), 600, 600, TRUE, 0);
691
692                           $ret .= sprintf("act_tosmgr('%s', g_nd.ret_get(), '%s', '%s');", $type,
693                                           xcape($this->rec->tos_vers_get()), xcape($G_tos_vers));
694                       }
695                   }
696               }
697               if ($G_with_splash &&
698                   ($splashdate < $curtime - $G_splash_interval ||
699                    $splashdate > $curtime)) {
700                   $is_super = $this->flags & USER_FLAG_TY_SUPER;
701                   $ret .=  show_notify_ex(str_replace("\n", " ", $G_splash_content[$G_lang]),
702                                           ($is_super ? 0 : $G_splash_timeout),
703                                           // $mlang_user[($is_super ? 'btn_btotabsup' : 'btn_backtotab')][$G_lang],
704                                           $mlang_user['btn_backtotab'][$G_lang],
705                                           $G_splash_w, $G_splash_h, true,
706                                           ($is_super ? 0 : $G_splash_timeout));
707                   $ret .= sprintf('|createCookie("CO_splashdate%d", %d, 24*365, cookiepath);', $G_splash_idx, $curtime);
708               }
709               $ret .= $this->room->show_room($this->step, $this);
710               
711               // TODO uncomment and test
712               /* NOTE the sets went common */
713               $this->rd_stat =  $this->stat;
714               $this->rd_subst = $this->subst;
715               $this->rd_step =  $this->step; // TRACKED
716           }
717           /***************
718            *             *
719            *    TABLE    *
720            *             *
721            ***************/
722           else if ($this->stat == 'table') {
723               log_load("RESYNC");
724               printf("xXx USER::MAINCHECK1 [%s]\n", get_class($this));
725
726               return ($this->page_sync($this->sess, "briskin5/index.php", $this->table, $this->table_token));
727           }
728           log_rd2("NEWSTAT: ".$this->stat);
729       } /* if ($this->rd_step == -1) { */
730       else {
731           $S_load_stat['rU_heavy']++;
732           
733           if ($this->rd_step < $this->step) {
734               do {
735                   if ($this->rd_step + COMM_N < $this->step) {
736                       if (($this->rd_stat != $this->stat)) {
737                           $to_stat = $this->stat;
738                           log_load("RESYNC");
739                           printf("xXx USER::MAINCHECK2 [%s]\n", get_class($this));
740                           return ($this->page_sync($this->sess, ($to_stat == "table" ? "briskin5/index.php" : "index.php"), $this->table, $this->table_token));
741                       }
742                       log_rd2("lost history, refresh from scratch");
743                       $this->rd_step = -1;
744                       break;
745                   } 
746                   for ($i = $this->rd_step ; $i < $this->step ; $i++) {
747                       $ii = $i % COMM_N;
748                       log_rd2("ADDED TO THE STREAM: ".$this->comm[$ii]);
749                       if ($this->comm[$ii] == "") {
750                           if ($i == $this->rd_step)
751                               continue;
752                           else
753                               break;
754                       }
755                       $ret .= $this->comm[$ii];
756                   }
757                   $this->rd_stat =  $this->stat;
758                   $this->rd_subst = $this->subst;
759                   $this->rd_step = $this->step;
760               } while (0);
761               
762               log_rd2($this->step, 'index_rd.php: after ret set');
763
764               // if ($this->the_end == TRUE) { management is moved
765               // in the spush scope
766           } /* if ($this->rd_step < $this->step) { */
767       }  /* else of if ($this->rd_step == -1) { */
768
769       if ($ret == "")
770           $ret = FALSE;
771     
772       return ($ret);
773   }  //   function maincheck(...
774
775   public static function stream_fini($transp, $init_string, $is_unrecoverable)
776 {
777     printf("xXx user::stream_fini\n");
778
779     // FIXME: dynamic "Transport_" type
780     $trans_class = Transport::gettype($transp);
781     $body = $trans_class::fini($init_string, self::base_get(), static::blocking_error($is_unrecoverable));
782
783     // ELSE IF XHR THEN:
784     // return (static::blocking_error($is_unrecoverable));
785     return ($body);
786 }
787
788 /*
789  *  MAIN
790  */
791
792 /*
793    FROM THE EXTERN 
794    sess
795    stat
796    step
797 */
798 function stream_init($init_string, $enc, $header, &$header_out, &$body, $get, $post, $cookie)
799 {
800     $curtime = time();
801     
802     printf("CLASS: [%s] base: [%s]\n", get_class($this), self::base_get());
803
804     log_load("index_rd_init.php");
805     
806     if (($from  = gpcs_var('from', $get, $post, $cookie)) === FALSE)
807         $from = "";
808     if (($stat  = gpcs_var('stat', $get, $post, $cookie)) === FALSE) 
809         $stat = "";
810     if (($subst = gpcs_var('subst', $get, $post, $cookie)) === FALSE) 
811         $subst = "";
812     if (($step  = gpcs_var('step', $get, $post, $cookie)) === FALSE) 
813         unset($step);
814     if (($transp  = gpcs_var('transp', $get, $post, $cookie)) === FALSE)
815         $transp = "iframe";
816     
817     $this->rd_data_set($curtime, $transp, $enc, $stat, $subst, $step, $from);
818     
819     $ret = $this->rd_transp->init($enc, $header, &$header_out, $init_string, self::base_get(), $this->rd_scristp);
820
821     if ($ret === FALSE) {
822         return FALSE;
823     }
824
825     $body .= $ret;
826
827     return TRUE;
828   }
829
830 function stream_main(&$body, $get, $post, $cookie)
831 {
832     log_rd2("FROM OUTSIDE - STAT: ".$this->rd_stat." SUBST: ".$this->rd_subst." STEP: ".$this->rd_step." FROM: ".$this->rd_from);
833     
834     
835     $pre_main = gettimeofday(TRUE);
836     
837     printf("xXx PRE : rd_step %d\n", $this->rd_step);
838     if (($ret = $this->maincheck($get, $post, $cookie)) != FALSE) {
839         $body .= $this->rd_transp->chunk( $this->rd_scristp++, $ret);
840         log_rd2(0, 'index_rd.php: after mop_flush (begin: '.sprintf("%f", $pre_main).')');
841     }
842     printf("xXx POST: rd_step %d\n", $this->rd_step);
843
844     return TRUE;
845 }
846
847 function stream_keepalive($with_ping)
848 {
849     return ($this->rd_transp->chunk( $this->rd_scristp++, ($with_ping ? "act_ping();" : NULL)));
850 }
851
852 function stream_close()
853 {
854     return ($this->rd_transp->close());
855 }
856
857 static function base_get()
858 {
859     $c = get_called_class();
860     printf("CALLED_CLASS: [%s]\n", $c);
861     return $c::BASE;
862 }
863
864 function is_supp_custom()
865 {
866     if ($this->rec != FALSE) {
867         if ($this->flags & USER_FLAG_TY_SUPER) {
868             return (TRUE);
869         }
870         /*
871           if ($this->rec->last_dona_get() > 1356994800) {
872               return (TRUE);
873           }
874         */
875     }
876     return (FALSE);
877 }
878
879 function is_chunked()
880 {
881     return $this->rd_is_chunked;
882 }
883
884
885 function chunked_content($content)
886 {
887     if ($this->rd_zls) {
888         $cont_comp = $this->rd_zls->compress_chunk($content);
889     }
890     else {
891         $cont_comp = $content;
892     }
893     $cont_comp_l = mb_strlen($cont_comp, "ASCII");
894     // printf("CHUNK: [%s]\n", $content);
895
896     if ($this->is_chunked()) {
897         return (sprintf("%X\r\n", $cont_comp_l).$cont_comp."\r\n");
898     }
899     else {
900         return $cont_comp;
901     }
902 }
903
904 function chunked_fini()
905 {
906     return sprintf("0\r\n");
907 }
908
909
910 } // end class User
911
912
913 ?>