-------+
- BUG: pari + 72 non fa 4x ma attualmente fa 3x, da correggere
- BUG: some connection to the named socket fails
- - WIP: (half tested) manage and test cross forwarder between table and room
- log_legal address fix
- - setcookie (for tables only and persist prefs)
+
MINOR |
-------+
+ - try to be more antivirus-friendly
- centralize all '<script ...' incapsulation to allow multiple transport system.
- packetize and automatize php-ancillary and apache module
- parametrizations:
- DISABLED_TO_FIX: DNS access (perform blocking dns requests, must be fixed)
+
DONE |
------+
DONE/FROZEN - problem with getpeer (HOSTADDR)
+ DONE - manage and test cross forwarder between table and room
+ DONE - setcookie (for tables only and persist prefs)
DONE - images flickering on slow windows: try to poll stream every 300 ms (seems to be download problem)
DONE - database connection fails after a while, check close and try PGSQL_CONNECT_FORCE_NEW.
DONE - unneeded garbage_time.expired access
function headers_render($header, $len)
{
- $s = "";
- if (isset($header['Location'])) {
- return sprintf("HTTP/1.1 302 OK\r\nLocation: %s\r\n\r\n", $header['Location']);
- }
- else {
- $s .= "HTTP/1.1 200 OK\r\n";
- }
- if (!isset($header['Date']))
- $s .= sprintf("Date: %s\r\n", date(DATE_RFC822));
- if (!isset($header['Connection']))
- $s .= "Connection: close\r\n";
- if (!isset($header['Content-Type']))
- $s .= "Content-Type: text/html\r\n";
- foreach($header as $key => $value) {
- $s .= sprintf("%s: %s\r\n", $key, $value);
+ $cookies = "";
+
+ if (isset($header['cookies'])) {
+ $cookies = $header['cookies']->render();
+ unset($header['cookies']);
}
- if ($len >= 0) {
- $s .= sprintf("Content-Length: %d\r\n", $len);
+ if (isset($header['Location'])) {
+ $s = sprintf("HTTP/1.1 302 OK\r\n%sLocation: %s\r\n", $cookies, $header['Location']);
}
else {
- $s .= "Cache-Control: no-cache, must-revalidate\r\n";
- $s .= "Expires: Mon, 26 Jul 1997 05:00:00 GMT\r\n";
- if (!isset($header['Content-Encoding'])) {
- $s .= "Content-Encoding: chunked\r\n";
+ $s = "HTTP/1.1 200 OK\r\n";
+
+ if (!isset($header['Date']))
+ $s .= sprintf("Date: %s\r\n", date(DATE_RFC822));
+ if (!isset($header['Connection']))
+ $s .= "Connection: close\r\n";
+ if (!isset($header['Content-Type']))
+ $s .= "Content-Type: text/html\r\n";
+ foreach($header as $key => $value) {
+ $s .= sprintf("%s: %s\r\n", $key, $value);
}
- $s .= "Transfer-Encoding: chunked\r\n";
+ if ($len >= 0) {
+ $s .= sprintf("Content-Length: %d\r\n", $len);
+ }
+ else {
+ $s .= "Cache-Control: no-cache, must-revalidate\r\n";
+ $s .= "Expires: Mon, 26 Jul 1997 05:00:00 GMT\r\n";
+ if (!isset($header['Content-Encoding'])) {
+ $s .= "Content-Encoding: chunked\r\n";
+ }
+ $s .= "Transfer-Encoding: chunked\r\n";
+ }
+ $s .= $cookies;
}
$s .= "\r\n";
return ($enc);
}
+class Cookie {
+ var $attr;
+ // Set-Cookie: reg_fb_gate=deleted; Expires=Thu, 01-Jan-1970 00:00:01 GMT; Path=/; Domain=.foo.com; HttpOnly
+ // string $name [, string $value [, int $expire = 0 [, string $path [, string $domain [, bool $secure = false [, bool $httponly = false ]]]]]] )
+ function Cookie()
+ {
+ $this->attr = array();
+ }
+
+ static function create($name)
+ {
+ $thiz = new Cookie();
+
+ $thiz->attr[$name] = "";
+
+ $argc = func_num_args();
+ for ($i = 1 ; $i < $argc ; $i++) {
+ $arg = func_get_arg($i);
+ switch ($i) {
+ case 1:
+ $thiz->attr[$name] = urlencode($arg);
+ break;
+ case 2:
+ $thiz->attr['Expires'] = gmdate('D, d M Y H:i:s \G\M\T', $arg); // RFC 1211 format
+ break;
+ case 3:
+ $thiz->attr['Path'] = $arg;
+ break;
+ case 4:
+ $thiz->attr['Domain'] = $arg;
+ break;
+ case 5:
+ if ($arg == TRUE) {
+ $thiz->attr['Secure'] = NULL;
+ }
+ break;
+ case 6:
+ if ($arg == TRUE) {
+ $thiz->attr['HttpOnly'] = NULL;
+ }
+ break;
+ default:
+ return FALSE;
+ }
+ }
+
+ return $thiz;
+ }
+
+ function render()
+ {
+ $r = "Set-Cookie: ";
+ $isfirst = TRUE;
+
+ foreach ($this->attr as $k => $v) {
+ if ($v == NULL) {
+ $r .= sprintf("%s%s", ($isfirst ? "" : "; "), $k);
+ }
+ else {
+ $r .= sprintf("%s%s=%s", ($isfirst ? "" : "; "), $k, $v);
+ }
+ $isfirst = FALSE;
+ }
+ $r .= "\r\n";
+
+ return $r;
+ }
+}
+
+class Cookies {
+ var $cookies;
+
+ function Cookies()
+ {
+ $this->cookies = array();
+ }
+
+ function add($name)
+ {
+ if (($cookie = call_user_func_array("Cookie::create", func_get_args())) == FALSE)
+ return (FALSE);
+
+ array_push($this->cookies, $cookie);
+
+ return (TRUE);
+ }
+
+ function render()
+ {
+ $r = "";
+ foreach ($this->cookies as $cookie) {
+ $r .= $cookie->render();
+ }
+
+ return ($r);
+ }
+}
+
class Sac_a_push {
static $fixed_fd = 2;
break;
case "index_wr.php":
- $bri = $s_a_p->app->match_get($table_idx, $table_token);
- ob_start();
- bin5_index_wr_main($bri, $addr, $get, $post, $cookie);
- $content = ob_get_contents();
- ob_end_clean();
-
+ if (isset($table_idx) && isset($table_token)) {
+ if (($bri = $s_a_p->app->match_get($table_idx, $table_token)) != FALSE) {
+ ob_start();
+ bin5_index_wr_main($bri, $addr, $get, $post, $cookie);
+ $content = ob_get_contents();
+ ob_end_clean();
+ }
+ }
$s_a_p->pgflush_try_add($enc, $new_socket, 20, $header_out, $content);
return TRUE;
break;
case "index_rd_ifra.php":
do {
- if (($bri = $s_a_p->app->match_get($table_idx, $table_token)) == NULL
+ if (!isset($table_idx)
+ || !isset($table_token)
|| !isset($cookie['sess'])
+ || ($bri = $s_a_p->app->match_get($table_idx, $table_token)) == NULL
|| (($user = $bri->get_user($cookie['sess'], $idx)) == FALSE)) {
$content = Bin5_user::stream_fini($s_a_p->rndstr, TRUE);
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);
+ $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;
}
// recovery lost game
if ($user->stat == "table") {
- setcookie("table_token", $user->table_token, $curtime + 31536000);
- setcookie("table_idx", $user->table, $curtime + 31536000);
+ $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'] = "Location: briskin5/index.php";
return TRUE;
}