X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=surfbar.php;h=e0163e4ea5c1478d3c4a69d0025f8fe2c729c90f;hp=d119e1bd83ba59198cb06078d7fddaec8ff2a9fe;hb=950e91ffc2d515dae357d4044294abe301c09b41;hpb=0fd6858b423d41e7eee9ffa3d5138d318e08cc1c diff --git a/surfbar.php b/surfbar.php index d119e1bd83..e0163e4ea5 100644 --- a/surfbar.php +++ b/surfbar.php @@ -17,7 +17,7 @@ * Needs to be in all Files and every File needs "svn propset * * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * - * Copyright (c) 2003 - 2008 by Roland Haeder * + * Copyright (c) 2003 - 2009 by Roland Haeder * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -39,59 +39,90 @@ // Load security stuff here require('inc/libs/security_functions.php'); -// Init "action" and "what" -$GLOBALS['cache_array']['surfbar'] = array(); +// Init start time $GLOBALS['startTime'] = microtime(true); -$GLOBALS['what'] = ''; -$GLOBALS['action'] = ''; // Set module $GLOBALS['module'] = 'surfbar'; -$GLOBALS['refid'] = 0; $GLOBALS['output_mode'] = 0; -$msg = null; +$GLOBALS['header_sent'] = 3; // Load the required file(s) require('inc/config-global.php'); -// Is the script installed? -if (!isInstalled()) { - // You have to install first! - redirectToUrl('install.php'); +// Set content type +setContentType('text/html'); + +// Is a frame active? +if (isGetRequestElementSet('frame')) { + // Then we need to set header_sent to 0 + $GLOBALS['header_sent'] = 0; } // END - if // Only logged in users may use this surfbar! redirectOnUninstalledExtension('surfbar'); // No member? -if (!IS_MEMBER()) { - // Redirect - // @TODO Display quick login form here or redirect as configured - redirectToUrl('modules.php?module=index'); +if (!isMember()) { + // Should we display login window or redirect to main page? + if ((getConfig('surfbar_guest_login_form') == 'Y') && (isExtensionActive('user'))) { + // Is the form sent? + if ((isFormSent()) && (isPostRequestElementSet('id')) && (isPostRequestElementSet('password'))) { + // Do the login procedure + $URL = doUserLogin(postRequestElement('id'), postRequestElement('password'), basename(__FILE__), basename(__FILE__) . '?code='); + + // And redirect to the URL + redirectToUrl($URL); + } else { + // Load header + loadIncludeOnce('inc/header.php'); + + // Is there a 'code' provided? + if (isGetRequestElementSet('code')) { + // Then generate an error message + loadTemplate('admin_settings_saved', false, getMessageFromErrorCode(getRequestElement('code'))); + } // END - if + + // Display login form + loadTemplate('surfbar_login_form'); + + // Allow footer here + $GLOBALS['header_sent'] = 2; + + // Load footer + loadIncludeOnce('inc/footer.php'); + } + } else { + // Redirect + redirectToUrl('index.php'); + } } // END - if +// Initialize the surfbar +SURFBAR_INIT(); + // Handle tasks on self-maintenance SURFBAR_HANDLE_SELF_MAINTENANCE(); // Is there a check value? -if ((SURFBAR_CHECK_RELOAD_FULL()) || ((REQUEST_ISSET_GET('frame')) && (in_array(REQUEST_GET('frame'), array('stop', 'stop2', 'stats', 'textlinks'))))) { +if ((SURFBAR_CHECK_RELOAD_FULL()) || ((isGetRequestElementSet('frame')) && (in_array(getRequestElement('frame'), array('stop', 'stop2', 'stats', 'textlinks'))))) { // Reload-lock is full, surfbar stopped so... // Load header loadIncludeOnce('inc/header.php'); // Load template - if (((REQUEST_ISSET_GET('frame')) && (REQUEST_GET('frame') == 'stop')) || (!REQUEST_ISSET_GET('frame'))) { + if (((isGetRequestElementSet('frame')) && (getRequestElement('frame') == 'stop')) || (!isGetRequestElementSet('frame'))) { // Load template for "start" page - LOAD_TEMPLATE('surfbar_frame_start'); + loadTemplate('surfbar_frame_start'); // Load banner - LOAD_TEMPLATE('surfbar_start_banner'); + loadTemplate('surfbar_start_banner'); // This makes the footer appear again - REQUEST_UNSET_GET('frame'); - } elseif ((REQUEST_ISSET_GET('frame')) && (REQUEST_GET('frame') == 'stats')) { + unsetGetRequestElement('frame'); + } elseif ((isGetRequestElementSet('frame')) && (getRequestElement('frame') == 'stats')) { // Get total points amount - $points = GET_TOTAL_DATA(getUserId(), 'user_points', 'points') - GET_TOTAL_DATA(getUserId(), 'user_data', 'used_points'); + $points = countSumTotalData(getUserId(), 'user_points', 'points') - countSumTotalData(getUserId(), 'user_data', 'used_points'); // Prepare content $content = array( @@ -106,8 +137,8 @@ if ((SURFBAR_CHECK_RELOAD_FULL()) || ((REQUEST_ISSET_GET('frame')) && (in_array( ); // Load template for "stats" page - LOAD_TEMPLATE('surfbar_frame_stats', false, $content); - } elseif ((REQUEST_ISSET_GET('frame')) && (REQUEST_GET('frame') == 'textlinks')) { + loadTemplate('surfbar_frame_stats', false, $content); + } elseif ((isGetRequestElementSet('frame')) && (getRequestElement('frame') == 'textlinks')) { // Prepare content $content = array( 'online' => SURFBAR_DETERMINE_TOTAL_ONLINE(), @@ -115,7 +146,7 @@ if ((SURFBAR_CHECK_RELOAD_FULL()) || ((REQUEST_ISSET_GET('frame')) && (in_array( ); // Load template for "stats" page - LOAD_TEMPLATE('surfbar_frame_textlinks', false, $content); + loadTemplate('surfbar_frame_textlinks', false, $content); } else { // Prepare content $content = array( @@ -125,16 +156,16 @@ if ((SURFBAR_CHECK_RELOAD_FULL()) || ((REQUEST_ISSET_GET('frame')) && (in_array( ); // Load template for stopped surfbar - LOAD_TEMPLATE('surfbar_stopped', false, $content); + loadTemplate('surfbar_stopped', false, $content); } -} elseif ((REQUEST_ISSET_GET(('check'))) && (REQUEST_ISSET_GET('id')) && (REQUEST_ISSET_GET(('salt')))) { +} elseif ((isGetRequestElementSet('check')) && (isGetRequestElementSet('id')) && (isGetRequestElementSet('salt'))) { // Dummy next id get - SURFBAR_DETERMINE_NEXT_ID(REQUEST_GET('id')); + SURFBAR_DETERMINE_NEXT_ID(getRequestElement('id')); // Check reload lock and validation code - if ((!SURFBAR_CHECK_RELOAD_LOCK(REQUEST_GET('id'))) && (SURFBAR_CHECK_VALIDATION_CODE(REQUEST_GET('id'), REQUEST_GET('check'), REQUEST_GET('salt')))) { + if ((!SURFBAR_CHECK_RELOAD_LOCK(getRequestElement('id'))) && (SURFBAR_CHECK_VALIDATION_CODE(getRequestElement('id'), getRequestElement('check'), getRequestElement('salt')))) { // Lock the URL (id) down - SURFBAR_LOCKDOWN_ID(REQUEST_GET('id')); + SURFBAR_LOCKDOWN_ID(getRequestElement('id')); // Code is valid so pay points here SURFBAR_PAY_POINTS(); @@ -158,8 +189,11 @@ if ((SURFBAR_CHECK_RELOAD_FULL()) || ((REQUEST_ISSET_GET('frame')) && (in_array( // Determine template name $templateName = SURFBAR_DETERMINE_TEMPLATE_NAME(); + // Load header in frameset mode is the default + $isFrameset = true; + // Frame "top" set? - if ((REQUEST_ISSET_GET('frame')) && (REQUEST_GET('frame') == 'top')) { + if ((isGetRequestElementSet('frame')) && (getRequestElement('frame') == 'top')) { // Determine next id $nextId = SURFBAR_DETERMINE_NEXT_ID(); @@ -184,12 +218,9 @@ if ((SURFBAR_CHECK_RELOAD_FULL()) || ((REQUEST_ISSET_GET('frame')) && (in_array( // Load new URL SURFBAR_RELOAD_TO_STOP_PAGE('stop2'); } - } elseif ((REQUEST_ISSET_GET('frame')) && (REQUEST_GET('frame') == 'start')) { + } elseif ((isGetRequestElementSet('frame')) && (getRequestElement('frame') == 'start')) { // Starter frame found so let the footer display - REQUEST_UNSET_GET('frame'); - } else { - // Load header in frameset mode - $isFrameset = true; + unsetGetRequestElement('frame'); } // Load header @@ -197,10 +228,11 @@ if ((SURFBAR_CHECK_RELOAD_FULL()) || ((REQUEST_ISSET_GET('frame')) && (in_array( // Load that template //* DEBUG: */ die("templateName={$templateName}
\ncontent=
".print_r($content, true)."
"); - LOAD_TEMPLATE($templateName, false, $content); + loadTemplate($templateName, false, $content); } // Load footer +$GLOBALS['footer_sent'] = 3; loadIncludeOnce('inc/footer.php'); // [EOF]