850ebfd9afdcc6e5062305149160d4a62afef199
[gwvp-mini.git] / gwvpmini / gwvpmini_web.php
1 <?php
2
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;
5
6 // the home_page_provders bit is an array 
7 global $HOME_PAGE_PROVIDERS;
8
9 $MENU_ITEMS["00home"]["text"] = "Home";
10 $MENU_ITEMS["00home"]["link"] = "$BASE_URL";
11
12
13
14 function gwvpmini_goWeb()
15 {
16         global $CALL_ME_FUNCTIONS, $force_ssl;
17         
18         // first we determine if we have a valid setup and run the installer if not
19         /*if(!gwvpmini_issetup()) {
20                 gwvpmini_goSetup();
21                 return;
22         }*/
23         
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
27         
28         if($force_ssl) {
29                 if(!isset($_SERVER['HTTPS'])) {
30                         header("Location: https://".$_SERVER["HTTP_HOST"].$_SERVER["REQUEST_URI"], true);
31                         return;
32                 }       
33         }
34         
35         
36         ksort($CALL_ME_FUNCTIONS);
37         foreach($CALL_ME_FUNCTIONS as $key => $val) {
38                 //// error_log("checking callmefunction $key as $val");
39                 $callme = $val();
40                 if($callme !== false) {
41                         $callme();
42                         return;
43                 }
44         }
45         
46         // we fell-thru to the main web page builder
47         gwvpmini_goMainPage();
48 }
49
50 function gwvpmini_SendMessage($messagetype, $message)
51 {
52         $_SESSION["messagetype"] = $messagetype;
53         $_SESSION["message"] = $message;
54 }
55
56 function gwvpmini_goMainPage($bodyFunction = null)
57 {
58         // the main page will look pretty simple, a title, a menu then a body
59         global $WEB_ROOT_FS, $BASE_URL;
60         
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>";
63         
64         // load css
65         if(file_exists("$WEB_ROOT_FS/css")) {
66                 $dh = opendir("$WEB_ROOT_FS/css");
67                 if($dh) {
68                         while(($file = readdir($dh))!==false) {
69                                 $mt = preg_match("/.*.css$/", $file);
70                                 if($mt > 0) {
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";
74                                 }
75                         }
76                 }               
77         }
78
79         // load js
80         if(file_exists("$WEB_ROOT_FS/js")) {
81                 $dh = opendir("$WEB_ROOT_FS/js");
82                 if($dh) {
83                         while(($file = readdir($dh))!==false) {
84                                 $mt = preg_match("/.*.js$/", $file);
85                                 if($mt > 0) {
86                                         // error_log("loading js $file");
87                                         echo "<script type=\"text/javascript\" src=\"$BASE_URL/js/$file\"></script>";
88                                         //echo "required $basedir/$file\n";
89                                 }
90                         }
91                 }               
92         }
93         
94         
95         // start body
96         echo "</head><body>";
97         
98         echo "<h1>Git over Web Via PHP</h1>";
99         
100         
101         echo "<table width=\"100%\">";
102         
103         echo "<tr width=\"100%\" bgcolor=\"#ddddff\"><td colspan=\"2\" align=\"right\">";
104         gwvpmini_SearchBuilder();
105         echo "</td></tr>";\r
106         
107
108         if(isset($_SESSION["message"])) {
109                 echo "<tr width=\"100%\"><td colspan=\"2\">";
110                 gwvpmini_MessageBuilder();
111                 echo "</td></tr>";
112         }
113         
114         echo "<tr width=\"100%\" bgcolor=\"#ddffdd\"><td>";
115         gwvpmini_MenuBuilder();
116         echo "</td><td align=\"right\">";
117         gwvpmini_LoginBuilder();
118         echo "</td>";
119         
120         echo "</tr>";
121         
122         echo "<tr><td colspan=\"4\">";
123         
124         echo "<table><tr><td>";
125         if($bodyFunction == null) {
126                 gwvpmini_BodyBuilder();
127         } else {
128                 if(function_exists($bodyFunction)) {
129                         $bodyFunction();
130                 } else {
131                         // error_log("Got called with non-existant body function, $bodyFunction");
132                         gwvpmini_BodyBuilder();
133                 }
134         }
135         
136         echo "</td><td align=\"right\">";
137         
138         gwvpmini_ChatBuilder();
139         echo "</td></tr></table>";\r
140         
141         echo "</td></tr>";
142         
143         echo "<tr><td>";
144         gwvpmini_TailBuilder();
145         echo "</td></tr></table></body></html>";
146         
147 }
148
149
150 // builds the message builder if its needed
151 function gwvpmini_MessageBuilder()
152 {
153         $message = "";
154         $messagetype = "info";
155         if(isset($_SESSION["message"])) $message = $_SESSION["message"];
156         if(isset($_SESSION["messagetype"])) $messagetype = $_SESSION["messagetype"];
157         
158         if($message != "") {
159                 switch($messagetype) {
160                         case "info":
161                                 echo "<table border=\"1\" width=\"100%\"><tr width=\"100%\"><td bgcolor=\"#AAFFAA\">$message</td></tr></table>";
162                                 break;
163                         case "error":
164                                 echo "<table border=\"1\" width=\"100%\"><tr width=\"100%\"><td bgcolor=\"#FFAAAA\">$message</td></tr></table>";
165                                 break;
166                 }
167                 unset($_SESSION["message"]);
168                 if(isset($_SESSION["messagetype"])) unset($_SESSION["messagetype"]);
169         }
170 }
171
172 function gwvpmini_ChatBuilder()
173 {
174         gwvpmini_DisplayChat();
175 }
176
177 // builds the menu structure
178 function gwvpmini_MenuBuilder()
179 {
180         global $MENU_ITEMS, $BASE_URL;
181         
182         ksort($MENU_ITEMS);
183         
184         echo "<table border=\"1\"><tr><td><b><i>Menu</i></b></td>";
185         foreach($MENU_ITEMS as $key => $val) {
186                 $link = $val["link"];
187                 $text = $val["text"];
188                 
189                 // TODO: redo this bit with stristr to find urls - special case for home
190                 $menucolor = "";
191                 if(isset($_REQUEST["q"])) {
192                         $extlink = str_replace("$BASE_URL/", "", $link);
193                         // error_log("trying to do replace of $BASE_URL in $link, got $extlink for ".$_REQUEST["q"]);
194                         if(stristr($_REQUEST["q"], $extlink)!==false) {
195                                 $menucolor = " bgcolor=\"#ffdddd\"";
196                                 
197                         }
198                 } else {
199                         // special case for home
200                         if($link == $BASE_URL) $menucolor = " bgcolor=\"#ffdddd\"";
201                 }
202                 
203                 
204                 
205                 
206                 if(isset($val["userlevel"])) {
207                         if(gwvpmini_CheckAuthLevel($val["userlevel"])) {
208                                 echo "<td$menucolor><a href=\"$link\">$text</a></td>";
209                         }
210                         
211                 } else {
212                         echo "<td$menucolor><a href=\"$link\">$text</a></td>";
213                 }
214         }
215         echo "</tr></table>";
216         
217 }
218
219 function gwvpmini_LoginBuilder()
220 {
221         global $WEB_ROOT_FS, $BASE_URL;
222         
223         $login = gwvpmini_IsLoggedIn();
224         if($login === false) {
225                 gwvpmini_SingleLineLoginForm();
226         } else {
227                 echo "Hello <a href=\"$BASE_URL/user/".$_SESSION["username"]."\">".$_SESSION["fullname"]."</a> <a href=\"$BASE_URL/logout\">logout</a>";
228         }
229 }
230
231 // builds the body structure
232 function gwvpmini_BodyBuilder()
233 {
234         global $HOME_PAGE_PROVIDERS;
235         
236         if(isset($HOME_PAGE_PROVIDERS)) {
237                 ksort($HOME_PAGE_PROVIDERS);
238                 foreach($HOME_PAGE_PROVIDERS as $provider) {
239                         // error_log("Loading home_page_provider, $provider");
240                         $provider();
241                 }
242         }
243 }
244
245 // builds the tail structure
246 function gwvpmini_TailBuilder()
247 {
248         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>";
249 }
250
251 function gwvpmini_emailToUserLink($email)
252 {
253         global $BASE_URL;
254         
255         $username = gwvpmini_GetUserNameFromEmail($email);
256         
257         if($username !== false) {
258                 return "<a href=\"$BASE_URL/user/$username\">$username</a>";
259         } else {
260                 return false;
261         }
262 }
263
264 function gwvpmini_fourZeroThree()
265 {
266         // error_log("403 called");
267         header("HTTP/1.1 403 Permission Denied");
268 }
269
270 function gwvpmini_fourZeroFour()
271 {
272         // error_log("404 called");
273         header("HTTP/1.1 404 No Such Thing");
274 }
275
276
277 /**\r
278  * Get either a Gravatar URL or complete image tag for a specified email address.\r
279  *\r
280  * @param string $email The email address\r
281  * @param string $s Size in pixels, defaults to 80px [ 1 - 2048 ]\r
282  * @param string $d Default imageset to use [ 404 | mm | identicon | monsterid | wavatar ]\r
283  * @param string $r Maximum rating (inclusive) [ g | pg | r | x ]\r
284  * @param boole $img True to return a complete IMG tag False for just the URL\r
285  * @param array $atts Optional, additional key/value attributes to include in the IMG tag\r
286  * @return String containing either just a URL or a complete image tag\r
287  * @source http://gravatar.com/site/implement/images/php/\r
288  */
289 function gwvpmini_HtmlGravatar($email, $size, $htmlappend="")
290 {
291         
292         global $use_gravatar;
293         
294         if($use_gravatar) {
295                 // error_log("call to gravatar with yes");
296         } else {
297                 // error_log("call to gravatar with no");
298         }
299         
300         if($use_gravatar == false) return "";
301         return get_gravatar( $email, $size, 'mm', 'g', true)."$htmlappend";
302 }
303 \r
304 function get_gravatar( $email, $s = 80, $d = 'mm', $r = 'g', $img = false, $atts = array() ) {\r
305         $url = 'http://en.gravatar.com/avatar/';\r
306         $url .= md5( strtolower( trim( $email ) ) );\r
307         $url .= "?s=$s&d=$d&r=$r";\r
308         if ( $img ) {\r
309                 $url = '<img src="' . $url . '"';\r
310                 foreach ( $atts as $key => $val )\r
311                         $url .= ' ' . $key . '="' . $val . '"';\r
312                 $url .= ' />';\r
313         }\r
314         return $url;\r
315 }\r
316
317
318 ?>