summaryrefslogtreecommitdiff
path: root/index.php
blob: c8f72a6ee116801e7cd3aa3a27b1c790912e4722 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
// What directory are we in on the server.
define('BASEPATH', dirname(__FILE__));

// Decide where to look for things
define('LIBPATH',        BASEPATH.'/src/lib'.PATH_SEPARATOR.BASEPATH.'/src/ext');
define('MODELPATH',      BASEPATH.'/src/models');
define('VIEWPATH',       BASEPATH.'/src/views');// views are not objects
define('CONTROLLERPATH', BASEPATH.'/src/controllers');

// Modify our include path to catch our class files.
set_include_path(get_include_path()
                 .PATH_SEPARATOR.LIBPATH
                 .PATH_SEPARATOR.MODELPATH
                 .PATH_SEPARATOR.CONTROLLERPATH
                 );

// Figure what page is trying to be loaded.  Don't worry if we're
// looking for a real file, if the requested page exists as a real
// file, .htaccess won't even let us load this file.
@$PAGE_RAW = $_GET['p'];
preg_match('@(.*)(\.([^./]))?@', $PAGE_RAW, $matches);
@$PAGE = $matches[1];
@$EXT  = $matches[3];
@$ACCEPT = $_SERVER['HTTP_ACCEPT'];
if ($PAGE=='')
	$PAGE = 'index';
if ($EXT!='')
	$ACCEPT = "$EXT, $ACCEPT";
define('PAGE', $PAGE); unset($PAGE);
define('ACCEPT', $ACCEPT); unset($ACCEPT);

// Get ready
require_once('Model.class.php');
require_once('Controller.class.php');
require_once('Router.class.php');

global $mm;
require_once('MessageManager.class.php');
$mm = new MessageManager(BASEPATH.'/conf.php');

// Actually do stuff
$router = new Router(CONTROLLERPATH);
$router->route(PAGE);