Method extensionVersionMatches() is now cached in
[mailer.git] / surfbar.php
index 4318b54590197f28601e3495f540b27c9057aa3c..69a3e241e76950f9cc0cd56dd3a9443ee3eee69a 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                                      *
@@ -17,7 +17,8 @@
  * 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                           *
+ * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -44,33 +45,58 @@ $GLOBALS['startTime'] = microtime(true);
 
 // Set module
 $GLOBALS['module'] = 'surfbar';
-$GLOBALS['refid']  = 0;
-$GLOBALS['output_mode'] = 0;
+$GLOBALS['output_mode'] = '0';
 $GLOBALS['header_sent'] = 3;
 
 // Load the required file(s)
 require('inc/config-global.php');
 
+// Set content type
+setContentType('text/html');
+
 // Is a frame active?
-if (REQUEST_ISSET_GET('frame')) {
+if (isGetRequestParameterSet('frame')) {
        // Then we need to set header_sent to 0
-       $GLOBALS['header_sent'] = 0;
-} // END - if
-
-// Is the script installed?
-if (!isInstalled()) {
-       // You have to install first!
-       redirectToUrl('install.php');
+       $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()) && (isPostRequestParameterSet('id')) && (isPostRequestParameterSet('password'))) {
+                       // Do the login procedure
+                       $URL = doUserLogin(postRequestParameter('id'), postRequestParameter('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 (isGetRequestParameterSet('code')) {
+                               // Then generate an error message
+                               loadTemplate('admin_settings_saved', false, getMessageFromErrorCode(getRequestParameter('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('modules.php?module=index');
+       }
 } // END - if
 
 // Initialize the surfbar
@@ -80,24 +106,24 @@ SURFBAR_INIT();
 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()) || ((isGetRequestParameterSet('frame')) && (in_array(getRequestParameter('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 (((isGetRequestParameterSet('frame')) && (getRequestParameter('frame') == 'stop2')) || (!isGetRequestParameterSet('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')) {
+               unsetGetRequestParameter('frame');
+       } elseif ((isGetRequestParameterSet('frame')) && (getRequestParameter('frame') == 'stats')) {
                // Get total points amount
-               $points = GET_TOTAL_DATA(getUserId(), 'user_points', 'points') - GET_TOTAL_DATA(getUserId(), 'user_data', 'used_points');
+               $points = countSumTotalData(getMemberId(), 'user_points', 'points') - countSumTotalData(getMemberId(), 'user_data', 'used_points');
 
                // Prepare content
                $content = array(
@@ -112,8 +138,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 ((isGetRequestParameterSet('frame')) && (getRequestParameter('frame') == 'textlinks')) {
                // Prepare content
                $content = array(
                        'online'   => SURFBAR_DETERMINE_TOTAL_ONLINE(),
@@ -121,26 +147,25 @@ 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(
-                       'restart'   => getConfig('surfbar_restart_time'),
                        'start'     => str_repeat('X', strlen(getConfig('surfbar_restart_time'))),
                        'autostart' => (getConfig('surfbar_autostart') == 'Y') ? 'true' : 'false'
                );
 
                // 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 ((isGetRequestParameterSet('check')) && (isGetRequestParameterSet('id')) && (isGetRequestParameterSet('salt'))) {
        // Dummy next id get
-       SURFBAR_DETERMINE_NEXT_ID(REQUEST_GET('id'));
+       SURFBAR_DETERMINE_NEXT_ID(getRequestParameter('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(getRequestParameter('id'))) && (SURFBAR_CHECK_VALIDATION_CODE(getRequestParameter('id'), getRequestParameter('check'), getRequestParameter('salt')))) {
                // Lock the URL (id) down
-               SURFBAR_LOCKDOWN_ID(REQUEST_GET('id'));
+               SURFBAR_LOCKDOWN_ID(getRequestParameter('id'));
 
                // Code is valid so pay points here
                SURFBAR_PAY_POINTS();
@@ -164,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 ((isGetRequestParameterSet('frame')) && (getRequestParameter('frame') == 'top')) {
                // Determine next id
                $nextId = SURFBAR_DETERMINE_NEXT_ID();
 
@@ -176,7 +204,7 @@ if ((SURFBAR_CHECK_RELOAD_FULL()) || ((REQUEST_ISSET_GET('frame')) && (in_array(
                                'id'          => $nextId,
                                'check'       => SURFBAR_GENERATE_VALIDATION_CODE($nextId),
                                'salt'        => SURFBAR_GET_SALT(),
-                               'points'      => translateComma(SURFBAR_GET_REWARD($nextId)),
+                               'reward'      => translateComma(SURFBAR_GET_REWARD($nextId)),
                                'url'         => SURFBAR_GET_URL($nextId),
                                'curr_reload' => SURFBAR_GET_USER_LOCKS(),
                                'max_urls'    => SURFBAR_GET_TOTAL_URLS(),
@@ -188,14 +216,11 @@ if ((SURFBAR_CHECK_RELOAD_FULL()) || ((REQUEST_ISSET_GET('frame')) && (in_array(
                        SURFBAR_UPDATE_SALT_STATS();
                } else {
                        // Load new URL
-                       SURFBAR_RELOAD_TO_STOP_PAGE('stop2');
+                       SURFBAR_RELOAD_TO_STOP_PAGE('stop');
                }
-       } elseif ((REQUEST_ISSET_GET('frame')) && (REQUEST_GET('frame') == 'start')) {
+       } elseif ((isGetRequestParameterSet('frame')) && (getRequestParameter('frame') == 'start')) {
                // Starter frame found so let the footer display
-               REQUEST_UNSET_GET('frame');
-       } else {
-               // Load header in frameset mode
-               $isFrameset = true;
+               unsetGetRequestParameter('frame');
        }
 
        // Load header
@@ -203,7 +228,7 @@ if ((SURFBAR_CHECK_RELOAD_FULL()) || ((REQUEST_ISSET_GET('frame')) && (in_array(
 
        // Load that template
        //* DEBUG: */ die("templateName={$templateName}<br />\n<strong>content</strong>=<pre>".print_r($content, true)."</pre>");
-       LOAD_TEMPLATE($templateName, false, $content);
+       loadTemplate($templateName, false, $content);
 }
 
 // Load footer