engelsystem/public/index.php

168 lines
5.9 KiB
PHP
Raw Normal View History

<?php
2015-05-14 16:37:12 +02:00
require_once realpath(__DIR__ . '/../includes/engelsystem_provider.php');
2011-06-01 14:30:29 +02:00
2013-12-26 13:34:48 +01:00
$free_pages = array(
2013-12-09 17:10:07 +01:00
'stats',
2013-12-26 13:34:48 +01:00
'shifts_json_export_all',
2013-12-29 15:08:21 +01:00
'user_password_recovery',
'api',
2014-03-09 13:39:04 +01:00
'credits',
2014-08-22 22:34:13 +02:00
'angeltypes',
'users',
'user_driver_licenses',
'ical',
2014-12-12 23:51:37 +01:00
'shifts_json_export',
2014-12-19 22:41:55 +01:00
'shifts',
'atom',
'login'
2013-12-09 17:10:07 +01:00
);
// Gewünschte Seite/Funktion
2014-08-23 01:55:18 +02:00
$p = "";
if (! isset($_REQUEST['p']))
$_REQUEST['p'] = isset($user) ? "news" : "login";
2013-12-26 13:34:48 +01:00
if (isset($_REQUEST['p']) && preg_match("/^[a-z0-9_]*$/i", $_REQUEST['p']) && (in_array($_REQUEST['p'], $free_pages) || in_array($_REQUEST['p'], $privileges))) {
$p = $_REQUEST['p'];
2014-12-06 21:40:16 +01:00
$title = $p;
$content = "";
2013-12-29 15:08:21 +01:00
if ($p == "api") {
2014-09-08 08:38:08 +02:00
require_once realpath(__DIR__ . '/../includes/controller/api.php');
2013-12-29 15:24:54 +01:00
error("Api disabled temporily.");
redirect(page_link_to('login'));
2014-01-05 19:35:23 +01:00
api_controller();
2013-12-29 15:08:21 +01:00
} elseif ($p == "ical") {
2014-09-08 08:38:08 +02:00
require_once realpath(__DIR__ . '/../includes/pages/user_ical.php');
2013-12-26 13:34:48 +01:00
user_ical();
} elseif ($p == "atom") {
2014-09-08 08:38:08 +02:00
require_once realpath(__DIR__ . '/../includes/pages/user_atom.php');
2013-12-26 13:34:48 +01:00
user_atom();
} elseif ($p == "shifts_json_export") {
2014-09-08 08:38:08 +02:00
require_once realpath(__DIR__ . '/../includes/controller/shifts_controller.php');
2013-12-26 13:34:48 +01:00
shifts_json_export_controller();
} elseif ($p == "shifts_json_export_all") {
2014-09-08 08:38:08 +02:00
require_once realpath(__DIR__ . '/../includes/controller/shifts_controller.php');
2013-12-26 13:34:48 +01:00
shifts_json_export_all_controller();
} elseif ($p == "stats") {
2014-09-08 08:38:08 +02:00
require_once realpath(__DIR__ . '/../includes/pages/guest_stats.php');
2013-12-26 13:34:48 +01:00
guest_stats();
} elseif ($p == "user_password_recovery") {
2014-09-08 08:38:08 +02:00
require_once realpath(__DIR__ . '/../includes/controller/users_controller.php');
2013-12-26 13:34:48 +01:00
$title = user_password_recovery_title();
$content = user_password_recovery_controller();
} elseif ($p == "angeltypes") {
list($title, $content) = angeltypes_controller();
2014-12-19 22:41:55 +01:00
} elseif ($p == "shifts") {
list($title, $content) = shifts_controller();
2014-08-22 22:34:13 +02:00
} elseif ($p == "users") {
list($title, $content) = users_controller();
} elseif ($p == "user_angeltypes") {
list($title, $content) = user_angeltypes_controller();
} elseif ($p == "user_driver_licenses") {
list($title, $content) = user_driver_licenses_controller();
2014-12-16 09:25:36 +01:00
} elseif ($p == "shifttypes") {
list($title, $content) = shifttypes_controller();
2013-12-26 13:34:48 +01:00
} elseif ($p == "news") {
2013-11-25 21:04:58 +01:00
$title = news_title();
$content = user_news();
2013-10-13 00:52:44 +02:00
} elseif ($p == "news_comments") {
2014-09-08 08:38:08 +02:00
require_once realpath(__DIR__ . '/../includes/pages/user_news.php');
2013-11-25 21:56:56 +01:00
$title = user_news_comments_title();
$content = user_news_comments();
2013-10-13 00:52:44 +02:00
} elseif ($p == "user_meetings") {
2013-11-25 21:04:58 +01:00
$title = meetings_title();
$content = user_meetings();
2013-10-13 00:52:44 +02:00
} elseif ($p == "user_myshifts") {
2013-11-25 21:04:58 +01:00
$title = myshifts_title();
$content = user_myshifts();
2013-10-13 00:52:44 +02:00
} elseif ($p == "user_shifts") {
2013-11-25 21:04:58 +01:00
$title = shifts_title();
$content = user_shifts();
2013-10-13 00:52:44 +02:00
} elseif ($p == "user_messages") {
2013-11-25 21:04:58 +01:00
$title = messages_title();
$content = user_messages();
2013-10-13 00:52:44 +02:00
} elseif ($p == "user_questions") {
2013-11-25 21:04:58 +01:00
$title = questions_title();
$content = user_questions();
2013-10-13 00:52:44 +02:00
} elseif ($p == "user_settings") {
2013-11-25 21:56:56 +01:00
$title = settings_title();
$content = user_settings();
2013-10-13 00:52:44 +02:00
} elseif ($p == "login") {
2013-11-25 21:56:56 +01:00
$title = login_title();
$content = guest_login();
2013-10-13 00:52:44 +02:00
} elseif ($p == "register") {
2013-11-25 21:56:56 +01:00
$title = register_title();
$content = guest_register();
2013-10-13 00:52:44 +02:00
} elseif ($p == "logout") {
2013-11-25 21:56:56 +01:00
$title = logout_title();
$content = guest_logout();
2013-10-13 00:52:44 +02:00
} elseif ($p == "admin_questions") {
2013-11-25 21:04:58 +01:00
$title = admin_questions_title();
$content = admin_questions();
2013-10-13 00:52:44 +02:00
} elseif ($p == "admin_user") {
2013-11-25 21:04:58 +01:00
$title = admin_user_title();
$content = admin_user();
2013-10-13 00:52:44 +02:00
} elseif ($p == "admin_arrive") {
2013-11-25 21:04:58 +01:00
$title = admin_arrive_title();
$content = admin_arrive();
2013-10-13 00:52:44 +02:00
} elseif ($p == "admin_active") {
2013-11-25 21:04:58 +01:00
$title = admin_active_title();
$content = admin_active();
2013-10-13 00:52:44 +02:00
} elseif ($p == "admin_free") {
2013-11-25 21:04:58 +01:00
$title = admin_free_title();
$content = admin_free();
2013-10-13 00:52:44 +02:00
} elseif ($p == "admin_news") {
2014-09-08 08:38:08 +02:00
require_once realpath(__DIR__ . '/../includes/pages/admin_news.php');
$content = admin_news();
2013-10-13 00:52:44 +02:00
} elseif ($p == "admin_rooms") {
2013-11-25 21:04:58 +01:00
$title = admin_rooms_title();
$content = admin_rooms();
2013-10-13 00:52:44 +02:00
} elseif ($p == "admin_groups") {
2013-11-25 21:04:58 +01:00
$title = admin_groups_title();
$content = admin_groups();
2013-10-13 00:52:44 +02:00
} elseif ($p == "admin_language") {
2014-09-08 08:38:08 +02:00
require_once realpath(__DIR__ . '/../includes/pages/admin_language.php');
$content = admin_language();
2013-10-13 00:52:44 +02:00
} elseif ($p == "admin_import") {
2013-11-25 21:04:58 +01:00
$title = admin_import_title();
$content = admin_import();
2013-10-13 00:52:44 +02:00
} elseif ($p == "admin_shifts") {
2013-11-25 21:04:58 +01:00
$title = admin_shifts_title();
$content = admin_shifts();
2013-10-13 00:52:44 +02:00
} elseif ($p == "admin_log") {
2013-11-25 21:04:58 +01:00
$title = admin_log_title();
$content = admin_log();
2013-12-26 13:34:48 +01:00
} elseif ($p == "credits") {
2014-09-08 08:38:08 +02:00
require_once realpath(__DIR__ . '/../includes/pages/guest_credits.php');
2013-12-26 13:34:48 +01:00
$title = credits_title();
$content = guest_credits();
} else {
2014-09-08 08:38:08 +02:00
require_once realpath(__DIR__ . '/../includes/pages/guest_start.php');
$content = guest_start();
}
2011-06-02 00:48:29 +02:00
} else {
// Wenn schon eingeloggt, keine-Berechtigung-Seite anzeigen
2013-10-13 00:52:44 +02:00
if (isset($user)) {
2013-11-25 21:04:58 +01:00
$title = _("No Access");
$content = _("You don't have permission to view this page. You probably have to sign in or register in order to gain access!");
} else {
// Sonst zur Loginseite leiten
redirect(page_link_to("login"));
}
2011-06-02 00:48:29 +02:00
}
2013-11-25 19:12:19 +01:00
echo template_render('../templates/layout.html', array(
2013-10-13 00:52:44 +02:00
'theme' => isset($user) ? $user['color'] : $default_theme,
'title' => $title,
'atom_link' => ($p == 'news' || $p == 'user_meetings') ? '<link href="' . page_link_to('atom') . (($p == 'user_meetings') ? '&amp;meetings=1' : '') . '&amp;key=' . $user['api_key'] . '" type="application/atom+xml" rel="alternate" title="Atom Feed">' : '',
'menu' => make_menu(),
2014-12-06 21:40:16 +01:00
'content' => msg() . $content,
2013-12-03 16:28:37 +01:00
'header_toolbar' => header_toolbar(),
2014-08-23 15:59:18 +02:00
'faq_url' => $faq_url,
'contact_email' => $contact_email,
2015-07-12 13:45:47 +02:00
'locale' => locale()
2011-06-02 00:48:29 +02:00
));
2011-06-02 01:09:03 +02:00
?>