put config.php.dist in textarea for easier selecting and copying
[phorkie.git] / www / www-header.php
1 <?php
2 namespace phorkie;
3 error_reporting(error_reporting() & ~E_STRICT);
4 session_set_cookie_params(14 * 86400);//2 weeks session expiry time
5 session_start();
6
7 require_once __DIR__ . '/../src/phorkie/autoload.php';
8 set_exception_handler(
9     function ($e) {
10         if ($e instanceof Exception) {
11             header('HTTP/1.0 ' . $e->httpStatusCode);
12         } else {
13             header('HTTP/1.0 500 Internal server error');
14         }
15
16         if (!isset($GLOBALS['twig'])) {
17             echo '<h1>Exception</h1>';
18             echo '<p>' . $e->getMessage() . '</p>';
19             echo "\n";
20             exit();
21         }
22
23         render(
24             'exception',
25             array(
26                 'exception' => $e,
27                 'debug'     => $GLOBALS['phorkie']['cfg']['debug']
28             )
29         );
30         exit();
31     }
32 );
33
34 require_once __DIR__ . '/../data/config.default.php';
35 $pharFile = \Phar::running();
36 if ($pharFile == '') {
37     $cfgFilePath = __DIR__ . '/../data/config.php';
38 } else {
39     //remove phar:// from the path
40     $cfgFilePath = substr($pharFile, 7) . '.config.php';
41 }
42 $GLOBALS['phorkie']['cfgfiles'][$cfgFilePath] = false;
43 $GLOBALS['phorkie']['suggestSetupCheck'] = false;
44 if (file_exists($cfgFilePath)) {
45     $GLOBALS['phorkie']['cfgfiles'][$cfgFilePath] = true;
46     require_once $cfgFilePath;
47 } else if ($GLOBALS['phorkie']['cfg']['setupcheck']) {
48     $GLOBALS['phorkie']['suggestSetupCheck'] = true;
49 }
50
51 if ($GLOBALS['phorkie']['cfg']['baseurl'] === null) {
52     $GLOBALS['phorkie']['cfg']['baseurl'] = Tools::detectBaseUrl();
53 }
54
55 // Set/Get git commit session variables
56 $_SESSION['ipaddr'] = $_SERVER['REMOTE_ADDR'];
57 if (!isset($_SESSION['name'])) {
58     $_SESSION['name'] = $GLOBALS['phorkie']['auth']['anonymousName'];
59 }
60 if (!isset($_SESSION['email'])) {
61     $_SESSION['email'] = $GLOBALS['phorkie']['auth']['anonymousEmail'];
62 }
63
64 \Twig_Autoloader::register();
65
66 $loader = new \Twig_Loader_Filesystem($GLOBALS['phorkie']['cfg']['tpl']);
67 $twig = new \Twig_Environment(
68     $loader,
69     array(
70         //'cache' => '/path/to/compilation_cache',
71         'debug' => true
72     )
73 );
74 $twig->addFunction('ntext', new \Twig_Function_Function('\phorkie\ntext'));
75 function ntext($value, $singular, $plural)
76 {
77     if (abs($value) == 1) {
78         return sprintf($singular, $value);
79     }
80     return sprintf($plural, $value);
81 }
82 //$twig->addExtension(new \Twig_Extension_Debug());
83
84 if (!isset($noSecurityCheck) || $noSecurityCheck !== true) {
85     require __DIR__ . '/www-security.php';
86 }
87
88 function render($tplname, $vars = array())
89 {
90     $vars['baseurl'] = '/';
91     if (!empty($GLOBALS['phorkie']['cfg']['baseurl'])) {
92         $vars['baseurl'] = $GLOBALS['phorkie']['cfg']['baseurl'];
93     }
94     $vars['css'] = $GLOBALS['phorkie']['cfg']['css'];
95     $vars['iconpng'] = $GLOBALS['phorkie']['cfg']['iconpng'];
96     $vars['title'] = $GLOBALS['phorkie']['cfg']['title'];
97     $vars['topbar'] = $GLOBALS['phorkie']['cfg']['topbar'];
98     if (isset($_SESSION['identity'])) {
99         $vars['identity'] = $_SESSION['identity'];
100         $vars['name'] = $_SESSION['name'];
101         $vars['email'] = $_SESSION['email'];
102     }
103     $vars['db'] = new Database();
104     if (!isset($vars['htmlhelper'])) {
105         $vars['htmlhelper'] = new HtmlHelper();
106     }
107     $vars['suggestSetupCheck'] = $GLOBALS['phorkie']['suggestSetupCheck'];
108
109     $template = $GLOBALS['twig']->loadTemplate($tplname . '.htm');
110     echo $template->render($vars);
111 }
112 function redirect($target)
113 {
114     header('Location: ' . $target);
115     exit();
116 }
117 ?>