| 
									
										
										
										
											2008-05-07 12:48:07 -04:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2008-05-20 15:14:12 -04:00
										 |  |  | /* | 
					
						
							| 
									
										
										
										
											2008-05-14 15:26:48 -04:00
										 |  |  |  * Laconica - a distributed open-source microblogging tool | 
					
						
							|  |  |  |  * Copyright (C) 2008, Controlez-Vous, Inc. | 
					
						
							| 
									
										
										
										
											2008-05-20 15:14:12 -04:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2008-05-14 15:26:48 -04:00
										 |  |  |  * This program is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU Affero General Public License as published by | 
					
						
							|  |  |  |  * the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  |  * (at your option) any later version. | 
					
						
							| 
									
										
										
										
											2008-05-20 15:14:12 -04:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2008-05-14 15:26:48 -04:00
										 |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  * GNU Affero General Public License for more details. | 
					
						
							| 
									
										
										
										
											2008-05-20 15:14:12 -04:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2008-05-14 15:26:48 -04:00
										 |  |  |  * You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  |  * along with this program.  If not, see <http://www.gnu.org/licenses/>. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2008-05-07 12:48:07 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | define('INSTALLDIR', dirname(__FILE__)); | 
					
						
							| 
									
										
										
										
											2008-05-14 15:26:48 -04:00
										 |  |  | define('LACONICA', true); | 
					
						
							| 
									
										
										
										
											2008-05-07 12:48:07 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-17 11:49:42 -04:00
										 |  |  | require_once(INSTALLDIR . "/lib/common.php"); | 
					
						
							| 
									
										
										
										
											2008-05-07 12:48:07 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | $action = $_REQUEST['action']; | 
					
						
							| 
									
										
										
										
											2008-05-19 10:12:19 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | if (!$action) { | 
					
						
							|  |  |  | 	common_redirect(common_local_url('public')); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-07 12:48:07 -04:00
										 |  |  | $actionfile = INSTALLDIR."/actions/$action.php"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if (file_exists($actionfile)) { | 
					
						
							|  |  |  | 	require_once($actionfile); | 
					
						
							| 
									
										
										
										
											2008-05-17 12:18:17 -04:00
										 |  |  | 	$action_class = ucfirst($action)."Action"; | 
					
						
							| 
									
										
										
										
											2008-05-17 12:39:17 -04:00
										 |  |  | 	$action_obj = new $action_class(); | 
					
						
							|  |  |  | 	call_user_func(array($action_obj, 'handle'), $_REQUEST); | 
					
						
							| 
									
										
										
										
											2008-05-07 12:48:07 -04:00
										 |  |  | } else { | 
					
						
							| 
									
										
										
										
											2008-05-14 15:26:48 -04:00
										 |  |  | 	common_user_error(_t('Unknown action')); | 
					
						
							| 
									
										
										
										
											2008-05-17 11:49:42 -04:00
										 |  |  | } |