932259cc4087a93641850e22ff85c106936f8a77
[mailer.git] / inc / libs / surfbar_functions.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 08/31/2008 *
4  * ===============                              Last change: 08/31/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : surfbar_functions.php                            *
8  * -------------------------------------------------------------------- *
9  * Short description : Functions for surfbar                            *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Funktionen fuer die Surfbar                      *
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 // Some security stuff...
40 if (!defined('__SECURITY')) {
41         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
42         require($INC);
43 }
44
45 // -----------------------------------------------------------------------------
46 //                               Admin functions
47 // -----------------------------------------------------------------------------
48 //
49 // Admin has added an URL with given user id and so on
50 function SURFBAR_ADMIN_ADD_URL ($url, $limit, $reload) {
51         // Do some pre-checks
52         if (!IS_ADMIN()) {
53                 // Not an admin
54                 DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Cannot add URL=%s,limit=%s,reload=%s : Not admin.", $url, $limit, $reload));
55                 return false;
56         } elseif (!isUrlValid($url)) {
57                 // URL invalid
58                 DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Cannot add URL=%s,limit=%s,reload=%s : Invalid URL.", $url, $limit, $reload));
59                 return false;
60         } elseif (SURFBAR_LOOKUP_BY_URL($url, '0')) {
61                 // URL already found in surfbar!
62                 DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Cannot add URL=%s,limit=%s,reload=%s : Already added.", $url, $limit, $reload));
63                 return false;
64         } elseif (!SURFBAR_IF_USER_BOOK_MORE_URLS()) {
65                 // No more allowed!
66                 DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Cannot add URL=%s,limit=%s,reload=%s : No more URLs allowed.", $url, $limit, $reload));
67                 return false;
68         } elseif ('' . ($limit + 0) . '' != '' . $limit . '') {
69                 // Invalid limit entered
70                 DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Cannot add URL=%s,limit=%s,reload=%s : Invalid limit entered.", $url, $limit, $reload));
71                 return false;
72         } elseif ('' . ($reload + 0) . '' != '' . $reload . '') {
73                 // Invalid amount entered
74                 DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Cannot add URL=%s,limit=%s,reload=%s : Invalid reload entered.", $url, $limit, $reload));
75                 return false;
76         }
77
78         // Register the new URL
79         return SURFBAR_REGISTER_URL($url, '0', 'ACTIVE', 'unlock', array('limit' => $limit, 'reload' => $reload));
80 }
81
82 // Admin unlocked an email so we can migrate the URL
83 function SURFBAR_ADMIN_MIGRATE_URL ($url, $uid) {
84         // Do some pre-checks
85         if (!IS_ADMIN()) {
86                 // Not an admin
87                 return false;
88         } elseif (!isUrlValid($url)) {
89                 // URL invalid
90                 return false;
91         } elseif (SURFBAR_LOOKUP_BY_URL($url, $uid)) {
92                 // URL already found in surfbar!
93                 return false;
94         } elseif (!SURFBAR_IF_USER_BOOK_MORE_URLS($uid)) {
95                 // No more allowed!
96                 return false;
97         }
98
99         // Register the new URL
100         return SURFBAR_REGISTER_URL($url, $uid, 'MIGRATED', 'migrate');
101 }
102
103 // Admin function for unlocking URLs
104 function SURFBAR_ADMIN_UNLOCK_URL_IDS ($IDs) {
105         // Is this an admin or invalid array?
106         if (!IS_ADMIN()) {
107                 // Not admin or invalid IDs array
108                 return false;
109         } elseif (!is_array($IDs)) {
110                 // No array
111                 return false;
112         } elseif (count($IDs) == 0) {
113                 // Empty array
114                 return false;
115         }
116
117         // Set to true to make AND expression valid if first URL got unlocked
118         $done = true;
119
120         // Update the status for all ids
121         foreach ($IDs as $id => $dummy) {
122                 // Test all ids through (ignores failed)
123                 $done = (($done) && (SURFBAR_CHANGE_STATUS($id, 'PENDING', 'ACTIVE')));
124         } // END - if
125
126         // Return total status
127         return $done;
128 }
129
130 // Admin function for rejecting URLs
131 function SURFBAR_ADMIN_REJECT_URL_IDS ($IDs) {
132         // Is this an admin or invalid array?
133         if (!IS_ADMIN()) {
134                 // Not admin or invalid IDs array
135                 return false;
136         } elseif (!is_array($IDs)) {
137                 // No array
138                 return false;
139         } elseif (count($IDs) == 0) {
140                 // Empty array
141                 return false;
142         }
143
144         // Set to true to make AND expression valid if first URL got unlocked
145         $done = true;
146
147         // Update the status for all ids
148         foreach ($IDs as $id => $dummy) {
149                 // Test all ids through (ignores failed)
150                 $done = (($done) && (SURFBAR_CHANGE_STATUS($id, 'PENDING', 'REJECTED')));
151         } // END - if
152
153         // Return total status
154         return $done;
155 }
156
157 //
158 // -----------------------------------------------------------------------------
159 //                               Member functions
160 // -----------------------------------------------------------------------------
161 //
162 // Member has added an URL
163 function SURFBAR_MEMBER_ADD_URL ($url, $limit) {
164         // Do some pre-checks
165         if (!IS_MEMBER()) {
166                 // Not a member
167                 return false;
168         } elseif ((!isUrlValid($url)) && (!IS_ADMIN())) {
169                 // URL invalid
170                 return false;
171         } elseif (SURFBAR_LOOKUP_BY_URL($url, getUserId())) {
172                 // URL already found in surfbar!
173                 return false;
174         } elseif (!SURFBAR_IF_USER_BOOK_MORE_URLS(getUserId())) {
175                 // No more allowed!
176                 return false;
177         } elseif (''.($limit + 0).'' != ''.$limit.'') {
178                 // Invalid amount entered
179                 return false;
180         }
181
182         // Register the new URL
183         return SURFBAR_REGISTER_URL($url, getUserId(), 'PENDING', 'reg', array('limit' => $limit));
184 }
185
186 // Create list of actions depending on status for the user
187 function SURFBAR_MEMBER_ACTIONS ($urlId, $status) {
188         // Load all actions in an array for given status
189         $actionArray = SURFBAR_getModeAction_ARRAY($status);
190
191         // Init HTML code
192         $OUT = "<table border=\"0\" cellspacing=\"0\" cellpadding=\"1\" width=\"100%\">
193 <tr>\n";
194
195         // Calculate width
196         $width = round(100 / count($actionArray));
197
198         // "Walk" through all actions and create forms
199         foreach ($actionArray as $actionId => $action) {
200                 // Add form for this action
201                 $OUT .= LOAD_TEMPLATE('member_surfbar_list_form', true, array(
202                         'width'    => $width,
203                         'id'       => bigintval($urlId),
204                         'action'   => strtolower($action),
205                         'title'    => '{--MEMBER_SURFBAR_ACTION_' . strtoupper($action) . '_TITLE--}',
206                         'submit'   => '{--MEMBER_SURFBAR_ACTION_' . strtoupper($action) . '_SUBMIT--}',
207                 ));
208         } // END - foreach
209
210         // Close table
211         $OUT .= "</tr>
212 </table>\n";
213
214         // Return code
215         return $OUT;
216 }
217
218 // Do the member form request
219 function SURFBAR_MEMBER_DO_FORM ($formData, $URLs) {
220         // By default no action is performed
221         $performed = false;
222
223         // Is this a member?
224         if (!IS_MEMBER()) {
225                 // No member!
226                 return false;
227         } elseif ((!isset($formData['id'])) || (!isset($formData['action']))) {
228                 // Important form elements are missing!
229                 return false;
230         } elseif (!isset($URLs[$formData['id']])) {
231                 // ID not found in cache
232                 return false;
233         } elseif (!SURFBAR_VALIDATE_MEMBER_ACTION_STATUS($formData['action'], $URLs[$formData['id']]['status'])) {
234                 // Action not allowed for current URL status
235                 return false;
236         }
237
238         // Secure action
239         $action = SQL_ESCAPE(htmlentities(strip_tags($formData['action']), ENT_QUOTES));
240
241         // Has it changed?
242         if ($action != $formData['action']) {
243                 // Invalid data in action found
244                 return false;
245         } // END - if
246
247         // Create the function name for selected action
248         $functionName = sprintf("SURFBAR_MEMBER_%s_ACTION", strtoupper($action));
249
250         // Is the function there?
251         if (function_exists($functionName)) {
252                 // Add new status
253                 $URLs[$formData['id']]['new_status'] = SURFBAR_GET_NEW_STATUS('new_status');
254
255                 // Extract URL data for call-back
256                 $urlData = array(merge_array($URLs[$formData['id']], array($action => $formData)));
257
258                 // Action found so execute it
259                 $performed = call_user_func_array($functionName, $urlData);
260         } else {
261                 // Log invalid request
262                 DEBUG_LOG(__FUNCTION__, __LINE__, "action={$formData['action']},id={$formData['id']},function={$functionName}");
263                 addFatalMessage(__FUNCTION__, __LINE__, "Invalid member action! action=%s,id=%s,function=%s", array($formData['action'], $formData['id'], $functionName));
264         }
265
266         // Return status
267         return $performed;
268 }
269
270 // Validate if the requested action can be performed on current URL status
271 function SURFBAR_VALIDATE_MEMBER_ACTION_STATUS ($action, $status) {
272         // Search for the requested action/status combination in database
273         $result = SQL_QUERY_ESC("SELECT new_status FROM `{!_MYSQL_PREFIX!}_surfbar_actions` WHERE `action`='%s' AND `status`='%s' LIMIT 1",
274         array($action, $status), __FUNCTION__, __LINE__);
275
276         // Is the entry there?
277         $isValid = (SQL_NUMROWS($result) == 1);
278
279         // Fetch the new status if found
280         if ($isValid) {
281                 // Load new status
282                 list($GLOBALS['surfbar_cache']['new_status']) = SQL_FETCHROW($result);
283         } // END - if
284
285         // Free result
286         SQL_FREERESULT($result);
287
288         // Return status
289         return $isValid;
290 }
291
292 //
293 // -----------------------------------------------------------------------------
294 //                               Member actions
295 // -----------------------------------------------------------------------------
296 //
297 // Retreat a booked URL
298 function SURFBAR_MEMBER_RETREAT_ACTION ($urlData) {
299         // Create the data array for next function call
300         $data = array(
301         $urlData['id'] => $urlData
302         );
303
304         // Simply change the status here
305         return SURFBAR_CHANGE_STATUS ($urlData['id'], $urlData['status'], $urlData['new_status'], $data);
306 }
307
308 // Book an URL now (from migration)
309 function SURFBAR_MEMBER_BOOKNOW_ACTION ($urlData) {
310         // Create the data array for next function call
311         $data = array(
312         $urlData['id'] => $urlData
313         );
314
315         // Simply change the status here
316         return SURFBAR_CHANGE_STATUS ($urlData['id'], $urlData['status'], $urlData['new_status'], $data);
317 }
318
319 // Show edit form or do the changes
320 function SURFBAR_MEMBER_EDIT_ACTION ($urlData) {
321         // Is the "execute" flag there?
322         if (isset($urlData['edit']['execute'])) {
323                 // Execute the changes
324                 return SURFBAR_MEMBER_EXECUTE_ACTION('edit', $urlData);
325         } // END - if
326
327         // Display form
328         return SURFBAR_MEMBER_DISPLAY_ACTION_FORM('edit', $urlData);
329 }
330
331 // Show delete form or do the changes
332 function SURFBAR_MEMBER_DELETE_ACTION ($urlData) {
333         // Is the "execute" flag there?
334         if (isset($urlData['delete']['execute'])) {
335                 // Execute the changes
336                 return SURFBAR_MEMBER_EXECUTE_ACTION('delete', $urlData);
337         } // END - if
338
339         // Display form
340         return SURFBAR_MEMBER_DISPLAY_ACTION_FORM('delete', $urlData);
341 }
342
343 // Pause active banner
344 function SURFBAR_MEMBER_PAUSE_ACTION ($urlData) {
345         return SURFBAR_CHANGE_STATUS($urlData['id'], $urlData['status'], $urlData['new_status'], array($urlData['id'] => $urlData));
346 }
347
348 // Unpause stopped banner
349 function SURFBAR_MEMBER_UNPAUSE_ACTION ($urlData) {
350         // Fix missing entry for template
351         $urlData['edit'] = $urlData['unpause'];
352         $urlData['edit']['url'] = $urlData['url'];
353         $urlData['edit']['limit'] = $urlData['views_max'];
354
355         // Return status change
356         return SURFBAR_CHANGE_STATUS($urlData['id'], $urlData['status'], $urlData['new_status'], array($urlData['id'] => $urlData));
357 }
358
359 // Resubmit locked URL
360 function SURFBAR_MEMBER_RESUBMIT_ACTION ($urlData) {
361         return SURFBAR_CHANGE_STATUS($urlData['id'], $urlData['status'], $urlData['new_status'], array($urlData['id'] => $urlData));
362 }
363
364 // Display selected "action form"
365 function SURFBAR_MEMBER_DISPLAY_ACTION_FORM ($action, $urlData) {
366         // Translate some data
367         $urlData['registered']    = generateDateTime($urlData['registered'], '2');
368         $urlData['views_total']   = translateComma($urlData['views_total']);
369         $urlData['views_max']     = translateComma($urlData['views_max']);
370         $urlData['views_allowed'] = translateComma($urlData['views_allowed']);
371         $urlData['last_locked']   = generateDateTime($urlData['last_locked'], '2');
372
373         // Is the lock reason empty?
374         if (empty($urlData['lock_reason'])) {
375                 // Fix it to three dashes
376                 $urlData['lock_reason'] = '---';
377         } // END - if
378
379         // Include fields only for action 'edit'
380         if ($action == 'edit') {
381                 // Default is not limited
382                 $urlData['limited_yes'] = '';
383                 $urlData['limited_no']  = ' checked="checked"';
384                 $urlData['limited']     = 'false';
385
386                 // Is this URL limited?
387                 if ($urlData['views_max'] > 0) {
388                         // Then rewrite form data
389                         $urlData['limited_yes'] = ' checked="checked"';
390                         $urlData['limited_no']  = '';
391                         $urlData['limited']     = 'true';
392                 } // END - if
393         } // END - if
394
395         // Load the form and display it
396         LOAD_TEMPLATE(sprintf("member_surfbar_%s_action_form", $action), false, $urlData);
397
398         // All fine by default ... ;-)
399         return true;
400 }
401
402 // Execute choosen action
403 function SURFBAR_MEMBER_EXECUTE_ACTION ($action, $urlData) {
404         // By default nothing is executed
405         $executed = false;
406
407         // Is limitation "no" and "limit" is > 0?
408         if ((isset($urlData[$action]['limited'])) && ($urlData[$action]['limited'] == 'N') && ((isset($urlData[$action]['limit'])) && ($urlData[$action]['limit'] > 0)) || (!isset($urlData[$action]['limit']))) {
409                 // Set it to unlimited
410                 $urlData[$action]['limit'] = 0;
411         } // END - if
412
413         // Construct function name
414         $functionName = sprintf("SURFBAR_MEMBER_EXECUTE_%s_ACTION", strtoupper($action));
415
416         // Is 'userid' set and not 'uid' ?
417         if ((!isset($urlData['uid'])) && (isset($urlData['userid']))) {
418                 // Auto-fix this
419                 $urlData['uid'] = $urlData['userid'];
420         } // END - if
421
422         // Is that function there?
423         if (function_exists($functionName)) {
424                 // Execute the function
425                 if (call_user_func_array($functionName, array($urlData)) == true) {
426                         // Update status as well
427                         $executed = SURFBAR_CHANGE_STATUS($urlData['id'], $urlData['status'], $urlData['new_status'], array($urlData['id'] => $urlData));
428                 } // END - if
429         } else {
430                 // Not found!
431                 addFatalMessage(__FUNCTION__, __LINE__, getMessage('MEMBER_SURFBAR_EXECUTE_ACTION_404'), $functionName);
432         }
433
434         // Return status
435         return $executed;
436 }
437 // "Execute edit" function: Update changed data
438 function SURFBAR_MEMBER_EXECUTE_EDIT_ACTION ($urlData) {
439         // Default is nothing done
440         $status = false;
441
442         // Translate URLs for testing
443         $url1 = COMPILE_CODE($urlData['url']);
444         $url2 = COMPILE_CODE($urlData['edit']['url']);
445
446         // Has the URL or limit changed?
447         if (true) {
448                 //if (($urlData['views_allowed'] != $urlData['edit']['limit']) || ($url1 != $url2)) {
449                 // Run the query
450                 SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_surfbar_urls` SET url='%s', views_allowed=%s, views_max=%s WHERE `id`=%s AND `status`='%s' LIMIT 1",
451                 array($urlData['url'], $urlData['edit']['limit'], $urlData['edit']['limit'], $urlData['id'], $urlData['status']), __FUNCTION__, __LINE__);
452
453                 // All fine
454                 $status = true;
455         }
456
457         // Return status
458         return $status;
459 }
460 // "Execute delete" function: Does nothing...
461 function SURFBAR_MEMBER_EXECUTE_DELETE_ACTION ($urlData) {
462         // Nothing special to do (see above function for such "special actions" to perform)
463         return true;
464 }
465 //
466 // -----------------------------------------------------------------------------
467 //                           Self-maintenance functions
468 // -----------------------------------------------------------------------------
469 //
470 // Main function
471 function SURFBAR_HANDLE_SELF_MAINTENANCE () {
472         // Handle URLs which limit has depleted so we can stop them
473         SURFBAR_HANDLE_DEPLETED_VIEWS();
474
475         // Handle low-points amounts
476         SURFBAR_HANDLE_LOW_POINTS();
477 }
478 // Handle URLs which limit has depleted
479 function SURFBAR_HANDLE_DEPLETED_VIEWS () {
480         // Get all URLs
481         $urlArray = SURFBAR_GET_URL_DATA('0', 'views_max', 'id', 'ASC', 'id', " AND views_allowed>0 AND `status`='ACTIVE'");
482
483         // Do we have some entries?
484         if (count($urlArray) > 0) {
485                 // Then handle all!
486                 foreach ($urlArray as $id => $urlData) {
487                         // Backup data
488                         $data = $urlData;
489
490                         // Rewrite array for next call
491                         $urlData[$id] = $data;
492
493                         // Handle the status
494                         SURFBAR_CHANGE_STATUS($id, 'ACTIVE', 'DEPLETED', $urlData);
495                 } // END - foreach
496         } // END - if
497 }
498
499 // Alert users which have URLs booked and are low on points amount
500 function SURFBAR_HANDLE_LOW_POINTS () {
501         // Get all userids
502         $UIDs = SURFBAR_DETERMINE_DEPLETED_USERIDS(getConfig('surfbar_warn_low_points'));
503
504         // "Walk" through all URLs
505         foreach ($UIDs['uid'] as $uid => $dummy) {
506                 // Is the last notification far enougth away to notify again?
507                 if ((time() - $UIDs['notified'][$uid]) >= getConfig('surfbar_low_interval')) {
508                         // Prepare content
509                         $content = array(
510                                 'uid'      => $uid,
511                                 'low'      => translateComma(getConfig('surfbar_warn_low_points')),
512                                 'points'   => translateComma($UIDs['points'][$uid]),
513                                 'notified' => generateDateTime($UIDs['notified'][$uid]),
514                                 'interval' => createFancyTime(getConfig('surfbar_low_interval'))
515                         );
516
517                         // Notify this user
518                         SURFBAR_NOTIFY_USER('low_points', $content);
519
520                         // Update last notified
521                         SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_user_data` SET surfbar_low_notified=NOW() WHERE `userid`=%s LIMIT 1",
522                         array($uid), __FUNCTION__, __LINE__);
523                 } // END - if
524         } // END - foreach
525 }
526
527 //
528 // -----------------------------------------------------------------------------
529 //                               Generic functions
530 // -----------------------------------------------------------------------------
531 //
532
533 // Looks up by an URL
534 function SURFBAR_LOOKUP_BY_URL ($url, $uid) {
535         // Now lookup that given URL by itself
536         $urlArray = SURFBAR_GET_URL_DATA($url, 'url', 'id', 'ASC', 'id', sprintf(" AND `userid`=%s", bigintval($uid)));
537
538         // Was it found?
539         return (count($urlArray) > 0);
540 }
541
542 // Load URL data by given search term and column
543 function SURFBAR_GET_URL_DATA ($searchTerm, $column = 'id', $order = 'id', $sort = 'ASC', $group = 'id', $add = '') {
544         // By default nothing is found
545         $GLOBALS['last_url_data'] = array();
546
547         // Is the column an id number?
548         if (($column == 'id') || ($column == 'userid')) {
549                 // Extra secure input
550                 $searchTerm = bigintval($searchTerm);
551         } // END - if
552
553         // If the column is 'id' there can be only one entry
554         $limit = '';
555         if ($column == 'id') {
556                 $limit = "LIMIT 1";
557         } // END - if
558
559         // Look up the record
560         $result = SQL_QUERY_ESC("SELECT id, userid, url, views_total, views_max, views_allowed, status, registered, last_locked, lock_reason, views_max, views_allowed, fixed_reload
561 FROM `{!_MYSQL_PREFIX!}_surfbar_urls`
562 WHERE %s='%s'".$add."
563 ORDER BY %s %s
564 %s",
565         array($column, $searchTerm, $order, $sort, $limit), __FUNCTION__, __LINE__);
566
567         // Is there at least one record?
568         if (SQL_NUMROWS($result) > 0) {
569                 // Then load all!
570                 while ($dataRow = SQL_FETCHARRAY($result)) {
571                         // Shall we group these results?
572                         if ($group == 'id') {
573                                 // Add the row by id as index
574                                 $GLOBALS['last_url_data'][$dataRow['id']] = $dataRow;
575                         } else {
576                                 // Group entries
577                                 $GLOBALS['last_url_data'][$dataRow[$group]][$dataRow['id']] = $dataRow;
578                         }
579                 } // END - while
580         } // END - if
581
582         // Free the result
583         SQL_FREERESULT($result);
584
585         // Return the result
586         return $GLOBALS['last_url_data'];
587 }
588
589 // Registers an URL with the surfbar. You should have called SURFBAR_LOOKUP_BY_URL() first!
590 function SURFBAR_REGISTER_URL ($url, $uid, $status = 'PENDING', $addMode = 'reg', $extraFields = array()) {
591         // Make sure by the user registered URLs are always pending
592         if ($addMode == 'reg') {
593                 $status = 'PENDING';
594         } // END - if
595
596         // Prepare content
597         $content = merge_array($extraFields, array(
598                 'url'         => $url,
599                 'frametester' => FRAMETESTER($url),
600                 'uid'         => $uid,
601                 'status'      => $status,
602         ));
603
604         // Is limit/reload set?
605         if (!isset($config['limit'])) {
606                 $content['limit']  = 0;
607         } // END - if
608         if (!isset($config['reload'])) {
609                 $content['reload'] = 0;
610         } // END - if
611
612         // Insert the URL into database
613         $content['insert_id'] = SURFBAR_INSERT_URL_BY_ARRAY($content);
614
615         // Is this ID valid?
616         if ($content['insert_id'] == 0) {
617                 // INSERT did not insert any data!
618                 return false;
619         } // END - if
620
621         // Translate status and limit
622         $content['limit'] = surfbarTranslateLimit($content['limit']);
623
624         // If in reg-mode we notify admin
625         if (($addMode == 'reg') || (getConfig('surfbar_notify_admin_unlock') == 'Y')) {
626                 // Notify admin even when he as unlocked an email
627                 SURFBAR_NOTIFY_ADMIN("url_{$addMode}", $content);
628         } // END - if
629
630         // Send mail to user
631         SURFBAR_NOTIFY_USER("url_{$addMode}", $content);
632
633         // Return the insert id
634         return $content['insert_id'];
635 }
636
637 // Inserts an url by given data array and return the insert id
638 function SURFBAR_INSERT_URL_BY_ARRAY ($urlData) {
639         // Get userid
640         $uid = bigintval($urlData['uid']);
641
642         // Is the id set?
643         if (empty($uid)) $uid = 0;
644
645         // Just run the insert query for now
646         SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_surfbar_urls` (userid,url,status,views_max,views_allowed,fixed_reload) VALUES (%s,'%s','%s',%s,%s,%s)",
647         array(
648         $uid,
649         $urlData['url'],
650         $urlData['status'],
651         $urlData['limit'],
652         $urlData['limit'],
653         $urlData['reload']
654         ), __FUNCTION__, __LINE__
655         );
656
657         // Return insert id
658         return SQL_INSERTID();
659 }
660
661 // Notify admin(s) with a selected message and content
662 function SURFBAR_NOTIFY_ADMIN ($messageType, $content) {
663         // Prepare template name
664         $templateName = sprintf("admin_surfbar_%s", $messageType);
665
666         // Prepare subject
667         $subject = getMessage(sprintf("ADMIN_SURFBAR_NOTIFY_%s_SUBJECT",
668         strtoupper($messageType)
669         ));
670
671         // Is the subject line there?
672         if ((substr($subject, 0, 1) == '!') && (substr($subject, -1, 1) == '!')) {
673                 // Set default subject if following eval() wents wrong
674                 $subject = getMessage('ADMIN_SURFBAR_NOTIFY_DEFAULT_SUBJECT');
675         } // END - if
676
677         // Translate some data if present
678         if (isset($content['status']))        $content['status']        = surfbarTranslateUserStatus($content['status']);
679         if (isset($content['registered']))    $content['registered']    = generateDateTime($content['registered'], '2');
680         if (isset($content['last_locked']))   $content['last_locked']   = generateDateTime($content['last_locked'], '2');
681         if (isset($content['views_total']))   $content['views_total']   = translateComma($content['views_total']);
682         if (isset($content['views_allowed'])) $content['views_allowed'] = translateComma($content['views_allowed']);
683         if (isset($content['views_max']))     $content['views_max']     = translateComma($content['views_max']);
684
685         // Send the notification out
686         return sendAdminNotification($subject, $templateName, $content, $content['uid']);
687 }
688
689 // Notify the user about the performed action
690 function SURFBAR_NOTIFY_USER ($messageType, $content) {
691         // Skip notification if userid is zero
692         if ($content['uid'] == 0) {
693                 return false;
694         } // END - if
695
696         // Prepare template name
697         $templateName = sprintf("member_surfbar_%s", $messageType);
698
699         // Prepare subject
700         $subject = getMessage(sprintf("MEMBER_SURFBAR_NOTIFY_%s_SUBJECT",
701         strtoupper($messageType)
702         ));
703
704         // Is the subject line there?
705         if ((substr($subject, 0, 1) == '!') && (substr($subject, -1, 1) == '!')) {
706                 // Set default subject if following eval() wents wrong
707                 $subject = getMessage('MEMBER_SURFBAR_NOTIFY_DEFAULT_SUBJECT');
708         } // END - if
709
710         // Translate some data if present
711         if (isset($content['status']))        $content['status']        = surfbarTranslateUserStatus($content['status']);
712         if (isset($content['registered']))    $content['registered']    = generateDateTime($content['registered'], '2');
713         if (isset($content['last_locked']))   $content['last_locked']   = generateDateTime($content['last_locked'], '2');
714         if (isset($content['views_total']))   $content['views_total']   = translateComma($content['views_total']);
715         if (isset($content['views_allowed'])) $content['views_allowed'] = translateComma($content['views_allowed']);
716         if (isset($content['views_max']))     $content['views_max']     = translateComma($content['views_max']);
717
718         // Load template
719         $mailText = LOAD_EMAIL_TEMPLATE($templateName, $content, $content['uid']);
720
721         // Send the email
722         return sendEmail($content['uid'], $subject, $mailText);
723 }
724
725 // Translates the limit
726 function surfbarTranslateLimit ($limit) {
727         // Is this zero?
728         if ($limit == 0) {
729                 // Unlimited!
730                 $return = getMessage('MEMBER_SURFBAR_UNLIMITED_VIEWS');
731         } else {
732                 // Translate comma
733                 $return = translateComma($limit);
734         }
735
736         // Return value
737         return $return;
738 }
739
740 // Translate the URL status
741 function surfbarTranslateUserStatus ($status) {
742         // Create constant name
743         $constantName = sprintf("SURFBAR_URL_STATUS_%s", strtoupper($status));
744
745         // Set default translated status
746         $statusTranslated = '!'.$constantName.'!';
747
748         // Is the constant there?
749         if (defined($constantName)) {
750                 // Then get it's value
751                 $statusTranslated = constant($constantName);
752         } // END - if
753
754         // Return result
755         return $statusTranslated;
756 }
757
758 // Determine reward
759 function SURFBAR_DETERMINE_REWARD ($onlyMin=false) {
760         // Static values are default
761         $reward = getConfig('surfbar_static_reward');
762
763         // Do we have static or dynamic?
764         if (getConfig('surfbar_pay_model') == 'DYNAMIC') {
765                 // "Calculate" dynamic reward
766                 if ($onlyMin) {
767                         $reward += SURFBAR_CALCULATE_DYNAMIC_MIN_VALUE();
768                 } else {
769                         $reward += SURFBAR_CALCULATE_DYNAMIC_ADD();
770                 }
771         } // END - if
772
773         // Return reward
774         return $reward;
775 }
776
777 // Determine costs
778 function SURFBAR_DETERMINE_COSTS ($onlyMin=false) {
779         // Static costs is default
780         $costs  = getConfig('surfbar_static_costs');
781
782         // Do we have static or dynamic?
783         if (getConfig('surfbar_pay_model') == 'DYNAMIC') {
784                 // "Calculate" dynamic costs
785                 if ($onlyMin) {
786                         $costs += SURFBAR_CALCULATE_DYNAMIC_MIN_VALUE();
787                 } else {
788                         $costs += SURFBAR_CALCULATE_DYNAMIC_ADD();
789                 }
790         } // END - if
791
792         // Return costs
793         return $costs;
794 }
795
796 // "Calculate" dynamic add
797 function SURFBAR_CALCULATE_DYNAMIC_ADD () {
798         // Get min/max values
799         $min = SURFBAR_CALCULATE_DYNAMIC_MIN_VALUE();
800         $max = SURFBAR_CALCULATE_DYNAMIC_MAX_VALUE();
801
802         // "Calculate" dynamic part and return it
803         return mt_rand($min, $max);
804 }
805
806 // Determine right template name
807 function SURFBAR_DETERMINE_TEMPLATE_NAME() {
808         // Default is the frameset
809         $templateName = "surfbar_frameset";
810
811         // Any frame set? ;-)
812         if (REQUEST_ISSET_GET('frame')) {
813                 // Use the frame as a template name part... ;-)
814                 $templateName = sprintf("surfbar_frame_%s",
815                 REQUEST_GET('frame')
816                 );
817         } // END - if
818
819         // Return result
820         return $templateName;
821 }
822
823 // Check if the "reload lock" of the current user is full, call this function
824 // before you call SURFBAR_CHECK_RELOAD_LOCK().
825 function SURFBAR_CHECK_RELOAD_FULL() {
826         // Default is full!
827         $isFull = true;
828
829         // Cache static reload lock
830         $GLOBALS['surfbar_cache']['surf_lock'] = getConfig('surfbar_static_lock');
831         //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "Fixed surf lock is ".getConfig('surfbar_static_lock')."", false);
832
833         // Do we have dynamic model?
834         if (getConfig('surfbar_pay_model') == 'DYNAMIC') {
835                 // "Calculate" dynamic lock
836                 $GLOBALS['surfbar_cache']['surf_lock'] += SURFBAR_CALCULATE_DYNAMIC_ADD();
837         } // END - if
838
839         // Ask the database
840         $result = SQL_QUERY_ESC("SELECT
841         COUNT(l.id) AS cnt
842 FROM
843         `{!_MYSQL_PREFIX!}_surfbar_locks` AS l
844 INNER JOIN
845         `{!_MYSQL_PREFIX!}_surfbar_urls` AS u
846 ON
847         u.id=l.url_id
848 WHERE
849         l.userid=%s AND (UNIX_TIMESTAMP() - ".SURFBAR_GET_SURF_LOCK().") < UNIX_TIMESTAMP(l.last_surfed) AND (((UNIX_TIMESTAMP(l.last_surfed) - u.fixed_reload) < 0 AND u.fixed_reload > 0) OR u.fixed_reload = 0)
850 LIMIT 1",
851                 array(getUserId()), __FUNCTION__, __LINE__
852         );
853
854         // Fetch row
855         list($GLOBALS['surfbar_cache']['user_locks']) = SQL_FETCHROW($result);
856
857         // Is it null?
858         if (is_null($GLOBALS['surfbar_cache']['user_locks'])) {
859                 // Then fix it to zero!
860                 $GLOBALS['surfbar_cache']['user_locks'] = 0;
861         } // END - if
862
863         // Free result
864         SQL_FREERESULT($result);
865
866         // Get total URLs
867         $total = SURFBAR_GET_TOTAL_URLS();
868
869         // Do we have some URLs in lock? Admins can always surf on own URLs!
870         //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "userLocks=".SURFBAR_GET_USER_LOCKS().",total={$total}", false);
871         $isFull = ((SURFBAR_GET_USER_LOCKS() == $total) && ($total > 0));
872
873         // Return result
874         return $isFull;
875 }
876
877 // Get total amount of URLs of given status for current user or of ACTIVE URLs by default
878 function SURFBAR_GET_TOTAL_URLS ($status = 'ACTIVE', $excludeUserId = 0) {
879         // Determine depleted user account
880         $UIDs = SURFBAR_DETERMINE_DEPLETED_USERIDS();
881
882         // Is the exlude userid set?
883         if ($excludeUserId > 0) {
884                 // Then add it
885                 $UIDs['uid'][$excludeUserId] = $excludeUserId;
886         } // END - if
887
888         // Get amount from database
889         $result = SQL_QUERY_ESC("SELECT COUNT(id) AS cnt
890 FROM `{!_MYSQL_PREFIX!}_surfbar_urls`
891 WHERE userid NOT IN (".implode(',', $UIDs['uid']).") AND `status`='%s'",
892         array($status), __FUNCTION__, __LINE__
893         );
894
895         // Fetch row
896         list($cnt) = SQL_FETCHROW($result);
897
898         // Free result
899         SQL_FREERESULT($result);
900
901         // Return result
902         return $cnt;
903 }
904
905 // Check wether the user is allowed to book more URLs
906 function SURFBAR_IF_USER_BOOK_MORE_URLS ($uid=0) {
907         // Is this admin and userid is zero or does the user has some URLs left to book?
908         return ((($uid == 0) && (IS_ADMIN())) || (SURFBAR_GET_TOTAL_USER_URLS($uid, '', array("REJECTED")) < getConfig('surfbar_max_order')));
909 }
910
911 // Get total amount of URLs of given status for current user
912 function SURFBAR_GET_TOTAL_USER_URLS ($uid=0, $status = '',$exclude = '') {
913         // Is the user 0 and user is logged in?
914         if (($uid == 0) && (IS_MEMBER())) {
915                 // Then use this userid
916                 $uid = getUserId();
917         } elseif ($uid == 0) {
918                 // Error!
919                 return (getConfig('surfbar_max_order') + 1);
920         }
921
922         // Default is all URLs
923         $add = '';
924
925         // Is the status set?
926         if (is_array($status)) {
927                 // Only URLs with these status
928                 $add = sprintf(" AND `status` IN('%s')", implode("','", $status));
929         } elseif (!empty($status)) {
930                 // Only URLs with this status
931                 $add = sprintf(" AND `status`='%s'", $status);
932         } elseif (is_array($exclude)) {
933                 // Exclude URLs with these status
934                 $add = sprintf(" AND `status` NOT IN('%s')", implode("','", $exclude));
935         } elseif (!empty($exclude)) {
936                 // Exclude URLs with this status
937                 $add = sprintf(" AND `status` != '%s'", $exclude);
938         }
939
940         // Get amount from database
941         $cnt = GET_TOTAL_DATA($uid, 'surfbar_urls', 'id', 'userid', true, $add);
942
943         // Return result
944         return $cnt;
945 }
946
947 // Generate a validation code for the given id number
948 function SURFBAR_GENERATE_VALIDATION_CODE ($urlId, $salt = '') {
949         // @TODO Invalid salt should be refused
950         $GLOBALS['surfbar_cache']['salt'] = 'INVALID';
951
952         // Get code length from config
953         $length = getConfig('code_length');
954
955         // Fix length to 10
956         if ($length == 0) $length = 10;
957
958         // Generate a code until the length matches
959         $valCode = '';
960         while (strlen($valCode) != $length) {
961                 // Is the salt set?
962                 if (empty($salt)) {
963                         // Generate random hashed string
964                         $GLOBALS['surfbar_cache']['salt'] = sha1(generatePassword(mt_rand(200, 255)));
965                         //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "newSalt=".SURFBAR_GET_SALT()."", false);
966                 } else {
967                         // Use this as salt!
968                         $GLOBALS['surfbar_cache']['salt'] = $salt;
969                         //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "oldSalt=".SURFBAR_GET_SALT()."", false);
970                 }
971
972                 // ... and now the validation code
973                 $valCode = generateRandomCode($length, sha1(SURFBAR_GET_SALT().':'.$urlId), getUserId());
974                 //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "valCode={$valCode}", false);
975         } // END - while
976
977         // Hash it with md5() and salt it with the random string
978         $hashedCode = generateHash(md5($valCode), SURFBAR_GET_SALT());
979
980         // Finally encrypt it PGP-like and return it
981         $valHashedCode = generatePassString($hashedCode);
982
983         // Return hashed value
984         //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "finalValCode={$valHashedCode}", false);
985         return $valHashedCode;
986 }
987
988 // Check validation code
989 function SURFBAR_CHECK_VALIDATION_CODE ($urlId, $check, $salt) {
990         // Secure id number
991         $urlId = bigintval($urlId);
992
993         // Now generate the code again
994         $code = SURFBAR_GENERATE_VALIDATION_CODE($urlId, $salt);
995
996         // Return result of checking hashes and salts
997         //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, '---'.$code.'|'.$check.'---', false);
998         //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "+++".$salt.'|'.SURFBAR_GET_DATA('last_salt')."+++", false);
999         return (($code == $check) && ($salt == SURFBAR_GET_DATA('last_salt')));
1000 }
1001
1002 // Lockdown the userid/id combination (reload lock)
1003 function SURFBAR_LOCKDOWN_ID ($urlId) {
1004         //* DEBUG: */ print "LOCK!";
1005         ///* DEBUG: */ return;
1006         // Just add it to the database
1007         SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_surfbar_locks` (`userid`, `url_id`) VALUES (%s, %s)",
1008                 array(getUserId(), bigintval($urlId)), __FUNCTION__, __LINE__);
1009
1010         // Remove the salt from database
1011         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_surfbar_salts` WHERE `url_id`=%s AND `userid`=%s LIMIT 1",
1012                 array(bigintval($urlId), getUserId()), __FUNCTION__, __LINE__);
1013 }
1014
1015 // Pay points to the user and remove it from the sender if userid is given else it is a "sponsored surf"
1016 function SURFBAR_PAY_POINTS () {
1017         // Remove it from the URL owner
1018         //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "uid=".SURFBAR_GET_USERID().",costs=".SURFBAR_GET_COSTS()."", false);
1019         if (SURFBAR_GET_USERID() > 0) {
1020                 SUB_POINTS(sprintf("surfbar_%s", getConfig('surfbar_pay_model')), SURFBAR_GET_USERID(), SURFBAR_GET_COSTS());
1021         } // END - if
1022
1023         // Book it to the user
1024         //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "uid=".getUserId().",reward=".SURFBAR_GET_REWARD()."", false);
1025         ADD_POINTS_REFSYSTEM(sprintf("surfbar_%s", getConfig('surfbar_pay_model')), getUserId(), SURFBAR_GET_DATA('reward'));
1026 }
1027
1028 // Updates the statistics of current URL/userid
1029 function SURFBAR_UPDATE_INSERT_STATS_RECORD () {
1030         // Init add
1031         $add = '';
1032
1033         // Get allowed views
1034         $allowed = SURFBAR_GET_VIEWS_ALLOWED();
1035
1036         // Do we have a limit?
1037         if ($allowed > 0) {
1038                 // Then count views_max down!
1039                 $add .= ", `views_max`=`views_max`-1";
1040         } // END - if
1041
1042         // Update URL stats
1043         SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_surfbar_urls` SET `views_total`=`views_total`+1".$add." WHERE `id`=%s LIMIT 1",
1044                 array(SURFBAR_GET_ID()), __FUNCTION__, __LINE__);
1045
1046         // Update the stats entry
1047         SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_surfbar_stats` SET `count`=`count`+1 WHERE `userid`=%s AND `url_id`=%s LIMIT 1",
1048                 array(getUserId(), SURFBAR_GET_ID()), __FUNCTION__, __LINE__);
1049
1050         // Was that update okay?
1051         if (SQL_AFFECTEDROWS() < 1) {
1052                 // No, then insert entry
1053                 SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_surfbar_stats` (userid,url_id,count) VALUES (%s,%s,1)",
1054                 array(getUserId(), SURFBAR_GET_ID()), __FUNCTION__, __LINE__);
1055         } // END - if
1056
1057         // Update total/daily/weekly/monthly counter
1058         incrementConfigEntry('surfbar_total_counter');
1059         incrementConfigEntry('surfbar_daily_counter');
1060         incrementConfigEntry('surfbar_weekly_counter');
1061         incrementConfigEntry('surfbar_monthly_counter');
1062
1063         // Update config as well
1064         updateConfiguration(array('surfbar_total_counter', 'surfbar_daily_counter', 'surfbar_weekly_counter', 'surfbar_monthly_counter'), array(1,1,1,1), '+');
1065 }
1066
1067 // Update the salt for validation and statistics
1068 function SURFBAR_UPDATE_SALT_STATS () {
1069         // Update statistics record
1070         SURFBAR_UPDATE_INSERT_STATS_RECORD();
1071
1072         // Simply store the salt from cache away in database...
1073         SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_surfbar_salts` SET `last_salt`='%s' WHERE `url_id`=%s AND `userid`=%s LIMIT 1",
1074                 array(SURFBAR_GET_SALT(), SURFBAR_GET_ID(), getUserId()), __FUNCTION__, __LINE__);
1075
1076         // Debug message
1077         //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "salt=".SURFBAR_GET_SALT().",id=".SURFBAR_GET_ID().",uid=".getUserId()."", false);
1078
1079         // Was that okay?
1080         if (SQL_AFFECTEDROWS() < 1) {
1081                 // Insert missing entry!
1082                 SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_surfbar_salts` (`url_id`, `userid`, `last_salt`) VALUES (%s, %s, '%s')",
1083                         array(SURFBAR_GET_ID(), getUserId(), SURFBAR_GET_SALT()), __FUNCTION__, __LINE__);
1084         } // END - if
1085
1086         // Debug message
1087         //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "affectedRows=".SQL_AFFECTEDROWS()."", false);
1088
1089         // Return if the update was okay
1090         return (SQL_AFFECTEDROWS() == 1);
1091 }
1092
1093 // Check if the reload lock is active for given id
1094 function SURFBAR_CHECK_RELOAD_LOCK ($urlId) {
1095         //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "id={$urlId}", false);
1096         // Ask the database
1097         $result = SQL_QUERY_ESC("SELECT COUNT(`id`) AS cnt
1098 FROM
1099         `{!_MYSQL_PREFIX!}_surfbar_locks`
1100 WHERE
1101         `userid`=%s AND `url_id`=%s AND (UNIX_TIMESTAMP() - ".SURFBAR_GET_SURF_LOCK().") < UNIX_TIMESTAMP(`last_surfed`)
1102 ORDER BY
1103         `last_surfed` ASC
1104 LIMIT 1",
1105                 array(getUserId(), bigintval($urlId)), __FUNCTION__, __LINE__
1106         );
1107
1108         // Fetch counter
1109         list($cnt) = SQL_FETCHROW($result);
1110
1111         // Free result
1112         SQL_FREERESULT($result);
1113
1114         // Return check
1115         //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "cnt={$cnt},".SURFBAR_GET_SURF_LOCK()."", false);
1116         return ($cnt == 1);
1117 }
1118
1119 // Determine which user hash no more points left
1120 function SURFBAR_DETERMINE_DEPLETED_USERIDS ($limit=0) {
1121         // Init array
1122         $UIDs = array(
1123                 'uid'      => array(),
1124                 'points'   => array(),
1125                 'notified' => array(),
1126         );
1127
1128         // Do we have a current user id?
1129         if ((IS_MEMBER()) && ($limit == 0)) {
1130                 // Then add this as well
1131                 $UIDs['uid'][getUserId()]      = getUserId();
1132                 $UIDs['points'][getUserId()]   = GET_TOTAL_DATA(getUserId(), 'user_points', 'points') - GET_TOTAL_DATA(getUserId(), 'user_data', 'used_points');
1133                 $UIDs['notified'][getUserId()] = 0;
1134
1135                 // Get all userid except logged in one
1136                 $result = SQL_QUERY_ESC("SELECT
1137         u.userid, UNIX_TIMESTAMP(d.surfbar_low_notified) AS notified
1138 FROM
1139         `{!_MYSQL_PREFIX!}_surfbar_urls` AS u
1140 INNER JOIN
1141         `{!_MYSQL_PREFIX!}_user_data` AS d
1142 ON
1143         u.userid=d.userid
1144 WHERE
1145         u.userid NOT IN (%s,0) AND u.`status`='ACTIVE'
1146 GROUP BY
1147         u.userid
1148 ORDER BY
1149         u.userid ASC",
1150                         array(getUserId()), __FUNCTION__, __LINE__);
1151         } else {
1152                 // Get all userid
1153                 $result = SQL_QUERY("SELECT
1154         u.userid, UNIX_TIMESTAMP(d.surfbar_low_notified) AS notified
1155 FROM
1156         `{!_MYSQL_PREFIX!}_surfbar_urls` AS u
1157 INNER JOIN
1158         `{!_MYSQL_PREFIX!}_user_data` AS d
1159 ON
1160         u.userid=d.userid
1161 WHERE
1162         u.`status`='ACTIVE'
1163 GROUP BY
1164         u.userid
1165 ORDER BY
1166         u.userid ASC", __FUNCTION__, __LINE__);
1167         }
1168
1169         // Load all userid
1170         while ($content = SQL_FETCHARRAY($result)) {
1171                 // Get total points
1172                 $points = GET_TOTAL_DATA($content['userid'], 'user_points', 'points') - GET_TOTAL_DATA($content['userid'], 'user_data', 'used_points');
1173                 //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "uid={$content['userid']},points={$points}", false);
1174
1175                 // Shall we add this to ignore?
1176                 if ($points <= $limit) {
1177                         // Ignore this one!
1178                         //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "uid={$content['userid']} has depleted points amount!", false);
1179                         $UIDs['uid'][$content['userid']]      = $content['userid'];
1180                         $UIDs['points'][$content['userid']]   = $points;
1181                         $UIDs['notified'][$content['userid']] = $content['notified'];
1182                 } // END - if
1183         } // END - while
1184
1185         // Free result
1186         SQL_FREERESULT($result);
1187
1188         // Debug message
1189         //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "UIDs::count=".count($UIDs)." (with own userid=".getUserId().')', false);
1190
1191         // Return result
1192         return $UIDs;
1193 }
1194
1195 // Determine how many users are Online in surfbar
1196 function SURFBAR_DETERMINE_TOTAL_ONLINE () {
1197         // Count all users in surfbar modue and return the value
1198         $result = SQL_QUERY_ESC("SELECT id
1199 FROM `{!_MYSQL_PREFIX!}_surfbar_stats`
1200 WHERE (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(last_online)) <= %s
1201 GROUP BY userid",
1202         array(getConfig('online_timeout')), __FUNCTION__, __LINE__);
1203
1204         // Fetch count
1205         $cnt = SQL_NUMROWS($result);
1206
1207         // Free result
1208         SQL_FREERESULT($result);
1209
1210         // Return result
1211         return $cnt;
1212 }
1213
1214 // Determine waiting time for one URL
1215 function SURFBAR_DETERMINE_WAIT_TIME () {
1216         // Get fixed reload lock
1217         $fixed = SURFBAR_GET_FIXED_RELOAD();
1218
1219         // Is the fixed reload time set?
1220         if ($fixed > 0) {
1221                 // Return it
1222                 return $fixed;
1223         } // END - if
1224
1225         // Static time is default
1226         $time = getConfig('surfbar_static_time');
1227
1228         // Which payment model do we have?
1229         if (getConfig('surfbar_pay_model') == 'DYNAMIC') {
1230                 // "Calculate" dynamic time
1231                 $time += SURFBAR_CALCULATE_DYNAMIC_ADD();
1232         } // END - if
1233
1234         // Return value
1235         return $time;
1236 }
1237
1238 // Changes the status of an URL from given to other
1239 function SURFBAR_CHANGE_STATUS ($urlId, $prevStatus, $newStatus, $data=array()) {
1240         // Make new status always lower-case
1241         $newStatus = strtolower($newStatus);
1242
1243         // Get URL data for status comparison if missing
1244         if ((!is_array($data)) || (count($data) == 0)) {
1245                 // Fetch missing URL data
1246                 $data = SURFBAR_GET_URL_DATA($urlId);
1247         } // END - if
1248
1249         // Is the new status set?
1250         if ((!is_string($newStatus)) || (empty($newStatus))) {
1251                 // Abort here, but fine!
1252                 return true;
1253         } // END - if
1254
1255         // Is the status like prevStatus is saying?
1256         if ($data[$urlId]['status'] != $prevStatus) {
1257                 // No, then abort here
1258                 return false;
1259         } // END - if
1260
1261
1262         // Update the status now
1263         // ---------- Comment out for debugging/developing member actions! ---------
1264         //SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_surfbar_urls` SET `status`='%s' WHERE `id`=%s LIMIT 1",
1265         //      array($newStatus, bigintval($urlId)), __FUNCTION__, __LINE__);
1266         // ---------- Comment out for debugging/developing member actions! ---------
1267
1268         // Was that fine?
1269         // ---------- Comment out for debugging/developing member actions! ---------
1270         //if (SQL_AFFECTEDROWS() != 1) {
1271         //      // No, something went wrong
1272         //      return false;
1273         //} // END - if
1274         // ---------- Comment out for debugging/developing member actions! ---------
1275
1276         // Prepare content for notification routines
1277         $data[$urlId]['uid']         = $data[$urlId]['userid'];
1278         $data[$urlId]['frametester'] = FRAMETESTER($data[$urlId]['url']);
1279         $data[$urlId]['reward']      = translateComma(getConfig('surfbar_static_reward'));
1280         $data[$urlId]['costs']       = translateComma(getConfig('surfbar_static_costs'));
1281
1282         // Do some dirty fixing here:
1283         if (($data[$urlId]['status'] == 'STOPPED') && ($newStatus == 'pending')) {
1284                 // Fix for template change
1285                 $newStatus = 'continued';
1286         } // END - if
1287
1288         // Send admin notification
1289         SURFBAR_NOTIFY_ADMIN("url_{$data[$urlId]['status']}_{$newStatus}", $data[$urlId]);
1290
1291         // Send user notification
1292         SURFBAR_NOTIFY_USER("url_{$data[$urlId]['status']}_{$newStatus}", $data[$urlId]);
1293
1294         // All done!
1295         return true;
1296 }
1297
1298 // Calculate minimum value for dynamic payment model
1299 function SURFBAR_CALCULATE_DYNAMIC_MIN_VALUE () {
1300         // Addon is zero by default
1301         $addon = 0;
1302
1303         // Percentage part
1304         $percent = abs(log(getConfig('surfbar_dynamic_percent') / 100 + 1));
1305
1306         // Get total users
1307         $totalUsers = GET_TOTAL_DATA('CONFIRMED', 'user_data', 'userid', 'status', true);
1308
1309         // Get online users
1310         $onlineUsers = SURFBAR_DETERMINE_TOTAL_ONLINE();
1311
1312         // Calculate addon
1313         $addon += abs(log($onlineUsers / $totalUsers + 1) * $percent * $totalUsers);
1314
1315         // Get total URLs
1316         $totalUrls = SURFBAR_GET_TOTAL_URLS('ACTIVE', '0');
1317
1318         // Get user's total URLs
1319         $userUrls = SURFBAR_GET_TOTAL_USER_URLS(0, 'ACTIVE');
1320
1321         // Calculate addon
1322         if ($totalUrls > 0) {
1323                 $addon += abs(log($userUrls / $totalUrls + 1) * $percent * $totalUrls);
1324         } else {
1325                 $addon += abs(log($userUrls / 1 + 1) * $percent * $totalUrls);
1326         }
1327
1328         // Return addon
1329         return $addon;
1330 }
1331
1332 // Calculate maximum value for dynamic payment model
1333 function SURFBAR_CALCULATE_DYNAMIC_MAX_VALUE () {
1334         // Addon is zero by default
1335         $addon = 0;
1336
1337         // Maximum value
1338         $max = log(2);
1339
1340         // Percentage part
1341         $percent = abs(log(getConfig('surfbar_dynamic_percent') / 100 + 1));
1342
1343         // Get total users
1344         $totalUsers = GET_TOTAL_DATA('CONFIRMED', 'user_data', 'userid', 'status', true);
1345
1346         // Calculate addon
1347         $addon += abs($max * $percent * $totalUsers);
1348
1349         // Get total URLs
1350         $totalUrls = SURFBAR_GET_TOTAL_URLS('ACTIVE', '0');
1351
1352         // Calculate addon
1353         $addon += abs($max * $percent * $totalUrls);
1354
1355         // Return addon
1356         return $addon;
1357 }
1358
1359 // Calculate dynamic lock
1360 function SURFBAR_CALCULATE_DYNAMIC_LOCK () {
1361         // Default lock is 30 seconds
1362         $addon = 30;
1363
1364         // Get online users
1365         $onlineUsers = SURFBAR_DETERMINE_TOTAL_ONLINE();
1366
1367         // Calculate lock
1368         $addon = abs(log($onlineUsers / $addon + 1));
1369
1370         // Return value
1371         return $addon;
1372 }
1373
1374 // "Getter" for lock ids array
1375 function SURFBAR_GET_LOCK_IDS () {
1376         // Prepare some arrays
1377         $IDs = array();
1378         $USE = array();
1379         $ignored = array();
1380
1381         // Get all id from locks within the timestamp
1382         $result = SQL_QUERY_ESC("SELECT id, url_id, UNIX_TIMESTAMP(last_surfed) AS last
1383 FROM
1384         {!_MYSQL_PREFIX!}_surfbar_locks
1385 WHERE
1386         userid=%s
1387 ORDER BY
1388         id ASC", array(getUserId()),
1389         __FUNCTION__, __LINE__);
1390
1391         // Load all entries
1392         while ($content = SQL_FETCHARRAY($result)) {
1393                 // Debug message
1394                 //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "next - lid={$content['id']},url={$content['url_id']},rest=".(time() - $last).'/'.SURFBAR_GET_SURF_LOCK()."", false);
1395
1396                 // Skip entries that are too old
1397                 if (($last > (time() - SURFBAR_GET_SURF_LOCK())) && (!in_array($content['url_id'], $ignored))) {
1398                         // Debug message
1399                         //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "okay - lid={$content['id']},url={$content['url_id']},last={$last}", false);
1400
1401                         // Add only if missing or bigger
1402                         if ((!isset($IDs[$content['url_id']])) || ($IDs[$content['url_id']] > $last)) {
1403                                 // Debug message
1404                                 //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "ADD - lid={$content['id']},url={$content['url_id']},last={$last}", false);
1405
1406                                 // Add this ID
1407                                 $IDs[$content['url_id']] = $last;
1408                                 $USE[$content['url_id']] = $content['id'];
1409                         } // END - if
1410                 } else {
1411                         // Debug message
1412                         //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "ignore - lid={$content['id']},url={$content['url_id']},last={$last}", false);
1413
1414                         // Ignore these old entries!
1415                         $ignored[] = $content['url_id'];
1416                         unset($IDs[$content['url_id']]);
1417                         unset($USE[$content['url_id']]);
1418                 }
1419         } // END - while
1420
1421         // Free result
1422         SQL_FREERESULT($result);
1423
1424         // Return array
1425         return $USE;
1426 }
1427
1428 // "Getter" for maximum random number
1429 function SURFBAR_GET_MAX_RANDOM ($UIDs, $add) {
1430         // Count max availabe entries
1431         $result = SQL_QUERY("SELECT sbu.id AS cnt
1432 FROM `{!_MYSQL_PREFIX!}_surfbar_urls` AS sbu
1433 LEFT JOIN `{!_MYSQL_PREFIX!}_surfbar_salts` AS sbs
1434 ON sbu.id=sbs.url_id
1435 LEFT JOIN `{!_MYSQL_PREFIX!}_surfbar_locks` AS l
1436 ON sbu.id=l.url_id
1437 WHERE sbu.userid NOT IN (".implode(',', $UIDs).") AND (sbu.views_allowed=0 OR (sbu.views_allowed > 0 AND sbu.views_max > 0)) AND sbu.`status`='ACTIVE'".$add."
1438 GROUP BY sbu.id", __FUNCTION__, __LINE__);
1439
1440         // Log last query
1441         //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "lastQuery=".getConfig('db_last_query')."|numRows=".SQL_NUMROWS($result)."|Affected=".SQL_AFFECTEDROWS()."", false);
1442
1443         // Fetch max rand
1444         $maxRand = SQL_NUMROWS($result);
1445
1446         // Free result
1447         SQL_FREERESULT($result);
1448
1449         // Return value
1450         return $maxRand;
1451 }
1452
1453 // Load all URLs of the current user and return it as an array
1454 function SURFBAR_GET_USER_URLS () {
1455         // Init array
1456         $URLs = array();
1457
1458         // Begin the query
1459         $result = SQL_QUERY_ESC("SELECT u.id, u.userid, u.url, u.views_total, u.views_max, u.views_allowed, u.status, UNIX_TIMESTAMP(u.registered) AS registered, UNIX_TIMESTAMP(u.last_locked) AS last_locked, u.lock_reason AS lock_reason
1460 FROM `{!_MYSQL_PREFIX!}_surfbar_urls` AS u
1461 WHERE u.userid=%s AND u.status != 'DELETED'
1462 ORDER BY u.id ASC",
1463         array(getUserId()), __FUNCTION__, __LINE__);
1464
1465         // Are there entries?
1466         if (SQL_NUMROWS($result) > 0) {
1467                 // Load all rows
1468                 while ($row = SQL_FETCHARRAY($result)) {
1469                         // Add the row
1470                         $URLs[$row['id']] = $row;
1471                 } // END - while
1472         } // END - if
1473
1474         // Free result
1475         SQL_FREERESULT($result);
1476
1477         // Return the array
1478         return $URLs;
1479 }
1480
1481 // "Getter" for member action array for given status
1482 function SURFBAR_getModeAction_ARRAY ($status) {
1483         // Init array
1484         $returnArray = array();
1485
1486         // Get all assigned actions
1487         $result = SQL_QUERY_ESC("SELECT action FROM `{!_MYSQL_PREFIX!}_surfbar_actions` WHERE `status`='%s' ORDER BY `id` ASC",
1488         array($status), __FUNCTION__, __LINE__);
1489
1490         // Some entries there?
1491         if (SQL_NUMROWS($result) > 0) {
1492                 // Load all actions
1493                 // @TODO This can be somehow rewritten
1494                 while ($content = SQL_FETCHARRAY($result)) {
1495                         $returnArray[] = $content['action'];
1496                 } // END - if
1497         } // END - if
1498
1499         // Free result
1500         SQL_FREERESULT($result);
1501
1502         // Return result
1503         return $returnArray;
1504 }
1505
1506 // Reload to configured stop page
1507 function SURFBAR_RELOAD_TO_STOP_PAGE ($page="stop") {
1508         // Internal or external?
1509         if ((getConfig('surfbar_pause_mode') == 'INTERNAL') || (getConfig('surfbar_pause_url') == '')) {
1510                 // Reload to internal page
1511                 redirectToUrl('surfbar.php?frame=' . $page);
1512         } else {
1513                 // Reload to external page
1514                 redirectToConfiguredUrl('surfbar_pause_url');
1515         }
1516 }
1517
1518 // Determine next id for surfbar or get data for given id, always call this before you call other
1519 // getters below this function!!!
1520 function SURFBAR_DETERMINE_NEXT_ID ($urlId = 0) {
1521         // Default is no id and no random number
1522         $nextId = 0;
1523         $randNum = 0;
1524
1525         // Is the ID set?
1526         if ($urlId == 0) {
1527                 // Get array with lock ids
1528                 $USE = SURFBAR_GET_LOCK_IDS();
1529
1530                 // Shall we add some URL ids to ignore?
1531                 $add = '';
1532                 if (count($USE) > 0) {
1533                         // Ignore some!
1534                         $add = " AND sbu.id NOT IN (";
1535                         foreach ($USE as $url_id => $lid) {
1536                                 // Add URL id
1537                                 $add .= $url_id.',';
1538                         } // END - foreach
1539
1540                         // Add closing bracket
1541                         $add = substr($add, 0, -1) . ')';
1542                 } // END - if
1543
1544                 // Determine depleted user account
1545                 $UIDs = SURFBAR_DETERMINE_DEPLETED_USERIDS();
1546
1547                 // Get maximum randomness factor
1548                 $maxRand = SURFBAR_GET_MAX_RANDOM($UIDs['uid'], $add);
1549
1550                 // If more than one URL can be called generate the random number!
1551                 if ($maxRand > 1) {
1552                         // Generate random number
1553                         $randNum = mt_rand(0, ($maxRand - 1));
1554                 } // END - if
1555
1556                 // And query the database
1557                 //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "randNum={$randNum},maxRand={$maxRand},surfLock=".SURFBAR_GET_SURF_LOCK()."", false);
1558                 $result = SQL_QUERY_ESC("SELECT sbu.id, sbu.userid, sbu.url, sbs.last_salt, sbu.views_total, sbu.views_max, sbu.views_allowed, UNIX_TIMESTAMP(l.last_surfed) AS last_surfed, sbu.fixed_reload
1559 FROM `{!_MYSQL_PREFIX!}_surfbar_urls` AS sbu
1560 LEFT JOIN `{!_MYSQL_PREFIX!}_surfbar_salts` AS sbs
1561 ON sbu.id=sbs.url_id
1562 LEFT JOIN `{!_MYSQL_PREFIX!}_surfbar_locks` AS l
1563 ON sbu.id=l.url_id
1564 WHERE sbu.userid NOT IN (".implode(',', $UIDs['uid']).") AND sbu.`status`='ACTIVE' AND (sbu.views_allowed=0 OR (sbu.views_allowed > 0 AND sbu.views_max > 0))".$add."
1565 GROUP BY sbu.id
1566 ORDER BY l.last_surfed ASC, sbu.id ASC
1567 LIMIT %s,1",
1568                 array($randNum), __FUNCTION__, __LINE__
1569                 );
1570         } else {
1571                 // Get data from specified id number
1572                 $result = SQL_QUERY_ESC("SELECT sbu.id, sbu.userid, sbu.url, sbs.last_salt, sbu.views_total, sbu.views_max, sbu.views_allowed, UNIX_TIMESTAMP(l.last_surfed) AS last_surfed, sbu.fixed_reload
1573 FROM `{!_MYSQL_PREFIX!}_surfbar_urls` AS sbu
1574 LEFT JOIN `{!_MYSQL_PREFIX!}_surfbar_salts` AS sbs
1575 ON sbu.id=sbs.url_id
1576 LEFT JOIN `{!_MYSQL_PREFIX!}_surfbar_locks` AS l
1577 ON sbu.id=l.url_id
1578 WHERE sbu.userid != %s AND sbu.`status`='ACTIVE' AND sbu.id=%s AND (sbu.views_allowed=0 OR (sbu.views_allowed > 0 AND sbu.views_max > 0))
1579 LIMIT 1",
1580                 array(getUserId(), bigintval($urlId)), __FUNCTION__, __LINE__
1581                 );
1582         }
1583
1584         // Is there an id number?
1585         //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "lastQuery=".getConfig('db_last_query')."|numRows=".SQL_NUMROWS($result)."|Affected=".SQL_AFFECTEDROWS()."", false);
1586         if (SQL_NUMROWS($result) == 1) {
1587                 // Load/cache data
1588                 //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "count(".count($GLOBALS['surfbar_cache']).") - BEFORE", false);
1589                 $GLOBALS['surfbar_cache'] = merge_array($GLOBALS['surfbar_cache'], SQL_FETCHARRAY($result));
1590                 //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "count(".count($GLOBALS['surfbar_cache']).") - AFTER", false);
1591
1592                 // Determine waiting time
1593                 $GLOBALS['surfbar_cache']['time'] = SURFBAR_DETERMINE_WAIT_TIME();
1594
1595                 // Is the last salt there?
1596                 if (is_null($GLOBALS['surfbar_cache']['last_salt'])) {
1597                         // Then repair it wit the static!
1598                         //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "last_salt - FIXED!", false);
1599                         $GLOBALS['surfbar_cache']['last_salt'] = '';
1600                 } // END - if
1601
1602                 // Fix missing last_surfed
1603                 if ((!isset($GLOBALS['surfbar_cache']['last_surfed'])) || (is_null($GLOBALS['surfbar_cache']['last_surfed']))) {
1604                         // Fix it here
1605                         //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "last_surfed - FIXED!", false);
1606                         $GLOBALS['surfbar_cache']['last_surfed'] = 0;
1607                 } // END - if
1608
1609                 // Get base/fixed reward and costs
1610                 $GLOBALS['surfbar_cache']['reward'] = SURFBAR_DETERMINE_REWARD();
1611                 $GLOBALS['surfbar_cache']['costs']  = SURFBAR_DETERMINE_COSTS();
1612                 //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "BASE/STATIC - reward=".SURFBAR_GET_REWARD()."|costs=".SURFBAR_GET_COSTS()."", false);
1613
1614                 // Only in dynamic model add the dynamic bonus!
1615                 if (getConfig('surfbar_pay_model') == 'DYNAMIC') {
1616                         // Calculate dynamic reward/costs and add it
1617                         $GLOBALS['surfbar_cache']['reward'] += SURFBAR_CALCULATE_DYNAMIC_ADD();
1618                         $GLOBALS['surfbar_cache']['costs']  += SURFBAR_CALCULATE_DYNAMIC_ADD();
1619                         //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "DYNAMIC+ - reward=".SURFBAR_GET_REWARD()."|costs=".SURFBAR_GET_COSTS()."", false);
1620                 } // END - if
1621
1622                 // Now get the id
1623                 $nextId = SURFBAR_GET_ID();
1624         } // END - if
1625
1626         // Free result
1627         SQL_FREERESULT($result);
1628
1629         // Return result
1630         //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "nextId={$nextId}", false);
1631         return $nextId;
1632 }
1633
1634 // -----------------------------------------------------------------------------
1635 // PLEASE DO NOT ADD ANY OTHER FUNCTIONS BELOW THIS LINE IF THEY DON'T "WRAP"
1636 // THE $GLOBALS['surfbar_cache'] ARRAY!
1637 // -----------------------------------------------------------------------------
1638
1639 // Initializes the surfbar
1640 function SURFBAR_INIT () {
1641         // Init cache array
1642         $GLOBALS['surfbar_cache'] = array();
1643 }
1644
1645 // Private getter for data elements
1646 function SURFBAR_GET_DATA ($element) {
1647         //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "element={$element}", false);
1648
1649         // Default is null
1650         $data = null;
1651
1652         // Is the entry there?
1653         if (isset($GLOBALS['surfbar_cache'][$element])) {
1654                 // Then take it
1655                 $data = $GLOBALS['surfbar_cache'][$element];
1656         } else { // END - if
1657                 print("<pre>");
1658                 print_r($GLOBALS['surfbar_cache']);
1659                 print("</pre>");
1660                 debug_report_bug();
1661         }
1662
1663         // Return result
1664         //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "element[$element]={$data}", false);
1665         return $data;
1666 }
1667
1668 // Getter for reward from cache
1669 function SURFBAR_GET_REWARD () {
1670         // Get data element and return its contents
1671         return SURFBAR_GET_DATA('reward');
1672 }
1673
1674 // Getter for costs from cache
1675 function SURFBAR_GET_COSTS () {
1676         // Get data element and return its contents
1677         return SURFBAR_GET_DATA('costs');
1678 }
1679
1680 // Getter for URL from cache
1681 function SURFBAR_GET_URL () {
1682         // Get data element and return its contents
1683         return SURFBAR_GET_DATA('url');
1684 }
1685
1686 // Getter for salt from cache
1687 function SURFBAR_GET_SALT () {
1688         // Get data element and return its contents
1689         return SURFBAR_GET_DATA('salt');
1690 }
1691
1692 // Getter for id from cache
1693 function SURFBAR_GET_ID () {
1694         // Get data element and return its contents
1695         return SURFBAR_GET_DATA('id');
1696 }
1697
1698 // Getter for userid from cache
1699 function SURFBAR_GET_USERID () {
1700         // Get data element and return its contents
1701         return SURFBAR_GET_DATA('userid');
1702 }
1703
1704 // Getter for user reload locks
1705 function SURFBAR_GET_USER_LOCKS () {
1706         // Get data element and return its contents
1707         return SURFBAR_GET_DATA('user_locks');
1708 }
1709
1710 // Getter for reload time
1711 function SURFBAR_GET_RELOAD_TIME () {
1712         // Get data element and return its contents
1713         return SURFBAR_GET_DATA('time');
1714 }
1715
1716 // Getter for allowed views
1717 function SURFBAR_GET_VIEWS_ALLOWED () {
1718         // Get data element and return its contents
1719         return SURFBAR_GET_DATA('views_allowed');
1720 }
1721
1722 // Getter for fixed reload
1723 function SURFBAR_GET_FIXED_RELOAD () {
1724         // Get data element and return its contents
1725         return SURFBAR_GET_DATA('fixed_reload');
1726 }
1727
1728 // Getter for surf lock
1729 function SURFBAR_GET_SURF_LOCK () {
1730         // Get data element and return its contents
1731         return SURFBAR_GET_DATA('surf_lock');
1732 }
1733
1734 // Getter for new status
1735 function SURFBAR_GET_NEW_STATUS () {
1736         // Get data element and return its contents
1737         return SURFBAR_GET_DATA('new_status');
1738 }
1739
1740 // [EOF]
1741 ?>