disabling chat bits, should really work on core functionaly first.
[gwvp-mini.git] / gwvpmini / gwvpmini_web.php
index 97afbaa..71a931f 100644 (file)
@@ -13,7 +13,7 @@ $MENU_ITEMS["00home"]["link"] = "$BASE_URL";
 
 function gwvpmini_goWeb()
 {
-       global $CALL_ME_FUNCTIONS;
+       global $CALL_ME_FUNCTIONS, $force_ssl;
        
        // first we determine if we have a valid setup and run the installer if not
        /*if(!gwvpmini_issetup()) {
@@ -24,9 +24,18 @@ function gwvpmini_goWeb()
        // next, we go thru the CALL_ME_FUNCTIONS - the purpose of call_me_functions is to determine if a function should be called based on
        // the functions return (i.e. if function returns false, its not it, otherwise it returns a function name we have to call)
        // this is important for our plugin structure later on - the key on the array serves an an ordering method
+       
+       if($force_ssl) {
+               if(!isset($_SERVER['HTTPS'])) {
+                       header("Location: https://".$_SERVER["HTTP_HOST"].$_SERVER["REQUEST_URI"], true);
+                       return;
+               }       
+       }
+       
+       
        ksort($CALL_ME_FUNCTIONS);
        foreach($CALL_ME_FUNCTIONS as $key => $val) {
-               //error_log("checking callmefunction $key as $val");
+               //// error_log("checking callmefunction $key as $val");
                $callme = $val();
                if($callme !== false) {
                        $callme();
@@ -50,7 +59,7 @@ function gwvpmini_goMainPage($bodyFunction = null)
        global $WEB_ROOT_FS, $BASE_URL;
        
        // a simple web page layout that loads any css and js files that exist in the css and js directories
-       echo "<html><head><title>GWVP Mini</title>";
+       echo "<html><head><title>GWVP</title>";
        
        // load css
        if(file_exists("$WEB_ROOT_FS/css")) {
@@ -59,7 +68,7 @@ function gwvpmini_goMainPage($bodyFunction = null)
                        while(($file = readdir($dh))!==false) {
                                $mt = preg_match("/.*.css$/", $file);
                                if($mt > 0) {
-                                       error_log("loading css $file");
+                                       // error_log("loading css $file");
                                        echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"$BASE_URL/css/$file\">";
                                        //echo "required $basedir/$file\n";
                                }
@@ -74,7 +83,7 @@ function gwvpmini_goMainPage($bodyFunction = null)
                        while(($file = readdir($dh))!==false) {
                                $mt = preg_match("/.*.js$/", $file);
                                if($mt > 0) {
-                                       error_log("loading js $file");
+                                       // error_log("loading js $file");
                                        echo "<script type=\"text/javascript\" src=\"$BASE_URL/js/$file\"></script>";
                                        //echo "required $basedir/$file\n";
                                }
@@ -86,7 +95,7 @@ function gwvpmini_goMainPage($bodyFunction = null)
        // start body
        echo "</head><body>";
        
-       echo "<h1>Git over Web Via PHP - Mini Version</h2>";
+       echo "<h1>Git over Web Via PHP</h1>";
        
        
        echo "<table width=\"100%\">";
@@ -110,17 +119,30 @@ function gwvpmini_goMainPage($bodyFunction = null)
        
        echo "</tr>";
        
-       echo "<tr><td colspan=\"2\">";
+       echo "<tr width=\"100%\"><td colspan=\"3\">";
+       
+       echo "<table width=\"100%\"><tr width=\"100%\" valign=\"top\"><td>";
        if($bodyFunction == null) {
                gwvpmini_BodyBuilder();
        } else {
                if(function_exists($bodyFunction)) {
                        $bodyFunction();
                } else {
-                       error_log("Got called with non-existant body function, $bodyFunction");
+                       // error_log("Got called with non-existant body function, $bodyFunction");
                        gwvpmini_BodyBuilder();
                }
        }
+       
+       echo "</td>";
+       
+       /* TODO: taking out chat for now
+       echo "<td align=\"right\">";
+       
+       gwvpmini_ChatBuilder();
+       echo "</td>"; */
+       
+       echo "</tr></table>";\r
+       
        echo "</td></tr>";
        
        echo "<tr><td>";
@@ -152,6 +174,11 @@ function gwvpmini_MessageBuilder()
        }
 }
 
+function gwvpmini_ChatBuilder()
+{
+       gwvpmini_DisplayChat();
+}
+
 // builds the menu structure
 function gwvpmini_MenuBuilder()
 {
@@ -168,7 +195,7 @@ function gwvpmini_MenuBuilder()
                $menucolor = "";
                if(isset($_REQUEST["q"])) {
                        $extlink = str_replace("$BASE_URL/", "", $link);
-                       error_log("trying to do replace of $BASE_URL in $link, got $extlink for ".$_REQUEST["q"]);
+                       // error_log("trying to do replace of $BASE_URL in $link, got $extlink for ".$_REQUEST["q"]);
                        if(stristr($_REQUEST["q"], $extlink)!==false) {
                                $menucolor = " bgcolor=\"#ffdddd\"";
                                
@@ -211,11 +238,10 @@ function gwvpmini_BodyBuilder()
 {
        global $HOME_PAGE_PROVIDERS;
        
-       echo "I AM THE MAIN BODY, FEAR ME!!!! - have no idea whats going to go here";
        if(isset($HOME_PAGE_PROVIDERS)) {
                ksort($HOME_PAGE_PROVIDERS);
                foreach($HOME_PAGE_PROVIDERS as $provider) {
-                       error_log("Loading home_page_provider, $provider");
+                       // error_log("Loading home_page_provider, $provider");
                        $provider();
                }
        }
@@ -242,13 +268,13 @@ function gwvpmini_emailToUserLink($email)
 
 function gwvpmini_fourZeroThree()
 {
-       error_log("403 called");
+       // error_log("403 called");
        header("HTTP/1.1 403 Permission Denied");
 }
 
 function gwvpmini_fourZeroFour()
 {
-       error_log("404 called");
+       // error_log("404 called");
        header("HTTP/1.1 404 No Such Thing");
 }
 
@@ -264,7 +290,22 @@ function gwvpmini_fourZeroFour()
  * @param array $atts Optional, additional key/value attributes to include in the IMG tag\r
  * @return String containing either just a URL or a complete image tag\r
  * @source http://gravatar.com/site/implement/images/php/\r
- */\r
+ */
+function gwvpmini_HtmlGravatar($email, $size, $htmlappend="")
+{
+       
+       global $use_gravatar;
+       
+       if($use_gravatar) {
+               // error_log("call to gravatar with yes");
+       } else {
+               // error_log("call to gravatar with no");
+       }
+       
+       if($use_gravatar == false) return "";
+       return get_gravatar( $email, $size, 'mm', 'g', true)."$htmlappend";
+}
+\r
 function get_gravatar( $email, $s = 80, $d = 'mm', $r = 'g', $img = false, $atts = array() ) {\r
        $url = 'http://en.gravatar.com/avatar/';\r
        $url .= md5( strtolower( trim( $email ) ) );\r