aboutsummaryrefslogtreecommitdiff
path: root/www/www-header.php
blob: 859d797a094c45486b3edcb07ab3571bbe7ced78 (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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<?php
namespace phorkie;
error_reporting(error_reporting() & ~E_STRICT & ~E_DEPRECATED);
session_set_cookie_params(14 * 86400);//2 weeks session expiry time
session_start();

require_once __DIR__ . '/../src/phorkie/autoload.php';
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>';
            echo "\n";
            exit();
        }

        render(
            'exception',
            array(
                'exception' => $e,
                'debug'     => $GLOBALS['phorkie']['cfg']['debug']
            )
        );
        exit();
    }
);

require_once __DIR__ . '/../data/config.default.php';
$pharFile = \Phar::running();
if ($pharFile == '') {
    $cfgFilePath = __DIR__ . '/../data/config.php';
} else {
    //remove phar:// from the path
    $cfgFilePath = substr($pharFile, 7) . '.config.php';
}
$GLOBALS['phorkie']['cfgfiles'][$cfgFilePath] = false;
$GLOBALS['phorkie']['suggestSetupCheck'] = false;
if (file_exists($cfgFilePath)) {
    $GLOBALS['phorkie']['cfgfiles'][$cfgFilePath] = true;
    require_once $cfgFilePath;
} else if ($GLOBALS['phorkie']['cfg']['setupcheck']) {
    $GLOBALS['phorkie']['suggestSetupCheck'] = true;
}

if ($GLOBALS['phorkie']['cfg']['baseurl'] === null) {
    $GLOBALS['phorkie']['cfg']['baseurl'] = Tools::detectBaseUrl();
    if (substr($GLOBALS['phorkie']['cfg']['git']['public'], 0, 9) == '%BASEURL%') {
        //make autoconfig work
        $GLOBALS['phorkie']['cfg']['git']['public'] = Tools::fullUrlNoPhar(
            substr($GLOBALS['phorkie']['cfg']['git']['public'], 9)
        );
    }
}

// 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->addFunction('ntext', new \Twig_Function_Function('\phorkie\ntext'));
function ntext($value, $singular, $plural)
{
    if (abs($value) == 1) {
        return sprintf($singular, $value);
    }
    return sprintf($plural, $value);
}
//$twig->addExtension(new \Twig_Extension_Debug());

if (!isset($noSecurityCheck) || $noSecurityCheck !== true) {
    require __DIR__ . '/www-security.php';
}

function render($tplname, $vars = array(), $return = false)
{
    $vars['baseurl'] = '/';
    if (!empty($GLOBALS['phorkie']['cfg']['baseurl'])) {
        $vars['baseurl'] = $GLOBALS['phorkie']['cfg']['baseurl'];
    }
    $vars['css'] = $GLOBALS['phorkie']['cfg']['css'];
    $vars['iconpng'] = $GLOBALS['phorkie']['cfg']['iconpng'];
    $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'];
    } else if (isset($_COOKIE['lastopenid'])
        && !isset($_COOKIE['tried-autologin'])
    ) {
        $vars['autologin'] = true;
    }
    $vars['db'] = new Database();
    if (!isset($vars['htmlhelper'])) {
        $vars['htmlhelper'] = new HtmlHelper();
    }
    $vars['suggestSetupCheck'] = $GLOBALS['phorkie']['suggestSetupCheck'];

    $template = $GLOBALS['twig']->loadTemplate($tplname . '.htm');

    if ($return) {
        return $template->render($vars);
    } else {
        echo $template->render($vars);
    }
}

function redirect($target)
{
    header('Location: ' . $target);
    exit();
}
?>