3 // this function is the initial insertion point for the web calls, here we need to determine where we go
4 global $CALL_ME_FUNCTIONS;
6 // the home_page_provders bit is an array
7 global $HOME_PAGE_PROVIDERS;
9 $MENU_ITEMS["00home"]["text"] = "Home";
10 $MENU_ITEMS["00home"]["link"] = "$BASE_URL";
14 function gwvpmini_goWeb()
16 global $CALL_ME_FUNCTIONS, $force_ssl;
18 // first we determine if we have a valid setup and run the installer if not
19 /*if(!gwvpmini_issetup()) {
24 // 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
25 // the functions return (i.e. if function returns false, its not it, otherwise it returns a function name we have to call)
26 // this is important for our plugin structure later on - the key on the array serves an an ordering method
29 if(!isset($_SERVER['HTTPS'])) {
30 header("Location: https://".$_SERVER["HTTP_HOST"].$_SERVER["REQUEST_URI"], true);
36 ksort($CALL_ME_FUNCTIONS);
37 foreach($CALL_ME_FUNCTIONS as $key => $val) {
38 //error_log("checking callmefunction $key as $val");
40 if($callme !== false) {
46 // we fell-thru to the main web page builder
47 gwvpmini_goMainPage();
50 function gwvpmini_SendMessage($messagetype, $message)
52 $_SESSION["messagetype"] = $messagetype;
53 $_SESSION["message"] = $message;
56 function gwvpmini_goMainPage($bodyFunction = null)
58 // the main page will look pretty simple, a title, a menu then a body
59 global $WEB_ROOT_FS, $BASE_URL;
61 // a simple web page layout that loads any css and js files that exist in the css and js directories
62 echo "<html><head><title>GWVP</title>";
65 if(file_exists("$WEB_ROOT_FS/css")) {
66 $dh = opendir("$WEB_ROOT_FS/css");
68 while(($file = readdir($dh))!==false) {
69 $mt = preg_match("/.*.css$/", $file);
71 error_log("loading css $file");
72 echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"$BASE_URL/css/$file\">";
73 //echo "required $basedir/$file\n";
80 if(file_exists("$WEB_ROOT_FS/js")) {
81 $dh = opendir("$WEB_ROOT_FS/js");
83 while(($file = readdir($dh))!==false) {
84 $mt = preg_match("/.*.js$/", $file);
86 error_log("loading js $file");
87 echo "<script type=\"text/javascript\" src=\"$BASE_URL/js/$file\"></script>";
88 //echo "required $basedir/$file\n";
98 echo "<h1>Git over Web Via PHP</h1>";
101 echo "<table width=\"100%\">";
103 echo "<tr width=\"100%\" bgcolor=\"#ddddff\"><td colspan=\"2\" align=\"right\">";
104 gwvpmini_SearchBuilder();
108 if(isset($_SESSION["message"])) {
109 echo "<tr width=\"100%\"><td colspan=\"2\">";
110 gwvpmini_MessageBuilder();
114 echo "<tr width=\"100%\" bgcolor=\"#ddffdd\"><td>";
115 gwvpmini_MenuBuilder();
116 echo "</td><td align=\"right\">";
117 gwvpmini_LoginBuilder();
122 echo "<tr><td colspan=\"2\">";
123 if($bodyFunction == null) {
124 gwvpmini_BodyBuilder();
126 if(function_exists($bodyFunction)) {
129 error_log("Got called with non-existant body function, $bodyFunction");
130 gwvpmini_BodyBuilder();
136 gwvpmini_TailBuilder();
137 echo "</td></tr></table></body></html>";
142 // builds the message builder if its needed
143 function gwvpmini_MessageBuilder()
146 $messagetype = "info";
147 if(isset($_SESSION["message"])) $message = $_SESSION["message"];
148 if(isset($_SESSION["messagetype"])) $messagetype = $_SESSION["messagetype"];
151 switch($messagetype) {
153 echo "<table border=\"1\" width=\"100%\"><tr width=\"100%\"><td bgcolor=\"#AAFFAA\">$message</td></tr></table>";
156 echo "<table border=\"1\" width=\"100%\"><tr width=\"100%\"><td bgcolor=\"#FFAAAA\">$message</td></tr></table>";
159 unset($_SESSION["message"]);
160 if(isset($_SESSION["messagetype"])) unset($_SESSION["messagetype"]);
164 // builds the menu structure
165 function gwvpmini_MenuBuilder()
167 global $MENU_ITEMS, $BASE_URL;
171 echo "<table border=\"1\"><tr><td><b><i>Menu</i></b></td>";
172 foreach($MENU_ITEMS as $key => $val) {
173 $link = $val["link"];
174 $text = $val["text"];
176 // TODO: redo this bit with stristr to find urls - special case for home
178 if(isset($_REQUEST["q"])) {
179 $extlink = str_replace("$BASE_URL/", "", $link);
180 error_log("trying to do replace of $BASE_URL in $link, got $extlink for ".$_REQUEST["q"]);
181 if(stristr($_REQUEST["q"], $extlink)!==false) {
182 $menucolor = " bgcolor=\"#ffdddd\"";
186 // special case for home
187 if($link == $BASE_URL) $menucolor = " bgcolor=\"#ffdddd\"";
193 if(isset($val["userlevel"])) {
194 if(gwvpmini_CheckAuthLevel($val["userlevel"])) {
195 echo "<td$menucolor><a href=\"$link\">$text</a></td>";
199 echo "<td$menucolor><a href=\"$link\">$text</a></td>";
202 echo "</tr></table>";
206 function gwvpmini_LoginBuilder()
208 global $WEB_ROOT_FS, $BASE_URL;
210 $login = gwvpmini_IsLoggedIn();
211 if($login === false) {
212 gwvpmini_SingleLineLoginForm();
214 echo "Hello <a href=\"$BASE_URL/user/".$_SESSION["username"]."\">".$_SESSION["fullname"]."</a> <a href=\"$BASE_URL/logout\">logout</a>";
218 // builds the body structure
219 function gwvpmini_BodyBuilder()
221 global $HOME_PAGE_PROVIDERS;
223 echo "I AM THE MAIN BODY, FEAR ME!!!! - have no idea whats going to go here";
224 if(isset($HOME_PAGE_PROVIDERS)) {
225 ksort($HOME_PAGE_PROVIDERS);
226 foreach($HOME_PAGE_PROVIDERS as $provider) {
227 error_log("Loading home_page_provider, $provider");
233 // builds the tail structure
234 function gwvpmini_TailBuilder()
236 echo "<br><br><hr><font size=\"-1\"><b><a href=\"http://github.com/takigama/GWVP\">GWVP</a></b> - <i>Copyright 2011, 2012 PJR - <a href=\"http://www.gnu.org/copyleft/gpl.html\">GPL</a></i></font>";
239 function gwvpmini_emailToUserLink($email)
243 $username = gwvpmini_GetUserNameFromEmail($email);
245 if($username !== false) {
246 return "<a href=\"$BASE_URL/user/$username\">$username</a>";
252 function gwvpmini_fourZeroThree()
254 error_log("403 called");
255 header("HTTP/1.1 403 Permission Denied");
258 function gwvpmini_fourZeroFour()
260 error_log("404 called");
261 header("HTTP/1.1 404 No Such Thing");
266 * Get either a Gravatar URL or complete image tag for a specified email address.
\r
268 * @param string $email The email address
\r
269 * @param string $s Size in pixels, defaults to 80px [ 1 - 2048 ]
\r
270 * @param string $d Default imageset to use [ 404 | mm | identicon | monsterid | wavatar ]
\r
271 * @param string $r Maximum rating (inclusive) [ g | pg | r | x ]
\r
272 * @param boole $img True to return a complete IMG tag False for just the URL
\r
273 * @param array $atts Optional, additional key/value attributes to include in the IMG tag
\r
274 * @return String containing either just a URL or a complete image tag
\r
275 * @source http://gravatar.com/site/implement/images/php/
\r
277 function gwvpmini_HtmlGravatar($email, $size, $htmlappend="")
280 global $use_gravatar;
283 error_log("call to gravatar with yes");
285 error_log("call to gravatar with no");
288 if($use_gravatar == false) return "";
289 return get_gravatar( $email, $size, 'mm', 'g', true)."$htmlappend";
292 function get_gravatar( $email, $s = 80, $d = 'mm', $r = 'g', $img = false, $atts = array() ) {
\r
293 $url = 'http://en.gravatar.com/avatar/';
\r
294 $url .= md5( strtolower( trim( $email ) ) );
\r
295 $url .= "?s=$s&d=$d&r=$r";
\r
297 $url = '<img src="' . $url . '"';
\r
298 foreach ( $atts as $key => $val )
\r
299 $url .= ' ' . $key . '="' . $val . '"';
\r