2 /************************************************************************
3 * MXChange v0.2.1 Start: 09/05/2008 *
4 * =============== Last change: 09/05/2008 *
6 * -------------------------------------------------------------------- *
8 * -------------------------------------------------------------------- *
9 * Short description : The surfbar itself *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Die Surfbar selbst *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
17 * Needs to be in all Files and every File needs "svn propset *
18 * svn:keywords Date Revision" (autoprobset!) at least!!!!!! *
19 * -------------------------------------------------------------------- *
20 * Copyright (c) 2003 - 2009 by Roland Haeder *
21 * For more information visit: http://www.mxchange.org *
23 * This program is free software; you can redistribute it and/or modify *
24 * it under the terms of the GNU General Public License as published by *
25 * the Free Software Foundation; either version 2 of the License, or *
26 * (at your option) any later version. *
28 * This program is distributed in the hope that it will be useful, *
29 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
30 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
31 * GNU General Public License for more details. *
33 * You should have received a copy of the GNU General Public License *
34 * along with this program; if not, write to the Free Software *
35 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
37 ************************************************************************/
39 // Load security stuff here
40 require('inc/libs/security_functions.php');
43 $GLOBALS['startTime'] = microtime(true);
46 $GLOBALS['module'] = 'surfbar';
47 $GLOBALS['output_mode'] = 0;
48 $GLOBALS['header_sent'] = 3;
50 // Load the required file(s)
51 require('inc/config-global.php');
54 setContentType('text/html');
57 if (isGetRequestElementSet('frame')) {
58 // Then we need to set header_sent to 0
59 $GLOBALS['header_sent'] = 0;
62 // Only logged in users may use this surfbar!
63 redirectOnUninstalledExtension('surfbar');
67 // Should we display login window or redirect to main page?
68 if ((getConfig('surfbar_guest_login_form') == 'Y') && (isExtensionActive('user'))) {
70 if ((isFormSent()) && (isPostRequestElementSet('id')) && (isPostRequestElementSet('password'))) {
71 // Do the login procedure
72 $URL = doUserLogin(postRequestElement('id'), postRequestElement('password'), basename(__FILE__), basename(__FILE__) . '?code=');
74 // And redirect to the URL
78 loadIncludeOnce('inc/header.php');
80 // Is there a 'code' provided?
81 if (isGetRequestElementSet('code')) {
82 // Then generate an error message
83 loadTemplate('admin_settings_saved', false, getMessageFromErrorCode(getRequestElement('code')));
87 loadTemplate('surfbar_login_form');
90 $GLOBALS['header_sent'] = 2;
93 loadIncludeOnce('inc/footer.php');
97 redirectToUrl('index.php');
101 // Initialize the surfbar
104 // Handle tasks on self-maintenance
105 SURFBAR_HANDLE_SELF_MAINTENANCE();
107 // Is there a check value?
108 if ((SURFBAR_CHECK_RELOAD_FULL()) || ((isGetRequestElementSet('frame')) && (in_array(getRequestElement('frame'), array('stop', 'stop2', 'stats', 'textlinks'))))) {
109 // Reload-lock is full, surfbar stopped so...
111 loadIncludeOnce('inc/header.php');
114 if (((isGetRequestElementSet('frame')) && (getRequestElement('frame') == 'stop')) || (!isGetRequestElementSet('frame'))) {
115 // Load template for "start" page
116 loadTemplate('surfbar_frame_start');
119 loadTemplate('surfbar_start_banner');
121 // This makes the footer appear again
122 unsetGetRequestElement('frame');
123 } elseif ((isGetRequestElementSet('frame')) && (getRequestElement('frame') == 'stats')) {
124 // Get total points amount
125 $points = countSumTotalData(getUserId(), 'user_points', 'points') - countSumTotalData(getUserId(), 'user_data', 'used_points');
129 'points' => translateComma($points),
130 'online' => SURFBAR_DETERMINE_TOTAL_ONLINE(),
131 'reload' => (getConfig('surfbar_stats_reload') * 1000),
132 'c_total' => translateComma(getConfig('surfbar_total_counter')),
133 'c_today' => translateComma(getConfig('surfbar_daily_counter')),
134 'c_yester' => translateComma(getConfig('surfbar_yester_counter')),
135 'c_week' => translateComma(getConfig('surfbar_weekly_counter')),
136 'c_month' => translateComma(getConfig('surfbar_monthly_counter')),
139 // Load template for "stats" page
140 loadTemplate('surfbar_frame_stats', false, $content);
141 } elseif ((isGetRequestElementSet('frame')) && (getRequestElement('frame') == 'textlinks')) {
144 'online' => SURFBAR_DETERMINE_TOTAL_ONLINE(),
145 'reload' => (getConfig('surfbar_stats_reload') * 1000)
148 // Load template for "stats" page
149 loadTemplate('surfbar_frame_textlinks', false, $content);
153 'restart' => getConfig('surfbar_restart_time'),
154 'start' => str_repeat('X', strlen(getConfig('surfbar_restart_time'))),
155 'autostart' => (getConfig('surfbar_autostart') == 'Y') ? 'true' : 'false'
158 // Load template for stopped surfbar
159 loadTemplate('surfbar_stopped', false, $content);
161 } elseif ((isGetRequestElementSet('check')) && (isGetRequestElementSet('id')) && (isGetRequestElementSet('salt'))) {
163 SURFBAR_DETERMINE_NEXT_ID(getRequestElement('id'));
165 // Check reload lock and validation code
166 if ((!SURFBAR_CHECK_RELOAD_LOCK(getRequestElement('id'))) && (SURFBAR_CHECK_VALIDATION_CODE(getRequestElement('id'), getRequestElement('check'), getRequestElement('salt')))) {
167 // Lock the URL (id) down
168 SURFBAR_LOCKDOWN_ID(getRequestElement('id'));
170 // Code is valid so pay points here
171 SURFBAR_PAY_POINTS();
173 // Check if reload is full
174 if (SURFBAR_CHECK_RELOAD_FULL()) {
175 // Then load waiting page
176 SURFBAR_RELOAD_TO_STOP_PAGE();
179 // Reload to stop frame!
180 SURFBAR_RELOAD_TO_STOP_PAGE();
183 // All done, so fix notice for footer.php
184 $GLOBALS['footer_sent'] = 1;
189 // Determine template name
190 $templateName = SURFBAR_DETERMINE_TEMPLATE_NAME();
192 // Load header in frameset mode is the default
196 if ((isGetRequestElementSet('frame')) && (getRequestElement('frame') == 'top')) {
198 $nextId = SURFBAR_DETERMINE_NEXT_ID();
200 // Is there a valid id?
202 // Then prepare other content
205 'check' => SURFBAR_GENERATE_VALIDATION_CODE($nextId),
206 'salt' => SURFBAR_GET_SALT(),
207 'reward' => translateComma(SURFBAR_GET_REWARD($nextId)),
208 'url' => SURFBAR_GET_URL($nextId),
209 'curr_reload' => SURFBAR_GET_USER_LOCKS(),
210 'max_urls' => SURFBAR_GET_TOTAL_URLS(),
211 'reload' => SURFBAR_GET_RELOAD_TIME($nextId),
212 'xxx' => str_repeat('X', strlen(SURFBAR_GET_RELOAD_TIME($nextId)))
215 // Update salt (double-call lock!) and statistics
216 SURFBAR_UPDATE_SALT_STATS();
219 SURFBAR_RELOAD_TO_STOP_PAGE('stop2');
221 } elseif ((isGetRequestElementSet('frame')) && (getRequestElement('frame') == 'start')) {
222 // Starter frame found so let the footer display
223 unsetGetRequestElement('frame');
227 loadIncludeOnce('inc/header.php');
229 // Load that template
230 //* DEBUG: */ die("templateName={$templateName}<br />\n<strong>content</strong>=<pre>".print_r($content, true)."</pre>");
231 loadTemplate($templateName, false, $content);
235 $GLOBALS['footer_sent'] = 3;
236 loadIncludeOnce('inc/footer.php');