X-Git-Url: https://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Findex.php;h=5ed0bd364645d9c64933c621d3de7e8543a42e76;hb=1cc28eaacbcb2e5a5b3a788d17d39b66fb8898f7;hp=c8a15997c5645405d2276ab72280caf00adb9216;hpb=90c7420f07b9198d094ae0d297c391ede9adc1d9;p=brisk.git diff --git a/web/index.php b/web/index.php index c8a1599..5ed0bd3 100644 --- a/web/index.php +++ b/web/index.php @@ -2,7 +2,7 @@ /* * brisk - index.php * - * Copyright (C) 2006-2011 Matteo Nastasi + * Copyright (C) 2006-2012 Matteo Nastasi * mailto: nastasi@alternativeoutput.it * matteo.nastasi@milug.org * web: http://www.alternativeoutput.it @@ -182,13 +182,6 @@ $mlang_room = array( 'userpasserr' => array('it' => 'Utente e/o password errati require_once("briskin5/Obj/briskin5.phh"); -if (DEBUGGING == "local" && $_SERVER['REMOTE_ADDR'] != '127.0.0.1') { - echo "Debugging time!"; - exit; -} - -log_load("index.php"); - function poll_dom() { GLOBAL $G_with_poll, $G_poll_title, $G_poll_entries; @@ -220,7 +213,7 @@ function carousel_top() return (sprintf('', $rn)); } -function index_main(&$room, &$header_out, $addr, $get, $post, $cookie) +function index_main(&$room, $transp_type, &$header_out, $addr, $get, $post, $cookie) { GLOBAL $G_with_donors, $G_donors_cur, $G_donors_all; GLOBAL $G_with_topbanner, $G_topbanner, $G_is_local; @@ -231,7 +224,7 @@ function index_main(&$room, &$header_out, $addr, $get, $post, $cookie) GLOBAL $BRISK_SHOWHTML, $BRISK_DEBUG, $_SERVER; if (($sess = gpcs_var('sess', $get, $post, $cookie)) === FALSE) - unset($sess); + $sess = ""; if (($name = gpcs_var('name', $get, $post, $cookie)) === FALSE) unset($name); if (($pass_private = gpcs_var('pass_private', $get, $post, $cookie)) === FALSE) @@ -240,10 +233,9 @@ function index_main(&$room, &$header_out, $addr, $get, $post, $cookie) unset ($table_idx); if (($table_token = gpcs_var('table_idx', $get, $post, $cookie)) === FALSE) unset ($table_token); - - + // Use of proxies isn't allowed. - if (!$G_is_local && is_proxy()) { + if (!$G_is_local && is_proxy($addr)) { return FALSE; } @@ -267,9 +259,11 @@ function index_main(&$room, &$header_out, $addr, $get, $post, $cookie) if (($user = &$room->get_user($sess, &$idx)) != FALSE) { log_main("user stat: ".$user->stat); if ($user->stat == "table") { - setcookie("table_token", $user->table_token, $curtime + 31536000); - setcookie("table_idx", $user->table, $curtime + 31536000); - $header_out['Location'] = "Location: briskin5/index.php"; + $cookies = new Cookies(); + $cookies->add("table_token", $user->table_token, $curtime + 31536000); + $cookies->add("table_idx", $user->table, $curtime + 31536000); + $header_out['cookies'] = $cookies; + $header_out['Location'] = "briskin5/index.php"; return TRUE; } $ACTION = "room"; @@ -287,20 +281,22 @@ function index_main(&$room, &$header_out, $addr, $get, $post, $cookie) $room->garbage_manager(TRUE); /* try login */ - if (($user = $room->add_user(&$sess, &$idx, $name, $pass_private, $addr)) != FALSE) { + if (($user = $room->add_user(&$sess, &$idx, $name, $pass_private, $addr, $cookie)) != FALSE) { $ACTION = "room"; if ($idx < 0) { $idx = -$idx - 1; $is_login = TRUE; } - log_legal($curtime, $user, "STAT:LOGIN", ''); + log_legal($curtime, $addr, $user, "STAT:LOGIN", ''); // recovery lost game if ($user->stat == "table") { - setcookie("table_token", $user->table_token, $curtime + 31536000); - setcookie("table_idx", $user->table, $curtime + 31536000); - $header_out['Location'] = "Location: briskin5/index.php"; + $cookies = new Cookies(); + $cookies->add("table_token", $user->table_token, $curtime + 31536000); + $cookies->add("table_idx", $user->table, $curtime + 31536000); + $header_out['cookies'] = $cookies; + $header_out['Location'] = "briskin5/index.php"; return TRUE; } @@ -517,7 +513,7 @@ google_color_url = "000000"; "
donatori
") ) : '').'
'.$banner_top_right.'
- + '; /* MLANG: ALL THE VERTICAL MENU */ @@ -865,10 +861,10 @@ supported by:
- + - + @@ -878,17 +874,18 @@ supported by:
- + @@ -1012,6 +1009,7 @@ echo "$body"; ?>