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