force ssl, change to /gwvp url
[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 Mini</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 - Mini Version</h2>";
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=\"2\">";
123         if($bodyFunction == null) {
124                 gwvpmini_BodyBuilder();
125         } else {
126                 if(function_exists($bodyFunction)) {
127                         $bodyFunction();
128                 } else {
129                         error_log("Got called with non-existant body function, $bodyFunction");
130                         gwvpmini_BodyBuilder();
131                 }
132         }
133         echo "</td></tr>";
134         
135         echo "<tr><td>";
136         gwvpmini_TailBuilder();
137         echo "</td></tr></table></body></html>";
138         
139 }
140
141
142 // builds the message builder if its needed
143 function gwvpmini_MessageBuilder()
144 {
145         $message = "";
146         $messagetype = "info";
147         if(isset($_SESSION["message"])) $message = $_SESSION["message"];
148         if(isset($_SESSION["messagetype"])) $messagetype = $_SESSION["messagetype"];
149         
150         if($message != "") {
151                 switch($messagetype) {
152                         case "info":
153                                 echo "<table border=\"1\" width=\"100%\"><tr width=\"100%\"><td bgcolor=\"#AAFFAA\">$message</td></tr></table>";
154                                 break;
155                         case "error":
156                                 echo "<table border=\"1\" width=\"100%\"><tr width=\"100%\"><td bgcolor=\"#FFAAAA\">$message</td></tr></table>";
157                                 break;
158                 }
159                 unset($_SESSION["message"]);
160                 if(isset($_SESSION["messagetype"])) unset($_SESSION["messagetype"]);
161         }
162 }
163
164 // builds the menu structure
165 function gwvpmini_MenuBuilder()
166 {
167         global $MENU_ITEMS, $BASE_URL;
168         
169         ksort($MENU_ITEMS);
170         
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"];
175                 
176                 // TODO: redo this bit with stristr to find urls - special case for home
177                 $menucolor = "";
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\"";
183                                 
184                         }
185                 } else {
186                         // special case for home
187                         if($link == $BASE_URL) $menucolor = " bgcolor=\"#ffdddd\"";
188                 }
189                 
190                 
191                 
192                 
193                 if(isset($val["userlevel"])) {
194                         if(gwvpmini_CheckAuthLevel($val["userlevel"])) {
195                                 echo "<td$menucolor><a href=\"$link\">$text</a></td>";
196                         }
197                         
198                 } else {
199                         echo "<td$menucolor><a href=\"$link\">$text</a></td>";
200                 }
201         }
202         echo "</tr></table>";
203         
204 }
205
206 function gwvpmini_LoginBuilder()
207 {
208         global $WEB_ROOT_FS, $BASE_URL;
209         
210         $login = gwvpmini_IsLoggedIn();
211         if($login === false) {
212                 gwvpmini_SingleLineLoginForm();
213         } else {
214                 echo "Hello <a href=\"$BASE_URL/user/".$_SESSION["username"]."\">".$_SESSION["fullname"]."</a> <a href=\"$BASE_URL/logout\">logout</a>";
215         }
216 }
217
218 // builds the body structure
219 function gwvpmini_BodyBuilder()
220 {
221         global $HOME_PAGE_PROVIDERS;
222         
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");
228                         $provider();
229                 }
230         }
231 }
232
233 // builds the tail structure
234 function gwvpmini_TailBuilder()
235 {
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>";
237 }
238
239 function gwvpmini_emailToUserLink($email)
240 {
241         global $BASE_URL;
242         
243         $username = gwvpmini_GetUserNameFromEmail($email);
244         
245         if($username !== false) {
246                 return "<a href=\"$BASE_URL/user/$username\">$username</a>";
247         } else {
248                 return false;
249         }
250 }
251
252 function gwvpmini_fourZeroThree()
253 {
254         error_log("403 called");
255         header("HTTP/1.1 403 Permission Denied");
256 }
257
258 function gwvpmini_fourZeroFour()
259 {
260         error_log("404 called");
261         header("HTTP/1.1 404 No Such Thing");
262 }
263
264
265 /**\r
266  * Get either a Gravatar URL or complete image tag for a specified email address.\r
267  *\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
276  */
277 function gwvpmini_HtmlGravatar($email, $size, $htmlappend="")
278 {
279         
280         global $use_gravatar;
281         
282         if($use_gravatar) {
283                 error_log("call to gravatar with yes");
284         } else {
285                 error_log("call to gravatar with no");
286         }
287         
288         if($use_gravatar == false) return "";
289         return get_gravatar( $email, $size, 'mm', 'g', true)."$htmlappend";
290 }
291 \r
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
296         if ( $img ) {\r
297                 $url = '<img src="' . $url . '"';\r
298                 foreach ( $atts as $key => $val )\r
299                         $url .= ' ' . $key . '="' . $val . '"';\r
300                 $url .= ' />';\r
301         }\r
302         return $url;\r
303 }\r
304
305
306 ?>