blob: 9aa873240aa2a3dff64a909f1c57b2c50e391f75 (
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
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
<?php
namespace phorkie;
session_start();
set_include_path(
__DIR__ . '/../src/'
. PATH_SEPARATOR . get_include_path()
);
spl_autoload_register(
function ($class) {
$file = str_replace(array('\\', '_'), '/', $class) . '.php';
$hdl = @fopen($file, 'r', true);
if ($hdl !== false) {
fclose($hdl);
require $file;
}
}
);
set_exception_handler(
function ($e) {
if ($e instanceof Exception) {
header('HTTP/1.0 ' . $e->httpStatusCode);
} else {
header('HTTP/1.0 500 Internal server error');
}
if (!isset($GLOBALS['twig'])) {
echo '<h1>Exception</h1>';
echo '<p>' . $e->getMessage() . '</p>';
exit();
}
render(
'exception',
array(
'exception' => $e,
'debug' => $GLOBALS['phorkie']['cfg']['debug']
)
);
exit();
}
);
require_once __DIR__ . '/../data/config.default.php';
if (file_exists(__DIR__ . '/../data/config.php')) {
require_once __DIR__ . '/../data/config.php';
}
if ($GLOBALS['phorkie']['cfg']['setupcheck']) {
SetupCheck::run();
}
// Set/Get git commit session variables
$_SESSION['ipaddr'] = $_SERVER['REMOTE_ADDR'];
if (!isset($_SESSION['name'])) {
$_SESSION['name'] = $GLOBALS['phorkie']['auth']['anonymousName'];
}
if (!isset($_SESSION['email'])) {
$_SESSION['email'] = $GLOBALS['phorkie']['auth']['anonymousEmail'];
}
\Twig_Autoloader::register();
$loader = new \Twig_Loader_Filesystem($GLOBALS['phorkie']['cfg']['tpl']);
$twig = new \Twig_Environment(
$loader,
array(
//'cache' => '/path/to/compilation_cache',
'debug' => true
)
);
//$twig->addExtension(new \Twig_Extension_Debug());
if (!isset($noSecurityCheck) || $noSecurityCheck !== true) {
require __DIR__ . '/www-security.php';
}
function render($tplname, $vars = array())
{
$vars['css'] = $GLOBALS['phorkie']['cfg']['css'];
$vars['title'] = $GLOBALS['phorkie']['cfg']['title'];
$vars['topbar'] = $GLOBALS['phorkie']['cfg']['topbar'];
if (isset($_SESSION['identity'])) {
$vars['identity'] = $_SESSION['identity'];
$vars['name'] = $_SESSION['name'];
$vars['email'] = $_SESSION['email'];
}
$vars['db'] = new Database();
$template = $GLOBALS['twig']->loadTemplate($tplname . '.htm');
echo $template->render($vars);
}
function redirect($target)
{
header('Location: ' . $target);
exit();
}
?>
|