Fixed 'last' array, TODOs.txt updated
[mailer.git] / surfbar.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 09/05/2008 *
4  * ===============                              Last change: 09/05/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : surfbar.php                                      *
8  * -------------------------------------------------------------------- *
9  * Short description : The surfbar itself                               *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Die Surfbar selbst                               *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
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 - 2008 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
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.                                  *
27  *                                                                      *
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.                         *
32  *                                                                      *
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,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Load security stuff here
40 require('inc/libs/security_functions.php');
41
42 // Init surfbar cache and start time
43 $GLOBALS['cache_array']['surfbar'] = array();
44 $GLOBALS['startTime'] = microtime(true);
45
46 // Set module
47 $GLOBALS['module'] = 'surfbar';
48 $GLOBALS['refid']  = 0;
49 $GLOBALS['output_mode'] = 0;
50 $msg = null;
51
52 // Load the required file(s)
53 require('inc/config-global.php');
54
55 // Is the script installed?
56 if (!isInstalled()) {
57         // You have to install first!
58         redirectToUrl('install.php');
59 } // END - if
60
61 // Only logged in users may use this surfbar!
62 redirectOnUninstalledExtension('surfbar');
63
64 // No member?
65 if (!IS_MEMBER()) {
66         // Redirect
67         // @TODO Display quick login form here or redirect as configured
68         redirectToUrl('modules.php?module=index');
69 } // END - if
70
71 // Handle tasks on self-maintenance
72 SURFBAR_HANDLE_SELF_MAINTENANCE();
73
74 // Is there a check value?
75 if ((SURFBAR_CHECK_RELOAD_FULL()) || ((REQUEST_ISSET_GET('frame')) && (in_array(REQUEST_GET('frame'), array('stop', 'stop2', 'stats', 'textlinks'))))) {
76         // Reload-lock is full, surfbar stopped so...
77         // Load header
78         loadIncludeOnce('inc/header.php');
79
80         // Load template
81         if (((REQUEST_ISSET_GET('frame')) && (REQUEST_GET('frame') == 'stop')) || (!REQUEST_ISSET_GET('frame'))) {
82                 // Load template for "start" page
83                 LOAD_TEMPLATE('surfbar_frame_start');
84
85                 // Load banner
86                 LOAD_TEMPLATE('surfbar_start_banner');
87
88                 // This makes the footer appear again
89                 REQUEST_UNSET_GET('frame');
90         } elseif ((REQUEST_ISSET_GET('frame')) && (REQUEST_GET('frame') == 'stats')) {
91                 // Get total points amount
92                 $points = GET_TOTAL_DATA(getUserId(), 'user_points', 'points') - GET_TOTAL_DATA(getUserId(), 'user_data', 'used_points');
93
94                 // Prepare content
95                 $content = array(
96                         'points'   => translateComma($points),
97                         'online'   => SURFBAR_DETERMINE_TOTAL_ONLINE(),
98                         'reload'   => (getConfig('surfbar_stats_reload') * 1000),
99                         'c_total'  => translateComma(getConfig('surfbar_total_counter')),
100                         'c_today'  => translateComma(getConfig('surfbar_daily_counter')),
101                         'c_yester' => translateComma(getConfig('surfbar_yester_counter')),
102                         'c_week'   => translateComma(getConfig('surfbar_weekly_counter')),
103                         'c_month'  => translateComma(getConfig('surfbar_monthly_counter')),
104                 );
105
106                 // Load template for "stats" page
107                 LOAD_TEMPLATE('surfbar_frame_stats', false, $content);
108         } elseif ((REQUEST_ISSET_GET('frame')) && (REQUEST_GET('frame') == 'textlinks')) {
109                 // Prepare content
110                 $content = array(
111                         'online'   => SURFBAR_DETERMINE_TOTAL_ONLINE(),
112                         'reload'   => (getConfig('surfbar_stats_reload') * 1000)
113                 );
114
115                 // Load template for "stats" page
116                 LOAD_TEMPLATE('surfbar_frame_textlinks', false, $content);
117         } else {
118                 // Prepare content
119                 $content = array(
120                         'restart'   => getConfig('surfbar_restart_time'),
121                         'start'     => str_repeat('X', strlen(getConfig('surfbar_restart_time'))),
122                         'autostart' => (getConfig('surfbar_autostart') == 'Y') ? 'true' : 'false'
123                 );
124
125                 // Load template for stopped surfbar
126                 LOAD_TEMPLATE('surfbar_stopped', false, $content);
127         }
128 } elseif ((REQUEST_ISSET_GET(('check'))) && (REQUEST_ISSET_GET('id')) && (REQUEST_ISSET_GET(('salt')))) {
129         // Dummy next id get
130         SURFBAR_DETERMINE_NEXT_ID(REQUEST_GET('id'));
131
132         // Check reload lock and validation code
133         if ((!SURFBAR_CHECK_RELOAD_LOCK(REQUEST_GET('id'))) && (SURFBAR_CHECK_VALIDATION_CODE(REQUEST_GET('id'), REQUEST_GET('check'), REQUEST_GET('salt')))) {
134                 // Lock the URL (id) down
135                 SURFBAR_LOCKDOWN_ID(REQUEST_GET('id'));
136
137                 // Code is valid so pay points here
138                 SURFBAR_PAY_POINTS();
139
140                 // Check if reload is full
141                 if (SURFBAR_CHECK_RELOAD_FULL()) {
142                         // Then load waiting page
143                         SURFBAR_RELOAD_TO_STOP_PAGE();
144                 } // END - if
145         } else {
146                 // Reload to stop frame!
147                 SURFBAR_RELOAD_TO_STOP_PAGE();
148         }
149
150         // All done, so fix notice for footer.php
151         $GLOBALS['footer_sent'] = 1;
152 } else {
153         // Prepare content
154         $content = '';
155
156         // Determine template name
157         $templateName = SURFBAR_DETERMINE_TEMPLATE_NAME();
158
159         // Frame "top" set?
160         if ((REQUEST_ISSET_GET('frame')) && (REQUEST_GET('frame') == 'top')) {
161                 // Determine next id
162                 $nextId = SURFBAR_DETERMINE_NEXT_ID();
163
164                 // Is there a valid id?
165                 if ($nextId > 0) {
166                         // Then prepare other content
167                         $content = array(
168                                 'id'          => $nextId,
169                                 'check'       => SURFBAR_GENERATE_VALIDATION_CODE($nextId),
170                                 'salt'        => SURFBAR_GET_SALT(),
171                                 'reward'      => translateComma(SURFBAR_GET_REWARD($nextId)),
172                                 'url'         => SURFBAR_GET_URL($nextId),
173                                 'curr_reload' => SURFBAR_GET_USER_LOCKS(),
174                                 'max_urls'    => SURFBAR_GET_TOTAL_URLS(),
175                                 'reload'      => SURFBAR_GET_RELOAD_TIME($nextId),
176                                 'xxx'         => str_repeat('X', strlen(SURFBAR_GET_RELOAD_TIME($nextId)))
177                         );
178
179                         // Update salt (double-call lock!) and statistics
180                         SURFBAR_UPDATE_SALT_STATS();
181                 } else {
182                         // Load new URL
183                         SURFBAR_RELOAD_TO_STOP_PAGE('stop2');
184                 }
185         } elseif ((REQUEST_ISSET_GET('frame')) && (REQUEST_GET('frame') == 'start')) {
186                 // Starter frame found so let the footer display
187                 REQUEST_UNSET_GET('frame');
188         } else {
189                 // Load header in frameset mode
190                 $isFrameset = true;
191         }
192
193         // Load header
194         loadIncludeOnce('inc/header.php');
195
196         // Load that template
197         //* DEBUG: */ die("templateName={$templateName}<br />\n<strong>content</strong>=<pre>".print_r($content, true)."</pre>");
198         LOAD_TEMPLATE($templateName, false, $content);
199 }
200
201 // Load footer
202 loadIncludeOnce('inc/footer.php');
203
204 // [EOF]
205 ?>