physical separation between brisk and sac-a-push (new file)
[brisk.git] / web / spush / sac-a-push.phh
diff --git a/web/spush/sac-a-push.phh b/web/spush/sac-a-push.phh
deleted file mode 100644 (file)
index fef79ac..0000000
+++ /dev/null
@@ -1,79 +0,0 @@
-<?php
-
-function spu_process_info($stream_info, $method, &$header, &$get, &$post, &$cookie)
-{
-    $check_post = FALSE;
-    $header = array();
-    $get = array();
-    $post = array();
-    foreach(preg_split("/(\r?\n)/", $stream_info) as $line) {
-        // printf("LINE: [%s]\n", $line);
-        if ($check_post) {
-            if (!isset($header['The-Request'])) {
-                return FALSE;
-            }
-            $req = explode(" ", $header['The-Request']);
-            $method = $req[0];
-
-            if (isset($header['Cookie'])) {
-                $cookies = explode(";", $header['Cookie']);
-                for ($i = 0 ; $i < count($cookies) ; $i++) {
-                    $nameval = explode("=", trim($cookies[$i]));
-                    if (count($nameval) != 2) {
-                        printf("WARNING: malformat cookie element [%s]\n", $cookies[$i]);
-                        continue;
-                    }
-                    $cookie[$nameval[0]] = urldecode($nameval[1]);
-                }
-            }
-            // GET params management
-            $get_vars = explode('?', $req[1], 2);
-            $path =   $get_vars[0];
-            if (count($get_vars) > 1) {
-                $a = explode('&', $get_vars[1]);
-                printf("A COUNT: [%s] %d\n", $a[0], count($a));
-                for ($i = 0 ; $i < count($a) ; $i++) {
-                    $b = explode('=', $a[$i]);
-                    $get[$b[0]] = urldecode($b[1]);
-                }
-            }
-            // POST params management
-            if ($req[0] == 'POST') {
-                if ($header['Content-Type'] != 'application/x-www-form-urlencoded' 
-                    || !isset($header['Content-Length'])) {
-                    return FALSE;
-                }
-                $post_len = mb_strlen($line, "latin1");
-                $a = explode('&', $line);
-                for ($i = 0 ; $i < count($a) ; $i++) {
-                    $b = explode('=', $a[$i]);
-                    $post[$b[0]] = urldecode($b[1]);
-                }
-                printf("INFO: postlen: %d\n", $post_len);
-            }
-            break;
-        }
-        if ($line == "") {
-            $check_post = TRUE;
-            continue;
-        }
-        $split = explode(":", $line, 2);
-        $header[$split[0]] = $split[1];        
-    }
-    return $path;
-}
-
-function gpcs_var($name, $get, $post, $cookie)
-{
-    if (isset($GLOBALS[$name])) 
-        return FALSE;
-    else if (isset($cookie[$name])) 
-        return ($cookie[$name]);
-    else if (isset($post[$name])) 
-        return ($post[$name]);
-    else if (isset($get[$name])) 
-        return ($get[$name]);
-
-    return FALSE;
-}
-?>