Added more wrapper, commented out another noisy debug line
[mailer.git] / surfbar.php
index 8760cb332c89782a603ed99265ca87d2c5e5a712..9fce26b80c2c3247ac7ddd3d13625f3f195cae91 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 09/05/2008 *
- * ===============                              Last change: 09/05/2008 *
+ * Mailer v0.2.1-FINAL                                Start: 09/05/2008 *
+ * ===================                          Last change: 09/05/2008 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : surfbar.php                                      *
  * $Date::                                                            $ *
  * $Tag:: 0.2.1-FINAL                                                 $ *
  * $Author::                                                          $ *
- * Needs to be in all Files and every File needs "svn propset           *
- * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
 require('inc/libs/security_functions.php');
 
 // Init start time
-$GLOBALS['startTime'] = microtime(true);
+$GLOBALS['__start_time'] = microtime(true);
 
-// Set module
-$GLOBALS['module'] = 'surfbar';
-$GLOBALS['output_mode'] = 0;
-$GLOBALS['header_sent'] = 3;
+// Set module output mode
+$GLOBALS['__module']      = 'surfbar';
+$GLOBALS['__output_mode'] = '0';
+$GLOBALS['__header_sent'] = 3;
 
 // Load the required file(s)
 require('inc/config-global.php');
@@ -54,9 +53,9 @@ require('inc/config-global.php');
 setContentType('text/html');
 
 // Is a frame active?
