5 * Copyright (C) 2006 matteo.nastasi@milug.org
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABLILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details. You should have received a
16 * copy of the GNU General Public License along with this program; if
17 * not, write to the Free Software Foundation, Inc, 59 Temple Place -
18 * Suite 330, Boston, MA 02111-1307, USA.
24 require_once("brisk.phh");
26 log_load($sess, "LOAD: index_rd.php");
31 if (DEBUGGING == "local" && $_SERVER['REMOTE_ADDR'] != '127.0.0.1') {
32 echo "Debugging time!";
38 log_rd2("SHUTTA!", connection_status());
42 register_shutdown_function(shutta);
46 GLOBAL $is_page_streaming;
48 $is_page_streaming = TRUE;
49 return (sprintf('the_end=true; window.onunload = null; document.location.assign("index.php");'));
56 function maincheck($sess, $cur_stat, $cur_subst, $cur_step, &$new_stat, &$new_subst, &$new_step)
58 GLOBAL $is_page_streaming, $first_loop;
63 /* Sync check (read only without modifications */
64 if (($sem = lock_data()) != FALSE) {
66 // Aggiorna l'expire time lato server
67 if ($first_loop == TRUE) {
68 if (($user = &$bri->get_user($sess, $idx)) == FALSE) {
70 return (unrecerror());
72 log_auth($sess, "update lacc");
73 $user->lacc = time() + EXPIRE_TIME;
78 $bri->garbage_manager(FALSE);
88 if (($user = &$bri->get_user($sess, $idx)) == FALSE) {
89 return (unrecerror());
92 /* Nothing changed, return. */
93 if ($cur_stat == $user->stat && $cur_step == $user->step)
96 log_rd2($sess, "do other ++".$cur_stat."++".$user->stat."++".$cur_step."++".$user->step);
98 if ($cur_step == -1) {
99 // FUNZIONE from_scratch DA QUI
102 if (($user = &$bri->get_user($sess, $idx)) == FALSE) {
104 return (unrecerror());
107 $is_page_streaming = TRUE;
110 if ($user->trans_step != -1) {
111 log_rd2($sess, "TRANS USATO ".$user->trans_step);
112 $cur_step = $user->trans_step;
113 $user->trans_step = -1;
120 log_rd2($sess, "TRANS NON ATTIVATO");
125 if ($cur_step == -1) {
126 log_rd2($sess, "PRE-NEWSTAT.");
128 if ($user->stat == 'room') {
129 log_rd($sess, "roomma");
130 $ret .= show_room(&$bri, &$user);
137 else if ($user->stat == 'table') {
138 $ret = show_table(&$bri,&$user,$user->step,FALSE,FALSE);
140 log_rd2($sess, "SENDED TO THE STREAM: ".$ret);
142 log_rd2($sess, "NEWSTAT: ".$user->stat);
144 $new_stat = $user->stat;
145 $new_subst = $user->subst;
146 $new_step = $user->step;
151 if (($user = &$bri->get_user($sess, $idx)) == FALSE) {
153 return (unrecerror());
155 if ($cur_step < $user->step) {
157 if ($cur_step + COMM_N < $user->step) {
158 log_rd2($sess, "lost history, refresh from scratch");
162 for ($i = $cur_step ; $i < $user->step ; $i++) {
163 log_rd2($sess, "ADDED TO THE STREAM: ".$user->comm[$i % COMM_N]);
164 $ret .= $user->comm[$i % COMM_N];
166 $new_stat = $user->stat;
167 $new_subst = $user->subst;
168 $new_step = $user->step;
171 if ($user->the_end == TRUE) {
172 log_rd2($sess, "LOGOUT BYE BYE!!");
173 log_auth($user->sess, "Explicit logout.");
176 $user->the_end = FALSE;
178 if ($user->subst == 'sitdown')
179 $bri->room_wakeup(&$user);
180 else if ($user->subst == 'standup')
181 $bri->room_outstandup(&$user);
183 log_rd2($sess, "LOGOUT FROM WHAT ???");
207 $is_page_streaming = ((stristr($HTTP_USER_AGENT, "linux") &&
208 stristr($HTTP_USER_AGENT, "firefox")) ? FALSE : TRUE);
211 header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
212 header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the past
214 log_rd2($sess, "FROM OUTSIDE - STAT: ".$stat." SUBST: ".$subst." STEP: ".$step." MYFROM: ".$myfrom. "IS_PAGE:" . $is_page_streaming);
217 $endtime = time() + STREAM_TIMEOUT;
220 $old_step = $ext_step = $step;
222 for ($i = 0 ; time() < $endtime ; $i++) {
223 // log_rd($sess, "PRE MAIN ".$step);;
224 if (($ret = maincheck($sess, $old_stat, $old_subst, $old_step, &$stat, &$subst, &$step)) != FALSE) {
226 // log_rd2($sess, sprintf("\nSESS: [%s]\nOLD_STAT: [%s] OLD_SUBST: [%s] OLD_STEP: [%s] \nSTAT: [%s] SUBST: [%s] STEP: [%s] \nCOMM: [%s]\n", $sess, $old_stat, $old_subst, $old_step, $stat, $subst, $step, $ret));
229 log_send($sess, "EXT_STEP: ".$ext_step." ENDTIME: [".$endtime."] ".$ret);
231 if ($is_page_streaming)
237 // log_rd($sess, "POST MAIN ".$step);;
240 // log_rd2($sess, "TIME: ".time());