2005-09-10 19:25:43 +02:00
< ? php
2014-09-08 08:38:08 +02:00
require_once realpath ( __DIR__ . '/../includes/mysql_provider.php' );
require_once realpath ( __DIR__ . '/../includes/sys_auth.php' );
require_once realpath ( __DIR__ . '/../includes/sys_counter.php' );
require_once realpath ( __DIR__ . '/../includes/sys_log.php' );
require_once realpath ( __DIR__ . '/../includes/sys_menu.php' );
require_once realpath ( __DIR__ . '/../includes/sys_page.php' );
require_once realpath ( __DIR__ . '/../includes/sys_template.php' );
require_once realpath ( __DIR__ . '/../includes/model/AngelType_model.php' );
require_once realpath ( __DIR__ . '/../includes/model/LogEntries_model.php' );
require_once realpath ( __DIR__ . '/../includes/model/Message_model.php' );
require_once realpath ( __DIR__ . '/../includes/model/NeededAngelTypes_model.php' );
require_once realpath ( __DIR__ . '/../includes/model/Room_model.php' );
require_once realpath ( __DIR__ . '/../includes/model/ShiftEntry_model.php' );
require_once realpath ( __DIR__ . '/../includes/model/Shifts_model.php' );
require_once realpath ( __DIR__ . '/../includes/model/UserAngelTypes_model.php' );
require_once realpath ( __DIR__ . '/../includes/model/UserGroups_model.php' );
require_once realpath ( __DIR__ . '/../includes/model/User_model.php' );
require_once realpath ( __DIR__ . '/../includes/view/AngelTypes_view.php' );
require_once realpath ( __DIR__ . '/../includes/view/Questions_view.php' );
require_once realpath ( __DIR__ . '/../includes/view/Shifts_view.php' );
require_once realpath ( __DIR__ . '/../includes/view/ShiftEntry_view.php' );
require_once realpath ( __DIR__ . '/../includes/view/UserAngelTypes_view.php' );
require_once realpath ( __DIR__ . '/../includes/view/User_view.php' );
require_once realpath ( __DIR__ . '/../includes/controller/angeltypes_controller.php' );
require_once realpath ( __DIR__ . '/../includes/controller/users_controller.php' );
require_once realpath ( __DIR__ . '/../includes/controller/user_angeltypes_controller.php' );
require_once realpath ( __DIR__ . '/../includes/helper/internationalization_helper.php' );
require_once realpath ( __DIR__ . '/../includes/helper/message_helper.php' );
require_once realpath ( __DIR__ . '/../includes/helper/error_helper.php' );
require_once realpath ( __DIR__ . '/../includes/helper/email_helper.php' );
2014-09-20 18:31:59 +02:00
require_once realpath ( __DIR__ . '/../includes/helper/session_helper.php' );
2014-09-08 08:38:08 +02:00
require_once realpath ( __DIR__ . '/../config/config.default.php' );
2014-09-08 14:12:42 +02:00
if ( file_exists ( realpath ( __DIR__ . '/../config/config.php' )))
2014-09-08 08:38:08 +02:00
require_once realpath ( __DIR__ . '/../config/config.php' );
require_once realpath ( __DIR__ . '/../includes/pages/admin_active.php' );
require_once realpath ( __DIR__ . '/../includes/pages/admin_arrive.php' );
require_once realpath ( __DIR__ . '/../includes/pages/admin_free.php' );
require_once realpath ( __DIR__ . '/../includes/pages/admin_groups.php' );
require_once realpath ( __DIR__ . '/../includes/pages/admin_import.php' );
require_once realpath ( __DIR__ . '/../includes/pages/admin_log.php' );
require_once realpath ( __DIR__ . '/../includes/pages/admin_questions.php' );
require_once realpath ( __DIR__ . '/../includes/pages/admin_rooms.php' );
require_once realpath ( __DIR__ . '/../includes/pages/admin_shifts.php' );
require_once realpath ( __DIR__ . '/../includes/pages/admin_user.php' );
require_once realpath ( __DIR__ . '/../includes/pages/guest_login.php' );
require_once realpath ( __DIR__ . '/../includes/pages/user_messages.php' );
require_once realpath ( __DIR__ . '/../includes/pages/user_myshifts.php' );
require_once realpath ( __DIR__ . '/../includes/pages/user_news.php' );
require_once realpath ( __DIR__ . '/../includes/pages/user_questions.php' );
require_once realpath ( __DIR__ . '/../includes/pages/user_settings.php' );
require_once realpath ( __DIR__ . '/../includes/pages/user_shifts.php' );
2011-06-02 21:38:19 +02:00
2014-09-08 08:16:09 +02:00
require_once realpath ( __DIR__ . '/../vendor/parsedown/Parsedown.php' );
2014-03-09 13:12:46 +01:00
2014-09-20 18:35:36 +02:00
session_lifetime ( 24 * 60 , preg_replace ( " /[^a-z0-9-]/ " , '' , md5 ( __DIR__ )));
2011-06-02 00:48:29 +02:00
session_start ();
2005-09-10 19:25:43 +02:00
2013-11-25 19:12:19 +01:00
gettext_init ();
2011-06-02 00:48:29 +02:00
sql_connect ( $config [ 'host' ], $config [ 'user' ], $config [ 'pw' ], $config [ 'db' ]);
2005-09-10 19:25:43 +02:00
2011-06-02 00:48:29 +02:00
load_auth ();
2011-06-01 14:30:29 +02:00
2011-06-03 15:30:17 +02:00
// JSON Authorisierung gewünscht?
2013-10-13 00:52:44 +02:00
if ( isset ( $_REQUEST [ 'auth' ]))
2013-09-10 14:27:31 +02:00
json_auth_service ();
2013-12-09 17:10:07 +01: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' ,
2014-01-05 19:30:06 +01:00
'api' ,
2014-03-09 13:39:04 +01:00
'credits' ,
2014-08-22 22:34:13 +02:00
'angeltypes' ,
'users'
2013-12-09 17:10:07 +01:00
);
// Gewünschte Seite/Funktion
2014-08-23 01:55:18 +02:00
$p = " " ;
2013-12-26 17:31:05 +01:00
if ( ! isset ( $_REQUEST [ 'p' ]))
2013-12-26 17:29:29 +01:00
$_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 ))) {
2013-09-10 14:27:31 +02:00
$p = $_REQUEST [ 'p' ];
2013-12-26 13:34:48 +01:00
2014-08-23 01:55:18 +02:00
if ( isset ( $user )) {
$hints = " " ;
if ( User_is_freeloader ( $user ))
error ( sprintf ( _ ( " You freeloaded at least %s shifts. Shift signup is locked. Please go to heavens desk to be unlocked again. " ), $max_freeloadable_shifts ));
// Hinweis für Engel, die noch nicht angekommen sind
if ( $user [ 'Gekommen' ] == 0 )
error ( _ ( " You are not marked as arrived. Please go to heaven's desk, get your angel badge and/or tell them that you arrived already. " ));
if ( $enable_tshirt_size && $user [ 'Size' ] == " " )
error ( _ ( " You need to specify a tshirt size in your settings! " ));
if ( $user [ 'DECT' ] == " " )
error ( _ ( " You need to specify a DECT phone number in your settings! If you don't have a DECT phone, just enter \" - \" . " ));
// Erzengel Hinweis für unbeantwortete Fragen
if ( $p != " admin_questions " )
admin_new_questions ();
user_angeltypes_unconfirmed_hint ();
}
2013-12-26 13:34:48 +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 ();
2014-01-05 19:30:06 +01:00
} elseif ( $p == " angeltypes " ) {
list ( $title , $content ) = angeltypes_controller ();
2014-08-22 22:34:13 +02:00
} elseif ( $p == " users " ) {
list ( $title , $content ) = users_controller ();
2014-01-05 19:30:06 +01:00
} elseif ( $p == " user_angeltypes " ) {
list ( $title , $content ) = user_angeltypes_controller ();
2013-12-26 13:34:48 +01:00
} elseif ( $p == " news " ) {
2013-11-25 21:04:58 +01:00
$title = news_title ();
2013-09-10 14:27:31 +02:00
$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 ();
2013-09-10 14:27:31 +02:00
$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 ();
2013-09-10 14:27:31 +02:00
$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 ();
2013-09-10 14:27:31 +02:00
$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 ();
2013-09-10 14:27:31 +02:00
$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 ();
2013-09-10 14:27:31 +02:00
$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 ();
2013-09-10 14:27:31 +02:00
$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 ();
2013-09-10 14:27:31 +02:00
$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 ();
2013-09-10 14:27:31 +02:00
$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 ();
2013-09-10 14:27:31 +02:00
$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 ();
2013-09-10 14:27:31 +02:00
$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 ();
2013-09-10 14:27:31 +02:00
$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 ();
2013-09-10 14:27:31 +02:00
$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 ();
2013-09-10 14:27:31 +02:00
$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 ();
2013-09-10 14:27:31 +02:00
$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 ();
2013-09-10 14:27:31 +02:00
$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' );
2013-09-10 14:27:31 +02:00
$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 ();
2013-09-10 14:27:31 +02:00
$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 ();
2013-09-10 14:27:31 +02:00
$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' );
2013-09-10 14:27:31 +02:00
$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 ();
2013-09-10 14:27:31 +02:00
$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 ();
2013-09-10 14:27:31 +02:00
$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 ();
2013-09-10 14:27:31 +02:00
$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 ();
2013-09-10 14:27:31 +02:00
} else {
2014-09-08 08:38:08 +02:00
require_once realpath ( __DIR__ . '/../includes/pages/guest_start.php' );
2013-09-10 14:27:31 +02:00
$content = guest_start ();
}
2011-06-02 00:48:29 +02:00
} else {
2013-09-10 14:27:31 +02:00
// 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! " );
2013-09-10 14:27:31 +02:00
} 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' ) ? '&meetings=1' : '' ) . '&key=' . $user [ 'api_key' ] . '" type="application/atom+xml" rel="alternate" title="Atom Feed">' : '' ,
'menu' => make_menu (),
'content' => $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 ,
'locale' => $_SESSION [ 'locale' ]
2011-06-02 00:48:29 +02:00
));
2011-06-02 01:09:03 +02:00
counter ();
2014-09-08 08:38:08 +02:00
2005-09-10 19:25:43 +02:00
?>