blob: b44ad762e1044163dcd37621f58a25ba3709a6c3 (
plain) (
blame)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
<?php
require_once "class/controller.class.php";
require_once "controller/sysconf.control.php";
require_once "controller/auth.control.php";
/*
* Root-level controller for Scrott app. This object will delegate the page request to the
* appropriate controller or handle it with an error message page.
*/
class Root extends Controller
{
/*
* Controller implementation
*/
function handle($argv)
{
/* TODO -- Catch app exceptions here and display a special view to communicate them to user */
/* TODO -- Authentication (login / logout / register) MVC */
$argv = $this->normalizeArgv($argv);
/* First, make sure the system configuration file has been included */
if (!$this->scrottConfExists())
{
$ctrl = new Sysconf();
$ctrl->handle($argv);
}
/* TODO */
/* TODO -- only auth if logged out */
else
{
$ctrl = new Auth();
$ctrl->handle($argv);
}
}
/*
* Get a useful path string by normalizeing the $argv array received from the main function.
* This will remove directory names that appear in the $this->ar() string and the initial
* and trailing (if present) empty strings
*/
function normalizeArgv($argv)
{
$argv = array_values(array_filter($argv));
$ar = array_values(array_filter(explode("/", $this->ar())));
$i = 0;
$trunc = true;
if (count($ar) == 0)
return $argv;
foreach ($ar as $elem)
{
if ($elem != $argv[$i])
{
$trunc = false;
break;
}
$i++;
}
if (!$trunc)
return $argv;
return array_values(array_slice($argv, count($ar)));
}
}
?>
|