87c93fb1f3a87ede4834e75c8d765a99ff183561
[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',  0x00); // done
38 define('USER_FLAG_S_PAU',   0x01); // done
39 define('USER_FLAG_S_OUT',   0x02); // done
40 define('USER_FLAG_S_DOG',   0x03); // done
41 define('USER_FLAG_S_EAT',   0x04); // done
42 define('USER_FLAG_S_WRK',   0x05); // done
43 define('USER_FLAG_S_SMK',   0x06); // done
44 define('USER_FLAG_S_EYE',   0x07); // done
45 define('USER_FLAG_S_RABB',  0x08); // done
46 define('USER_FLAG_S_SOCC',  0x09); // done
47 define('USER_FLAG_S_BABY',  0x0a); // done
48 define('USER_FLAG_S_MOP',   0x0b); // done
49 define('USER_FLAG_S_BABBO',   0x0c); // done
50 define('USER_FLAG_S_RENNA',   0x0d); // done
51 define('USER_FLAG_S_PUPAZ',   0x0e); // done
52 define('USER_FLAG_S_VISCH',   0x0f); // done
53
54 define('USER_FLAG_S_ALL',   0xff); // done
55
56 /* does is user moderationg brisk ? */
57 define('USER_FLAG_MODER',  0x0100); // done
58
59 /* type of user normal, supporter etc ... */
60 define('USER_FLAG_TY_ALL',     0xff0000); // done
61 define('USER_FLAG_TY_NORM',    0x010000); // done
62 define('USER_FLAG_TY_SUPER',   0x020000); // done
63 define('USER_FLAG_TY_CERT',    0x040000); // done
64 //  ... other usefull status ...
65 define('USER_FLAG_TY_SUSPEND', 0x400000); // done
66 define('USER_FLAG_TY_DISABLE', 0x800000); // done
67
68 // 240 is the right value, 600 is for fwrite error test
69 define('RD_ENDTIME_DELTA',  240);
70 define('RD_KEEPALIVE_TOUT',   4);
71
72 $S_load_stat = array( 'rU_heavy'      => 0,
73                       'lL_laccgarb'   => 0,
74                       'wU_lacc_upd'   => 0,
75                       'wR_garbage'    => 0,
76                       'wR_minusone'   => 0,
77                       'wR_the_end'    => 0 );
78
79 $mlang_indrd = array( 
80                      'btn_backtotab'  => array('it' => ' torna ai tavoli ',
81                                                'en' => ' back to tables '),
82                      'btn_btotabsup'  => array('it' => ' grazie della donazione, torna ai tavoli ',
83                                                'en' => ' thank you for donation, back to tables ') 
84                      );
85
86 class User {
87   var $room;       // reference to the room where the user is registered
88   var $idx;        // index in the users array when you are in game
89   var $idx_orig;   // index in the users array when you aren't in game
90   var $code;       // authentication code
91   var $name;       // name of the user
92   var $sess;       // session of the user
93   var $ip;         // ip of the user
94   var $lacc;       // last access (for the cleanup)
95   var $laccwr;     // last access (for the cleanup)
96   var $bantime;    // timeout to temporary ban
97   var $stat;       // status (outdoor, room, table, game, ...)
98   var $subst;      // substatus for each status   
99   var $step;       // step of the current status
100   var $trans_step; // step to enable transition between pages (disable == -1)
101
102   var $rd_socket;  // socket handle of push stream
103   var $rd_endtime; // end time for push stream
104   var $rd_stat;    // actual status of push stream
105   var $rd_subst;   // actual substatus of push stream
106   var $rd_step;    // actual step of push stream
107   var $rd_from;    // referer
108   var $rd_scristp; // current script step (for each session) 
109   var $rd_kalive;  // if no message are sent after RD_KEEPALIVE_TOUT secs we send a keepalive from server
110   var $rd_cache;   // place where store failed fwrite data
111   var $rd_zls;     // zlibstream object handle if compressed stream, else FALSE
112   var $rd_transp;  // class that define stream encapsulation type (iframe, xhr, ...)
113
114   var $comm;       // commands array
115   // var $asta_card;  // 
116   // var $asta_pnt;   //
117   // var $handpt;     // Total card points at the beginning of the current hand.
118   // var $exitislock; // Player can exit from the table ?
119
120   // FIXME: the table_orig field must be removed after table field verify of index management (in spawned table
121   //        it is allways ZERO
122   var $table;      // id of the current table when you are in game
123   var $table_orig; // id of the current table when you aren't in game
124   var $table_pos;  // idx on the table
125   var $table_token;// token that identify a game on a table
126
127   var $flags_volat;// Bitfield of volatile flags
128   var $flags;      // Bitfield with: AUTHENTICATE: 0x02 
129   var $flags_vlt;  // Volatile flags valid for this session only
130   var $rec;        // field with user db record or FALSE
131   var $the_end;    // Flag to change the end of the session
132
133   var $chat_lst;      // Last chat line
134   var $chattime;      // Array of chat times
135   var $chat_cur;      // Current chat line number
136   var $chat_ban;      // Time for ban chat
137   var $chat_dlt;      // Delta t for ban
138   var $shm_sz;
139
140   const BASE = "";    // basepath for absolute web references
141
142   function User() {
143   }
144
145   static function create(&$room, $idx, $name, $sess, $stat = "", $subst = "", $table = -1, $ip="0.0.0.0") {
146     if (($thiz = new User()) == FALSE)
147       return (FALSE);
148
149     $thiz->room       = &$room;
150     $thiz->idx        = $idx;
151     $thiz->idx_orig   = $idx;
152     $thiz->code       = -1;
153     $thiz->name       = $name;
154     $thiz->sess       = $sess;
155     $thiz->ip         = $ip;
156     $thiz->lacc       = time();
157     $thiz->laccwr     = time();
158     $thiz->bantime    = 0;
159     $thiz->stat       = $stat;
160     $thiz->subst      = $subst;
161     $thiz->step       = 1;
162     $thiz->trans_step = -1;
163     $thiz->comm       = array();
164
165     $thiz->rd_socket  = NULL;
166     $thiz->rd_endtime = -1;
167     $thiz->rd_stat    = -1;
168     $thiz->rd_subst   = "";
169     $thiz->rd_step    = -1;
170     $thiz->rd_from    = "";
171     $thiz->rd_scristp = -1;
172     $thiz->rd_kalive  = -1;
173     $thiz->rd_cache   = "";
174     $thiz->rd_zls     = FALSE;
175     $thiz->rd_transp  = NULL;
176
177     $thiz->asta_card  = -2;
178     $thiz->asta_pnt   = -1;
179     $thiz->handpt     = -1;
180     $thiz->exitislock = TRUE;
181
182     $thiz->flags      = 0x00;
183     $thiz->flags_vlt  = 0x00;
184     $thiz->rec        = FALSE;
185
186     $thiz->chattime   = array_fill(0, CHAT_N, 0);
187     $thiz->chat_cur   = 0;
188     $thiz->chat_lst   = "";
189     $thiz->chat_ban   = 0;
190     $thiz->chat_dlt   = 0;
191
192     $thiz->table_orig = $table;
193     $thiz->table      = $table;
194     $thiz->table_pos  = -1;
195     $thiz->table_token= "";
196     $thiz->shm_sz = SHM_DIMS_U_MIN;
197     return ($thiz);
198   }
199
200   function copy($from)
201   {
202     $this->idx        = $from->idx;
203     $this->idx_orig   = $from->idx;
204     $this->code       = $from->code;
205     $this->name       = $from->name;
206     $this->sess       = $from->sess;
207     $this->ip         = $from->ip;
208     $this->lacc       = $from->lacc;
209     $this->laccwr     = $from->laccwr;
210     $this->bantime    = $from->bantime;
211     $this->stat       = $from->stat;
212     $this->subst      = $from->subst;
213     $this->step       = $from->step;
214     $this->trans_step = $from->trans_step;
215     $this->comm       = array();
216
217     $i_start = (1 > ($from->step - COMM_N) ? 1 : ($from->step - COMM_N)); 
218     for ($i = $i_start ; $i < $from->step ; $i++) {
219         $ii = $i % COMM_N;
220         if (isset($from->comm[$ii])) {
221             $this->comm[$ii] = $from->comm[$ii];
222         }
223     }
224     $this->asta_card  = $from->asta_card;
225     $this->asta_pnt   = $from->asta_pnt;
226     $this->handpt     = $from->handpt;
227     $this->exitislock = $from->exitislock;
228
229     $this->flags      = $from->flags;
230     $this->flags_vlt  = $from->flags_vlt;
231     $this->rec        = $from->rec;
232
233     $this->chattime   = array();
234     for ($i = 0 ; $i < CHAT_N ; $i++)
235       $this->chattime[$i] = $from->chattime[$i];
236     $this->chat_cur   = $from->chat_cur;
237     $this->chat_lst   = $from->chat_lst;
238     $this->chat_ban   = $from->chat_ban;
239     $this->chat_dlt   = $from->chat_dlt;
240
241     $this->table_orig = $from->table_orig;
242     $this->table      = $from->table;
243     $this->table_pos  = $from->table_pos;
244     $this->table_token = $from->table_token;
245     $this->the_end    = $from->the_end;
246     $this->shm_sz     = $from->shm_sz;
247     return (TRUE);
248   }
249
250
251   static function myclone($from)
252   {
253     if (($thiz = new User()) == FALSE)
254       return (FALSE);
255     
256     $thiz->copy($from);
257
258     return ($thiz);
259   }
260   
261   static function spawn($from, $table, $table_pos)
262   {
263     if (($thiz = new User()) == FALSE)
264       return (FALSE);
265     
266     $thiz->idx        = $from->idx;
267     $thiz->idx_orig   = $from->idx;
268     $thiz->code       = $from->code;
269     $thiz->name       = $from->name;
270     $thiz->sess       = $from->sess;
271     $thiz->ip         = $from->ip;
272     $thiz->lacc       = $from->lacc;
273     $thiz->laccwr     = $from->laccwr;
274     $thiz->bantime    = $from->bantime;
275     $thiz->stat       = $from->stat;
276     $thiz->subst      = $from->subst;
277     $thiz->step       = $from->step;
278     $thiz->trans_step = $from->trans_step;
279     $thiz->comm       = array();
280
281     /*
282     $i_start = (1 > ($from->step - COMM_N) ? 1 : ($from->step - COMM_N)); 
283     for ($i = $i_start ; $i < $from->step ; $i++) {
284       log_wr("TRY PUSH:".$i);
285       $ii = $i % COMM_N;
286       $thiz->comm[$ii]   = $from->comm[$ii];
287     }
288     */
289     $thiz->asta_card  = $from->asta_card;
290     $thiz->asta_pnt   = $from->asta_pnt;
291     $thiz->handpt     = $from->handpt;
292     $thiz->exitislock = $from->exitislock;
293     $thiz->the_end    = $from->the_end;
294
295     $thiz->flags      = $from->flags;
296     $thiz->flags_vlt  = $from->flags_vlt;
297     $thiz->rec        = $from->rec;
298
299     $thiz->chattime   = array_fill(0, CHAT_N, 0);
300     $thiz->chat_cur   = 0;
301     $thiz->chat_lst   = "";
302     $thiz->chat_ban   = 0;
303     $thiz->chat_dlt   = 0;
304
305
306     $thiz->table_orig = $table;
307     $thiz->table      = 0;
308     $thiz->table_pos  = $table_pos;
309     $thiz->table_token = $from->table_token;
310     $thiz->shm_sz      = $from->shm_sz;
311
312     return ($thiz);
313   }
314
315   function flags_get($mask)
316   {
317       return ($this->flags & $mask);
318   }
319
320   function flags_set($flags, $mask)
321   {
322       $flags_old = $this->flags;
323       $this->flags = (($flags_old & (~$mask)) | ($flags & $mask));
324
325       return ($flags_old != $this->flags);
326   }
327
328   function flags_vlt_get($mask)
329   {
330       return ($this->flags_vlt & $mask);
331   }
332
333   function flags_vlt_set($flags_vlt, $mask)
334   {
335       $flags_vlt_old = $this->flags_vlt;
336       $this->flags_vlt = (($flags_vlt_old & (~$mask)) | ($flags_vlt & $mask));
337
338       return ($flags_vlt_old != $this->flags_vlt);
339   }
340
341   function store_set()
342   {
343       if (($bdb = BriskDB::create()) == FALSE) {
344           return FALSE;
345       }
346       return ($bdb->user_prefs_update($this->code, ($this->flags & (USER_FLAG_TY_ALL | USER_FLAG_MAP_AUTH)),
347                                       $this->rec->supp_comp));
348   }
349
350   function rd_data_set($curtime, $transp, $enc, $stat, $subst, $step, $from)
351   {
352       $this->rd_endtime = $curtime + RD_ENDTIME_DELTA;
353       $this->rd_stat    = $stat;
354       $this->rd_subst   = $subst;
355       $this->rd_step    = $step;
356       $this->rd_from    = $from;
357       $this->rd_scristp = 0;
358       $this->rd_kalive  = $curtime + RD_KEEPALIVE_TOUT;
359       $this->rd_zls     = ZLibStream::create($enc);
360       $this->rd_transp  = Transport::create($transp);
361   }
362
363   function rd_socket_get() {
364       return ($this->rd_socket);
365   }
366
367   function rd_socket_set($sock) {
368       if ($sock == NULL) {
369           if ($this->rd_zls) {
370               $this->rd_zls->destroy();
371               $this->rd_zls = FALSE;
372           }
373       }
374       $this->rd_socket = $sock;
375   }
376
377   function rd_kalive_get()
378   {
379       return ($this->rd_kalive);
380   }
381
382   function rd_kalive_set($tm)
383   {
384       $this->rd_kalive = $tm;
385   }
386
387   function rd_kalive_is_expired($tm)
388   {
389       // printf("rd_kalive %d tm %d\n", $this->rd_kalive, $tm);
390       return ($this->rd_kalive < $tm);
391   }
392
393   function rd_endtime_is_expired($tm)
394   {
395       // printf("rd_endtime %d tm %d\n", $this->rd_kalive, $tm);
396       return ($this->rd_endtime < $tm);
397   }
398
399   function rd_kalive_reset($tm)
400   {
401       $this->rd_kalive = $tm + RD_KEEPALIVE_TOUT;
402   }
403
404   function rd_cache_get()
405   {
406       return ($this->rd_cache);
407   }
408
409   function rd_cache_set($cache)
410   {
411       $this->rd_cache = $cache;
412   }
413
414   function rd_zls_get()
415   {
416       return ($this->rd_zls);
417   }
418
419   function idx_get() {
420       return ($this->idx);
421   }
422
423   function code_get() {
424       return ($this->code);
425   }
426   
427   function stat_set($stat) {
428     log_main("sess: [".$this->sess. "] NEW STAT: [".$stat."]"); 
429     $this->stat = "$stat";
430     
431     /*
432     if (validate_sess($this->sess)) {
433       if (file_exists(PROXY_PATH) == FALSE)
434         mkdir(PROXY_PATH, 0775, TRUE);
435       $fp = @fopen(PROXY_PATH."/".$this->sess.".stat", 'w');
436       fwrite($fp, sprintf("%s\n",$this->stat));
437       fclose($fp);
438     }
439     */
440   }
441
442   function step_set($step) 
443   {
444       $this->step = $step & 0x7fffffff;
445       
446       return (TRUE);
447   }
448
449   function step_inc($delta = 1) {
450       $this->step += $delta;
451       /* modularization because unpack() not manage unsigned 32bit int correctly */
452       $this->step &= 0x7fffffff;
453       
454       return TRUE;
455   }
456
457
458   function save_step() 
459   {
460       do {
461           if (validate_sess($this->sess) == FALSE)
462               break;
463           if (file_exists(PROXY_PATH) == FALSE)
464               mkdir(PROXY_PATH, 0775, TRUE);
465           if (($fp = @fopen(PROXY_PATH."/".$this->sess.".step", 'w')) == FALSE)
466               break;
467           fwrite($fp, pack("LL",$this->step, $this->idx));
468           fclose($fp);
469           
470           log_main("step_set [".$this->sess. "] [".$this->step."]"); 
471           
472           return (TRUE);
473       } while (0);
474       
475       return (FALSE);
476   }
477   
478   static function load_step($sess) 
479   {
480       $fp = FALSE;
481       do {
482           if (validate_sess($sess) == FALSE)
483               break;
484           
485           if (file_exists(PROXY_PATH) == FALSE)
486               mkdir(PROXY_PATH, 0775, TRUE);
487           if (($fp = @fopen(PROXY_PATH."/".$sess.".step", 'rb')) == FALSE)
488               break;
489           if (($s = fread($fp, 8)) == FALSE)
490               break;
491           if (mb_strlen($s, "ASCII") != 8)
492               break;
493           $arr = unpack('Ls/Li', $s);
494           fclose($fp);
495           
496           // log_rd2("A0: ".$arr[0]."  A1: ".$arr[1]);
497           return ($arr);
498       } while (0);
499       
500       if ($fp != FALSE)
501           fclose($fp);
502       
503       log_rd2("STEP_GET [".$sess."]: return false ");
504       
505       return (FALSE);
506   }
507
508   static function unproxy_step($sess) {
509       log_rd2("UNPROXY: ".PROXY_PATH."/".$sess.".step");
510       if (file_exists(PROXY_PATH) == FALSE)
511           return;
512       @unlink(PROXY_PATH."/".$sess.".step");
513   }
514
515   function reset() {
516     $curtime = time();
517     log_legal($curtime, $this->ip, $this, "STAT:LOGOUT", '');
518
519     $tmp_sess = $this->sess;
520     $this->sess = "";
521     self::unproxy_step($tmp_sess);
522     $this->name = "";  // OK here
523     while (array_pop($this->comm) != NULL);
524     $this->step = 0;
525     $this->chattime = array_fill(0, CHAT_N, 0);
526     $this->chat_cur = 0;
527     $this->chat_lst = "";
528     $this->chat_ban = 0;
529     $this->chat_dlt = 0;
530     $this->the_end = FALSE;
531   }
532
533   function myname_innerHTML()
534   {
535       $class_id = ($this->flags & USER_FLAG_AUTH) + 1;
536       
537       return (sprintf('$("myname").innerHTML = "<span class=\"au%d\">%s</span>";', $class_id, 
538                       xcape($this->name,ENT_COMPAT,"UTF-8")));
539   }
540
541   /* INDEX_RD_IFRA PORT */
542
543   static function blocking_error($is_unrecoverable)
544   {
545       log_crit("BLOCKING_ERROR UNREC: ".($is_unrecoverable ? "TRUE" : "FALSE"));
546       return (sprintf(($is_unrecoverable ? 'xstm.stop(); ' : '').'window.onbeforeunload = null; window.onunload = null; document.location.assign("index.php");'));
547   }
548   
549   // FIXME TO SUPPORT iframe
550   protected function page_sync($sess, $page, $table_idx, $table_token)
551   {
552       // log_rd2("page_sync:".var_export(debug_backtrace()));
553       
554       log_rd2("PAGE_SYNC");
555       printf("xXx USER::PAGE_SYNC [%s]\n", get_class($this));
556       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));
557   }
558
559
560
561
562   protected function maincheck($cur_stat, $cur_subst, $cur_step, &$new_stat, &$new_subst, &$new_step, $splashdate, $table_idx, $table_token)
563   {
564       GLOBAL $G_lang, $mlang_indrd;
565       // GLOBAL $first_loop;
566       GLOBAL $G_with_splash, $G_splash_content, $G_splash_interval, $G_splash_idx;
567       GLOBAL $G_splash_w, $G_splash_h, $G_splash_timeout;
568       $CO_splashdate = "CO_splashdate".$G_splash_idx;
569       $$CO_splashdate = $splashdate;
570       
571       GLOBAL $S_load_stat;
572       
573       log_rd("maincheck begin");
574       
575       $ret = FALSE;
576       $curtime = time();
577       
578       /* Nothing changed, return. */
579       if ($cur_step == $this->step) 
580           return (FALSE);
581       
582       log_rd2("do other cur_stat[".$cur_stat."] user->stat[".$this->stat."] cur_step[".$cur_step."] user_step[".$this->step."]");
583       
584       if ($cur_step == -1) {
585           /*
586            *  if $cur_step == -1 load the current state from the main struct
587            */
588           
589           $S_load_stat['wR_minusone']++;
590           
591           // if ($this->the_end == TRUE) {
592           // log_rd2("main_check: the end".var_export(debug_backtrace()));
593           // }
594           
595           if ($this->trans_step != -1) {
596               log_rd2("TRANS USATO ".$this->trans_step);
597               $cur_step = $this->trans_step;
598               $this->trans_step = -1;
599           }
600           else {
601               log_rd2("TRANS NON ATTIVATO");
602           }
603       }
604       
605       
606       /* this part I suppose is read only on $this->room structure */
607       if ($cur_step == -1) {
608           log_rd2("PRE-NEWSTAT: ".$this->stat);
609           
610           if ($this->stat == 'room') {
611               log_rd("roomma ".$this->step);
612               $curtime = time();
613               
614               if ($G_with_splash &&
615                   ($$CO_splashdate < $curtime - $G_splash_interval ||
616                    $$CO_splashdate > $curtime)) {
617                   $is_super = $this->flags & USER_FLAG_TY_SUPER;
618                   $ret .=  show_notify_ex(str_replace("\n", " ", $G_splash_content[$G_lang]), 
619                                           ($is_super ? 0 : $G_splash_timeout), 
620                                           // $mlang_indrd[($is_super ? 'btn_btotabsup' : 'btn_backtotab')][$G_lang], 
621                                           $mlang_indrd['btn_backtotab'][$G_lang], 
622                                           $G_splash_w, $G_splash_h, true, 
623                                           ($is_super ? 0 : $G_splash_timeout));
624                   $ret .= sprintf('|createCookie("CO_splashdate%d", %d, 24*365, cookiepath);', $G_splash_idx, $curtime);
625               }
626               $ret .= $this->room->show_room($this->step, $this);
627               
628               // TODO uncomment and test
629               /* NOTE the sets went common */
630               $new_stat =  $this->stat;
631               $new_subst = $this->subst;
632               $new_step =  $this->step;
633           }
634           /***************
635            *             *
636            *    TABLE    *
637            *             *
638            ***************/
639           else if ($this->stat == 'table') {
640               log_load("RESYNC");
641               printf("xXx USER::MAINCHECK1 [%s]\n", get_class($this));
642
643               return ($this->page_sync($this->sess, "briskin5/index.php", $this->table, $this->table_token));
644           }
645           log_rd2("NEWSTAT: ".$this->stat);
646       } /* if ($cur_step == -1) { */
647       else {
648           /* $sem = Room::lock_data(FALSE); */
649           $S_load_stat['rU_heavy']++;
650           
651           if ($cur_step < $this->step) {
652               do {
653                   if ($cur_step + COMM_N < $this->step) {
654                       if (($cur_stat != $this->stat)) {
655                           $to_stat = $this->stat;
656                           /* Room::unlock_data($sem); */
657                           log_load("RESYNC");
658                           printf("xXx USER::MAINCHECK2 [%s]\n", get_class($this));
659                           return ($this->page_sync($this->sess, ($to_stat == "table" ? "briskin5/index.php" : "index.php"), $this->table, $this->table_token));
660                       }
661                       log_rd2("lost history, refresh from scratch");
662                       $new_step = -1;
663                       break;
664                   } 
665                   for ($i = $cur_step ; $i < $this->step ; $i++) {
666                       $ii = $i % COMM_N;
667                       log_rd2("ADDED TO THE STREAM: ".$this->comm[$ii]);
668                       $ret .= $this->comm[$ii];
669                   }
670                   $new_stat =  $this->stat;
671                   $new_subst = $this->subst;
672                   $new_step =  $this->step;
673               } while (0);
674               
675               log_rd2($this->step, 'index_rd.php: after ret set');
676               
677               if ($this->the_end == TRUE) {
678                   log_rd2("LOGOUT BYE BYE!!");
679                   log_auth($this->sess, "Explicit logout.");
680                   
681                   if ($this->the_end == TRUE) {
682                       $this->reset();
683                       
684                       if ($this->subst == 'sitdown') {
685                           log_load("ROOM WAKEUP");
686                           $this->room->room_wakeup($this);
687                       }
688                       else if ($this->subst == 'standup')
689                           $this->room->room_outstandup($this);
690                       else
691                           log_rd2("LOGOUT FROM WHAT ???");
692                       
693                   } /* if ($this->the_end == TRUE) { ... */
694               } /* if ($this->the_end == TRUE) { ... */
695           } /* if ($cur_step < $this->step) { */
696           
697           /* Room::unlock_data($sem); */
698       }  /* else of if ($cur_step == -1) { */
699       
700     
701       return ($ret);
702   }  //   function maincheck (...
703
704   public static function stream_fini($transp, $init_string, $is_unrecoverable)
705 {
706     printf("xXx user::stream_fini\n");
707
708     // FIXME: dynamic "Transport_" type
709     $trans_class = Transport::gettype($transp);
710     $body = $trans_class::fini($init_string, self::base_get(), static::blocking_error($is_unrecoverable));
711
712     // ELSE IF XHR THEN:
713     // return (static::blocking_error($is_unrecoverable));
714     return ($body);
715 }
716
717 /*
718  *  MAIN
719  */
720
721 /*
722    FROM THE EXTERN 
723    sess
724    stat
725    step
726 */
727 function stream_init($init_string, $enc, &$header_out, &$body, $get, $post, $cookie)
728 {
729     $curtime = time();
730     
731     printf("CLASS: [%s] base: [%s]\n", get_class($this), self::base_get());
732
733     log_load("index_rd_ifra_init.php");
734     
735     if (($from  = gpcs_var('from', $get, $post, $cookie)) === FALSE)
736         $from = "";
737     if (($stat  = gpcs_var('stat', $get, $post, $cookie)) === FALSE) 
738         $stat = "";
739     if (($subst = gpcs_var('subst', $get, $post, $cookie)) === FALSE) 
740         $subst = "";
741     if (($step  = gpcs_var('step', $get, $post, $cookie)) === FALSE) 
742         unset($step);
743     if (($transp  = gpcs_var('transp', $get, $post, $cookie)) === FALSE)
744         $transp = "iframe";
745     
746     $this->rd_data_set($curtime, $transp, $enc, $stat, $subst, $step, $from);
747     
748     $body .= $this->rd_transp->init($enc, &$header_out, $init_string, self::base_get(), $this->rd_scristp);
749
750     return TRUE;
751   }
752
753 function stream_main(&$body, $get, $post, $cookie)
754 {
755     GLOBAL $G_splash_idx;
756
757     $CO_splashdate = "CO_splashdate".$G_splash_idx;
758     if (($splashdate = gpcs_var("$CO_splashdate", $get, $post, $cookie)) === FALSE)
759         $splashdate = ""; 
760     if (($table_idx = gpcs_var("table_idx", $get, $post, $cookie)) === FALSE)
761         $table_idx = ""; 
762     if (($table_token = gpcs_var("table_token", $get, $post, $cookie)) === FALSE)
763         $table_token = ""; 
764
765     log_rd2("FROM OUTSIDE - STAT: ".$this->rd_stat." SUBST: ".$this->rd_subst." STEP: ".$this->rd_step." FROM: ".$this->rd_from);
766     
767     
768     $pre_main = gettimeofday(TRUE);
769     
770     $old_stat  = $this->rd_stat;
771     $old_subst = $this->rd_subst;
772     $old_step  = $this->rd_step;
773     printf("xXx PRE : rd_step %d\n", $this->rd_step);
774     if (($ret = $this->maincheck($old_stat, $old_subst, $old_step, $this->rd_stat, $this->rd_subst, $this->rd_step, $splashdate, $table_idx, $table_token)) != FALSE) {
775         $body .= $this->rd_transp->chunk( $this->rd_scristp++, $ret);
776         log_rd2(0, 'index_rd.php: after mop_flush (begin: '.sprintf("%f", $pre_main).')');
777     }
778     printf("xXx POST: rd_step %d\n", $this->rd_step);
779
780     return TRUE;
781 }
782
783 function stream_keepalive($with_ping)
784 {
785     return ($this->rd_transp->chunk( $this->rd_scristp++, ($with_ping ? "act_ping();" : NULL)));
786 }
787
788 static function base_get()
789 {
790     $c = get_called_class();
791     printf("CALLED_CLASS: [%s]\n", $c);
792     return $c::BASE;
793 }
794
795 function is_supp_custom()
796 {
797     if ($this->rec != FALSE) {
798         if ($this->flags & USER_FLAG_TY_SUPER) {
799             return (TRUE);
800         }
801         /*
802           if ($this->rec->last_dona > 1356994800) {
803               return (TRUE);
804           }
805         */
806     }
807     return (FALSE);
808 }
809
810 } // end class User
811
812
813 ?>