-if (isGetRequestElementSet('frame')) {
+if (!isFullPage()) {
        // Then we need to set header_sent to 0
-       $GLOBALS['header_sent'] = 0;
+       $GLOBALS['__header_sent'] = '0';
 } // END - if
 
 // Only logged in users may use this surfbar!
@@ -65,14 +64,14 @@ redirectOnUninstalledExtension('surfbar');
 // No member?
 if (!isMember()) {
        // Should we display login window or redirect to main page?
-       if ((getConfig('surfbar_guest_login_form') == 'Y') && (isExtensionActive('user'))) {
+       if ((isSurfbarGuestLoginFormEnabled()) && (isExtensionActive('user'))) {
                // Is the form sent?
-               if ((isFormSent()) && (isPostRequestElementSet('id')) && (isPostRequestElementSet('password'))) {
+               if ((isFormSent('login')) && (isPostRequestElementSet('id')) && (isPostRequestElementSet('password'))) {
                        // Do the login procedure
-                       $URL = doUserLogin(postRequestElement('id'), postRequestElement('password'), basename(__FILE__), basename(__FILE__) . '?code=');
+                       $url = doUserLogin(postRequestElement('id'), postRequestElement('password'), basename(__FILE__), basename(__FILE__) . '?code=');
 
                        // And redirect to the URL
-                       redirectToUrl($URL);
+                       redirectToUrl($url);
                } else {
                        // Load header
                        loadIncludeOnce('inc/header.php');
@@ -80,38 +79,38 @@ if (!isMember()) {
                        // Is there a 'code' provided?
                        if (isGetRequestElementSet('code')) {
                                // Then generate an error message
-                               loadTemplate('admin_settings_saved', false, getMessageFromErrorCode(getRequestElement('code')));
+                               displayMessage(getMessageFromErrorCode(getRequestElement('code')));
                        } // END - if
 
                        // Display login form
                        loadTemplate('surfbar_login_form');
 
                        // Allow footer here
-                       $GLOBALS['header_sent'] = 2;
+                       $GLOBALS['__header_sent'] = 2;
 
                        // Load footer
                        loadIncludeOnce('inc/footer.php');
                }
        } else {
                // Redirect
-               redirectToUrl('index.php');
+               redirectToUrl('modules.php?module=index');
        }
 } // END - if
 
 // Initialize the surfbar
-SURFBAR_INIT();
+initSurfbar();
 
 // Handle tasks on self-maintenance
-SURFBAR_HANDLE_SELF_MAINTENANCE();
+doSurfbarSelfMaintenance();
 
 // Is there a check value?
-if ((SURFBAR_CHECK_RELOAD_FULL()) || ((isGetRequestElementSet('frame')) && (in_array(getRequestElement('frame'), array('stop', 'stop2', 'stats', 'textlinks'))))) {
+if ((isSurfbarReloadFull()) || ((!isFullPage()) && (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 (((isGetRequestElementSet('frame')) && (getRequestElement('frame') == 'stop')) || (!isGetRequestElementSet('frame'))) {
+       if (((!isFullPage()) && (getRequestElement('frame') == 'stop2')) || (isFullPage())) {
                // Load template for "start" page
                loadTemplate('surfbar_frame_start');
 
@@ -120,29 +119,19 @@ if ((SURFBAR_CHECK_RELOAD_FULL()) || ((isGetRequestElementSet('frame')) && (in_a
 
                // This makes the footer appear again
                unsetGetRequestElement('frame');
-       } elseif ((isGetRequestElementSet('frame')) && (getRequestElement('frame') == 'stats')) {
-               // Get total points amount
-               $points = countSumTotalData(getUserId(), 'user_points', 'points') - countSumTotalData(getUserId(), 'user_data', 'used_points');
-
+       } elseif ((!isFullPage()) && (getRequestElement('frame') == 'stats')) {
                // Prepare content
                $content = array(
-                       'points'   => translateComma($points),
-                       'online'   => SURFBAR_DETERMINE_TOTAL_ONLINE(),
-                       'reload'   => (getConfig('surfbar_stats_reload') * 1000),
-                       'c_total'  => translateComma(getConfig('surfbar_total_counter')),
-                       'c_today'  => translateComma(getConfig('surfbar_daily_counter')),
-                       'c_yester' => translateComma(getConfig('surfbar_yester_counter')),
-                       'c_week'   => translateComma(getConfig('surfbar_weekly_counter')),
-                       'c_month'  => translateComma(getConfig('surfbar_monthly_counter')),
+                       'points' => getTotalPoints(getMemberId()),
+                       'reload' => (getSurfbarStatsReload() * 1000)
                );
 
                // Load template for "stats" page
                loadTemplate('surfbar_frame_stats', false, $content);
-       } elseif ((isGetRequestElementSet('frame')) && (getRequestElement('frame') == 'textlinks')) {
+       } elseif ((!isFullPage()) && (getRequestElement('frame') == 'textlinks')) {
                // Prepare content
                $content = array(
-                       'online'   => SURFBAR_DETERMINE_TOTAL_ONLINE(),
-                       'reload'   => (getConfig('surfbar_stats_reload') * 1000)
+                       'reload' => (getSurfbarStatsReload() * 1000)
                );
 
                // Load template for "stats" page
@@ -150,9 +139,8 @@ if ((SURFBAR_CHECK_RELOAD_FULL()) || ((isGetRequestElementSet('frame')) && (in_a
        } else {
                // Prepare content
                $content = array(
-                       'restart'   => getConfig('surfbar_restart_time'),
-                       'start'     => str_repeat('X', strlen(getConfig('surfbar_restart_time'))),
-                       'autostart' => (getConfig('surfbar_autostart') == 'Y') ? 'true' : 'false'
+                       'start'     => str_repeat('X', strlen(getSurfbarRestartTime())),
+                       'autostart' => (isSurfbarAutoStartEnbaled()) ? 'true' : 'false'
                );
 
                // Load template for stopped surfbar
@@ -160,65 +148,56 @@ if ((SURFBAR_CHECK_RELOAD_FULL()) || ((isGetRequestElementSet('frame')) && (in_a
        }
 } elseif ((isGetRequestElementSet('check')) && (isGetRequestElementSet('id')) && (isGetRequestElementSet('salt'))) {
        // Dummy next id get
-       SURFBAR_DETERMINE_NEXT_ID(getRequestElement('id'));
+       determineSurfbarNextId(getRequestElement('id'));
 
        // Check reload lock and validation code
-       if ((!SURFBAR_CHECK_RELOAD_LOCK(getRequestElement('id'))) && (SURFBAR_CHECK_VALIDATION_CODE(getRequestElement('id'), getRequestElement('check'), getRequestElement('salt')))) {
+       if ((!ifSurfbarReloadLock(getRequestElement('id'))) && (isSurfbarValidationCodeValid(getRequestElement('id'), getRequestElement('check'), getRequestElement('salt')))) {
                // Lock the URL (id) down
-               SURFBAR_LOCKDOWN_ID(getRequestElement('id'));
+               addSurfbarReloadLockById(getRequestElement('id'));
 
                // Code is valid so pay points here
-               SURFBAR_PAY_POINTS();
+               doSurfbarPayPoints();
 
                // Check if reload is full
-               if (SURFBAR_CHECK_RELOAD_FULL()) {
+               if (isSurfbarReloadFull()) {
                        // Then load waiting page
-                       SURFBAR_RELOAD_TO_STOP_PAGE();
+                       redirectToSurfbarStopPage();
                } // END - if
+
+               // Load header to avoid a bug
+               loadIncludeOnce('inc/header.php');
        } else {
                // Reload to stop frame!
-               SURFBAR_RELOAD_TO_STOP_PAGE();
+               redirectToSurfbarStopPage();
        }
 
        // All done, so fix notice for footer.php
-       $GLOBALS['footer_sent'] = 1;
+       $GLOBALS['__footer_sent'] = 1;
 } else {
        // Prepare content
        $content = '';
 
-       // Determine template name
-       $templateName = SURFBAR_DETERMINE_TEMPLATE_NAME();
-
-       // Load header in frameset mode is the default
-       $isFrameset = true;
-
        // Frame "top" set?
-       if ((isGetRequestElementSet('frame')) && (getRequestElement('frame') == 'top')) {
+       if ((!isFullPage()) && (getRequestElement('frame') == 'top')) {
                // Determine next id
-               $nextId = SURFBAR_DETERMINE_NEXT_ID();
+               $nextId = determineSurfbarNextId();
+               //* DEBUG: */ exit('nextId='.$nextId);
 
                // Is there a valid id?
                if ($nextId > 0) {
                        // Then prepare other content
                        $content = array(
-                               'id'          => $nextId,
-                               'check'       => SURFBAR_GENERATE_VALIDATION_CODE($nextId),
-                               'salt'        => SURFBAR_GET_SALT(),
-                               'points'      => translateComma(SURFBAR_GET_REWARD($nextId)),
-                               'url'         => SURFBAR_GET_URL($nextId),
-                               'curr_reload' => SURFBAR_GET_USER_LOCKS(),
-                               'max_urls'    => SURFBAR_GET_TOTAL_URLS(),
-                               'reload'      => SURFBAR_GET_RELOAD_TIME($nextId),
-                               'xxx'         => str_repeat('X', strlen(SURFBAR_GET_RELOAD_TIME($nextId)))
+                               'url_id' => $nextId,
+                               'xxx'    => str_repeat('X', strlen(gerSurfbarReloadTime($nextId))),
                        );
 
                        // Update salt (double-call lock!) and statistics
-                       SURFBAR_UPDATE_SALT_STATS();
+                       updateSurfbarSaltStatistics();
                } else {
                        // Load new URL
-                       SURFBAR_RELOAD_TO_STOP_PAGE('stop2');
+                       redirectToSurfbarStopPage('stop');
                }
-       } elseif ((isGetRequestElementSet('frame')) && (getRequestElement('frame') == 'start')) {
+       } elseif ((!isFullPage()) && (getRequestElement('frame') == 'start')) {
                // Starter frame found so let the footer display
                unsetGetRequestElement('frame');
        }
@@ -226,13 +205,16 @@ if ((SURFBAR_CHECK_RELOAD_FULL()) || ((isGetRequestElementSet('frame')) && (in_a
        // Load header
        loadIncludeOnce('inc/header.php');
 
+       // Determine template name
+       $templateName = determineSurfbarTemplateName();
+
        // Load that template
-       //* DEBUG: */ die("templateName={$templateName}<br />\n<strong>content</strong>=<pre>".print_r($content, true)."</pre>");
+       //* DEBUG: */ exit('templateName=' . $templateName . '<br /><strong>content</strong>=<pre>' . print_r($content, true) . '</pre>');
        loadTemplate($templateName, false, $content);
 }
 
 // Load footer
-$GLOBALS['footer_sent'] = 3;
+$GLOBALS['__footer_sent'] = 3;
 loadIncludeOnce('inc/footer.php');
 
 // [EOF]