2013-12-23 02:55:53 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use PicoFarad\Router;
|
|
|
|
use PicoFarad\Response;
|
|
|
|
use PicoFarad\Request;
|
|
|
|
use PicoFarad\Session;
|
|
|
|
use PicoTools\Template;
|
|
|
|
|
|
|
|
// Called before each action
|
|
|
|
Router\before(function($action) {
|
|
|
|
|
2014-02-08 20:13:14 +01:00
|
|
|
Session\open(dirname($_SERVER['PHP_SELF']), SESSION_SAVE_PATH);
|
|
|
|
|
|
|
|
$ignore_actions = array('login', 'google-auth', 'google-redirect-auth', 'mozilla-auth', 'bookmark-feed');
|
2013-12-23 02:55:53 +01:00
|
|
|
|
|
|
|
if (! isset($_SESSION['user']) && ! in_array($action, $ignore_actions)) {
|
|
|
|
Response\redirect('?action=login');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Load translations
|
|
|
|
$language = Model\Config\get('language') ?: 'en_US';
|
|
|
|
if ($language !== 'en_US') PicoTools\Translator\load($language);
|
|
|
|
|
2014-02-26 01:03:46 +01:00
|
|
|
// Set timezone
|
|
|
|
date_default_timezone_set(Model\Config\get('timezone') ?: 'UTC');
|
|
|
|
|
2013-12-23 02:55:53 +01:00
|
|
|
// HTTP secure headers
|
|
|
|
$frame_src = \PicoFeed\Filter::$iframe_whitelist;
|
|
|
|
$frame_src[] = 'https://login.persona.org';
|
|
|
|
|
|
|
|
Response\csp(array(
|
|
|
|
'media-src' => '*',
|
|
|
|
'img-src' => '*',
|
|
|
|
'frame-src' => $frame_src
|
|
|
|
));
|
|
|
|
|
|
|
|
Response\xframe();
|
|
|
|
Response\xss();
|
|
|
|
Response\nosniff();
|
|
|
|
});
|
|
|
|
|
|
|
|
// Show help
|
|
|
|
Router\get_action('show-help', function() {
|
|
|
|
|
|
|
|
Response\html(Template\load('show_help'));
|
2014-02-05 03:47:59 +01:00
|
|
|
});
|
|
|
|
|
2014-02-08 20:13:14 +01:00
|
|
|
// Show the menu for the mobile view
|
2014-02-05 03:47:59 +01:00
|
|
|
Router\get_action('more', function() {
|
|
|
|
|
|
|
|
Response\html(Template\layout('show_more', array('menu' => 'more')));
|
|
|
|
});
|