Function generateGenderSelectionBox() introduced, some cleanups:
[mailer.git] / inc / libs / rallye_functions.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 08/22/2004 *
4  * ===================                          Last change: 08/24/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : rallye_functions.php                             *
8  * -------------------------------------------------------------------- *
9  * Short description : Special functions for rallye extension           *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Spezielle Funktion fuer rallye-Erweiterung       *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
20  * For more information visit: http://www.mxchange.org                  *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
40         die();
41 } // END - if
42
43 // Auto-start referal rallyes
44 function autostartReferalRallyes ($result) {
45         // Load all rallyes (usally we have only one rallye active per time!
46         list($id, $title, $start, $end, $notify, $min_users, $min_prices) = SQL_FETCHROW($result);
47
48         // Free result
49         SQL_FREERESULT($result);
50
51         // Set notified to Y
52         SQL_QUERY_ESC("UPDATE
53         `{?_MYSQL_PREFIX?}_rallye_data`
54 SET
55         `notified`='Y'
56 WHERE
57         `id`=%s
58 LIMIT 1",
59                 array(bigintval($id)), __FUNCTION__, __LINE__);
60
61         // Transfer all neccessary data to the $content array
62         $content['userid_cnt'] = getTotalConfirmedUser();
63         $content['start']      = generateDateTime($start, 2);
64         $content['end']        = generateDateTime($end  , 2);
65         $content['now_t']      = generateDateTime(time(), 2);
66         $content['title']      = $title;
67         $content['id']         = $id;  // id for the rallye details link
68
69         // Determine min_users and min_prices
70         $content['min_users']  = determineReferalRallyeMinimumUsers($min_users);
71         $content['min_prices'] = determineReferalRallyeMinimumPrices($min_prices);
72
73         // Load prices
74         $content['prices'] = addReferalRallyePrices($id);
75
76         // Query all users
77         $result_user = SQL_QUERY("SELECT
78         `userid`
79 FROM
80         `{?_MYSQL_PREFIX?}_user_data`
81 WHERE
82         `status`='CONFIRMED'
83 ORDER BY
84         `userid` ASC", __FUNCTION__, __LINE__);
85
86         // Let's begin with the userids...
87         while ($row = SQL_FETCHARRAY($result_user)) {
88                 // Merge both arrays
89                 $content = merge_array($content, $row);
90
91                 $un = false;
92
93                 // Get refs by userid
94                 $count = getReferalRallyeRefsCount($content['userid']);
95                 if (empty($count)) $count = '0'; // Added prevent some unknown troubles... :-?
96
97                 // Check if line is already included...
98                 $result_ref = SQL_QUERY_ESC("SELECT
99         `id`
100 FROM
101         `{?_MYSQL_PREFIX?}_rallye_users`
102 WHERE
103         `rallye_id`=%s AND
104         `userid`=%s
105 LIMIT 1",
106                         array(bigintval($id), bigintval($content['userid'])), __FUNCTION__, __LINE__);
107                 if (SQL_HASZERONUMS($result_ref)) {
108
109                         // Add userid and his ref count to table
110                         $result_ref = SQL_QUERY_ESC("SELECT 
111         SUM(p.points) AS `points`
112 FROM
113         `{?_MYSQL_PREFIX?}_user_points` AS p
114 LEFT JOIN
115         `{?_MYSQL_PREFIX?}_user_data` AS d
116 ON
117         p.userid=d.userid
118 WHERE
119         d.`status`='CONFIRMED' AND
120         d.max_mails > 0 AND
121         d.mails_confirmed >= {?ref_payout?} AND
122         p.ref_depth=1 AND
123         p.points > 0 AND
124         d.userid=%s",
125                                 array(bigintval($content['userid'])), __FUNCTION__, __LINE__);
126
127                         // Get points
128                         list($cpoints) = SQL_FETCHROW($result_ref);
129
130                         // Free result
131                         SQL_FREERESULT($result_ref);
132
133                         if (empty($cpoints)) $cpoints = '0.00000';
134
135                         // Add info line
136                         SQL_QUERY_ESC("INSERT INTO
137         `{?_MYSQL_PREFIX?}_rallye_users`
138 (`rallye_id`, `userid`, `refs`, `curr_points`)
139         VALUES
140 (%s, %s, %s, %s)",
141                                 array(
142                                         bigintval($id),
143                                         bigintval($content['userid']),
144                                         bigintval($count),
145                                         $cpoints
146                                 ), __FUNCTION__, __LINE__);
147                         $un = true;
148                 } // END - if
149
150                 // Free memory
151                 SQL_FREERESULT($result_ref);
152
153                 // Ignored but for the template required refs (made before start of rallye)
154                 $content['refs']  = $count;
155
156                 // Shall I notify this member?
157                 if (($notify == 'Y') && ($un)) {
158                         // Load email template and send it to the user
159                         $message = loadEmailTemplate('member_rallye_notify', $content, $content['userid']);
160                         sendEmail($content['userid'], getMaskedMessage('RALLYE_MEMBER_NOTIFY', $title), $message);
161                 } // END - if
162         } // END - while
163
164         // Choose the right admin template
165         $templ = 'admin_rallye_no_notify';
166         if ($notify == 'Y') $templ = 'admin_rallye_notify';
167
168         // Send email to admin
169         sendAdminNotification(getMaskedMessage('RALLYE_ADMIN_NOTIFY', $title), $templ, $prices);
170
171         // Free memory
172         SQL_FREERESULT($result_user);
173 }
174
175 //
176 function addReferalRallyePrices ($rallye, $mode = 'email') {
177         // Output mode
178         switch($mode) {
179                 case 'email': $mode = "\n";     break;
180                 case 'html' : $mode = '<br />'; break;
181         } // END - switch
182
183         // Load prices
184         $result_prices = SQL_QUERY_ESC("SELECT
185         `price_level`, `points`, `info`
186 FROM
187         `{?_MYSQL_PREFIX?}_rallye_prices`
188 WHERE
189         `rallye_id`=%s
190 ORDER BY
191         `price_level` ASC",
192                 array($rallye), __FUNCTION__, __LINE__);
193
194         // Entries found?
195         if (!SQL_HASZERONUMS($result_prices)) {
196                 // Load prices
197                 if ($mode == "\n") $prices = '{--RALLYE_MEMBER_PRICES_ADDED--}:' . $mode . '------------------------------' . $mode;
198
199                 $prices = '';
200                 while ($content = SQL_FETCHARRAY($result_prices)) {
201                         $prices .= $content['price_level']. '{--RALLYE_PRICE--}: ';
202                         if (!empty($content['info'])) {
203                                 $prices .= $content['info'];
204                         } else {
205                                 $prices .= $content['points'] . ' {?POINTS?}';
206                         }
207                         $prices .= '' . $mode;
208                 } // END - if
209
210                 // Free memory
211                 SQL_FREERESULT($result_prices);
212         } else {
213                 // No prices???
214                 $prices = getMaskedMessage('RALLYE_MEMBER_NO_PRICES', $mode);
215         }
216
217         // Add last line for email mode
218         if ($mode == "\n") $prices .= '------------------------------';
219
220         // Return price list
221         return $prices;
222 }
223
224 //
225 function addReferalRallyeTopUsers ($rallye, $default=0) {
226         // Init variables
227         $min_users = 0; $min_prices = 0;
228
229         // First check how many prices are set
230         $prices = countSumTotalData($rallye, 'rallye_prices', 'id', 'rallye_id', true);
231
232         // And load only limited users
233         $result = SQL_QUERY_ESC("SELECT
234         u.userid, u.refs, u.curr_points, rd.min_users, rd.min_prices
235 FROM
236         `{?_MYSQL_PREFIX?}_rallye_users` AS u
237 LEFT JOIN
238         `{?_MYSQL_PREFIX?}_refsystem` AS r
239 ON
240         u.userid=r.userid
241 LEFT JOIN
242         `{?_MYSQL_PREFIX?}_rallye_data` AS rd
243 ON
244         u.rallye_id=rd.id
245 WHERE
246         u.`rallye_id`=%s AND
247         r.counter > 0
248 ORDER BY
249         u.refs DESC",
250                 array(bigintval($rallye)), __FUNCTION__, __LINE__);
251
252         // Load users
253         $DATA = array(
254                 'userid'  => array(),
255                 'ref'     => array(),
256                 'cpoints' => array()
257         );
258
259         // Load all users
260         while ($content = SQL_FETCHARRAY($result)) {
261                 // Get current refs
262                 $count = getReferalRallyeRefsCount($content['userid'], $content['refs']);
263
264                 // Points of ref's
265                 $result_ref = SQL_QUERY_ESC("SELECT
266         p.points
267 FROM
268         `{?_MYSQL_PREFIX?}_user_points` AS p
269 LEFT JOIN
270         `{?_MYSQL_PREFIX?}_user_data` AS d
271 ON
272         p.userid=d.userid
273 WHERE
274         d.userid=%s AND
275         d.`status`='CONFIRMED' AND
276         p.ref_depth=1 AND
277         d.max_mails > 0 AND
278         d.mails_confirmed >= {?ref_payout?}
279 LIMIT 1",
280                         array(bigintval($content['userid'])), __FUNCTION__, __LINE__);
281
282                 // Get points
283                 list($refpoints) = SQL_FETCHROW($result_ref);
284
285                 // Free result
286                 SQL_FREERESULT($result_ref);
287
288                 if (empty($refpoints)) $refpoints = '0';
289
290                 // Init userid for list
291                 $userid = '---';
292
293                 // List only users with at least one ref!
294                 //* DEBUG: */ debugOutput('*'.$count.'/'.$content['userid'].'/'.$content['curr_points'].'/'.$refpoints.'*');
295                 if (($count > 0) && ($refpoints > $content['curr_points'])) {
296                         $userid = $content['userid'];
297                 } else {
298                         $count = '';
299                 }
300
301                 // Save values to array
302                 $DATA['userid'][]   = $userid;
303                 $DATA['ref'][]      = $count;
304                 $DATA['cpoints'][]  = $content['curr_points'];
305                 $min_users  = $content['min_users'];
306                 $min_prices = $content['min_prices'];
307         } // END - while
308
309         // Free memory
310         SQL_FREERESULT($result);
311
312         // Sort whole array
313         array_pk_sort($DATA, array('ref', 'cpoints'), 0, 1, true);
314
315         // Generate table
316         $OUT = '';
317         for ($idx = '0'; $idx < $prices; $idx++) {
318                 // Prepare marking of default (maybe current user's) id
319                 $start = ''; $end = '';
320                 if (($DATA['userid'][$idx] == $default) && ($default > 0)) {
321                         $start = '<strong>';
322                         $end   = '</strong>';
323                 } // END - if
324
325                 // Prepare content
326                 $content = array(
327                         'idx'    => ($idx + 1),
328                         'start'  => $start,
329                         'end'    => $end,
330                         'userid' => $DATA['userid'][$idx],
331                         'ref'    => $DATA['ref'][$idx],
332                         'infos'  => ''
333                 );
334
335                 // Load row template and switch color
336                 $OUT .= loadTemplate('guest_rallye_row', true, $content);
337         } // END - for
338
339         // Add min_prices/users
340         $content['rows']       = $OUT;
341         $content['min_prices'] = bigintval($min_prices);
342         $content['min_users']  = bigintval($min_users);
343
344         // And finnally return the output
345         return loadTemplate('guest_rallye', true, $content);
346 }
347
348 // Run this function only when a new member has confirmed his email address!
349 function addUserToReferalRallye ($userid, $content = array()) {
350         $add = '';
351
352         // Updated extension?
353         if (isExtensionInstalledAndNewer('rallye', '0.2.0')) {
354                 $add .= ', `min_users`, `min_prices`';
355         } // END - if
356
357         // Check for an auto-add rallye
358         $result = SQL_QUERY("SELECT
359         `id`, `title`, `start_time`, `end_time`, `send_notify`".$add."
360 FROM
361         `{?_MYSQL_PREFIX?}_rallye_data`
362 WHERE
363         `is_active`='Y' AND
364         `notified`='Y' AND
365         `auto_add_new_user`='Y' AND
366         `expired`='N'
367 LIMIT 1", __FUNCTION__, __LINE__);
368         if (SQL_NUMROWS($result) == 1) {
369                 // Init variables
370                 $min_users = '0'; $min_prices = '0';
371
372                 // Load data
373                 if (isExtensionInstalledAndNewer('rallye', '0.2.0')) {
374                         list($id, $title, $start, $end, $notify, $min_users, $min_prices) = SQL_FETCHROW($result);
375                 } else {
376                         list($id, $title, $start, $end, $notify) = SQL_FETCHROW($result);
377                 }
378
379                 // Free result
380                 SQL_FREERESULT($result);
381
382                 if ($notify == 'Y') {
383                         // Transfer all neccessary data to $content array
384                         $content['start'] = generateDateTime($start, 2);
385                         $content['end']   = generateDateTime($end  , 2);
386                         $content['now_t'] = generateDateTime(time(), 2);
387                         $content['title'] = $title;
388                         $content['id']    = $id;  // id for the rallye details link
389                         $content['ref']   = '0';
390                         $content['refs']  = countSumTotalData($userid, 'user_data', 'userid', 'refid', true);
391
392                         // Load prices
393                         $content['prices'] = addReferalRallyePrices($id);
394
395                         // Determine min_users/prices tring
396                         $content['min_users']  = determineReferalRallyeMinimumUsers($min_users);
397                         $content['min_prices'] = determineReferalRallyeMinimumPrices($min_prices);
398
399                         // Send notification to member
400                         $message = loadEmailTemplate('member_rallye_notify', $content, $userid);
401                         sendEmail($userid, getMaskedMessage('RALLYE_MEMBER_NOTIFY', $title), $message);
402                 } // END - if
403
404                 // Check if line is already included...
405                 $result = SQL_QUERY_ESC("SELECT
406         `id`
407 FROM
408         `{?_MYSQL_PREFIX?}_rallye_users`
409 WHERE
410         `rallye_id`=%s AND
411         `userid`=%s
412 LIMIT 1",
413                         array(
414                                 bigintval($id),
415                                 bigintval($userid)
416                         ), __FUNCTION__, __LINE__);
417
418                 // Is this user added?
419                 if (SQL_HASZERONUMS($result)) {
420                         // Add userid and his ref count to table
421                         SQL_QUERY_ESC("INSERT INTO
422         `{?_MYSQL_PREFIX?}_rallye_users`
423 (`rallye_id`, `userid`, `refs`)
424         VALUES
425 (%s,%s,0)",
426                                 array(
427                                         bigintval($id),
428                                         bigintval($userid)
429                                 ), __FUNCTION__, __LINE__);
430                 } // END - if
431
432                 // Free memory
433                 SQL_FREERESULT($result);
434         } // END - if
435 }
436
437 //
438 function markReferalRallyesAsExpired ($result) {
439         global $DATA;
440
441         // Load rallye data
442         list($id, $title, $start, $end, $notify, $min_users, $min_prices) = SQL_FETCHROW($result);
443
444         // Free result
445         SQL_FREERESULT($result);
446
447         // Init array
448         $DATA = array();
449         $count = '0';
450         $users = array();
451         $DATA['title']  = $title;
452         $DATA['start']  = generateDateTime($start, 1);
453         $DATA['end']    = generateDateTime($end  , 1);
454         $DATA['now_t']  = generateDateTime(time(), 1);
455
456         // Load users array (!) with assigned prices
457         $prices = getArrayFromReferalRallyeUsers($id);
458
459         // Just count...
460         $total = '0';
461         foreach ($prices['userid'] as $key => $userid) {
462                 // Check status
463                 //   active = 1: account is still confirmed
464                 //   active = 0: account is deleted or locked
465                 $active = countSumTotalData($userid, 'user_data', 'userid', 'userid', true, " AND `status`='CONFIRMED'");
466
467                 $prices['active'][$key] = $active;
468
469                 // Allow valid and active users with at least one ref to get points
470                 if ((isValidUserId($userid)) && ($prices['ref'][$key] > 0) && ($active == 1) && ($prices['cpoints'][$key] > 0)) {
471                         $total++;
472                 } // END - if
473         } // END - foreach
474
475         if (($total < $min_prices) || ($total == '0')) {
476                 // Do not end this rallye!
477                 unset($DATA);
478                 return;
479         } // END - if
480
481         // Expire rallye
482         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_rallye_data` SET `expired`='Y' WHERE `id`=%s LIMIT 1",
483                 array(bigintval($id)), __FUNCTION__, __LINE__);
484
485         // Run array through (by userid is the most important 2nd-level-array)
486         foreach ($prices['userid'] as $key => $userid) {
487                 // Allow valid and active users with at least one ref to get points
488                 if ((isValidUserId($userid)) && ($prices['ref'][$key] > 0) && ($prices['active'][$key] == 1) && ($prices['cpoints'][$key] > 0)) {
489                         // Transfer data to array for the mail template
490                         $DATA['level']  = $prices['level'][$key];
491                         $DATA['points'] = $prices['points'][$key];
492                         $DATA['info']   = $prices['info'][$key];
493                         $DATA['ref']    = $prices['ref'][$key];
494
495                         // Default is other
496                         $winnerLevel = 'other';
497
498                         // Determine winner level
499                         if ($DATA['level'] == 1) {
500                                 // The winner!
501                                 $winnerLevel = '_gold';
502                         } elseif ($DATA['level'] == 2) {
503                                 // The vice winner!
504                                 $winnerLevel = '_silver';
505                         } elseif ($DATA['level'] == 3) {
506                                 // The bronce winner
507                                 $winnerLevel = '_bronce';
508                         }
509
510                         if ($DATA['points'] > 0) {
511                                 // Add points directly to user's account
512                                 addPointsDirectly('rallye_winner' . $winnerLevel, $userid, $DATA['points']);
513                         } // END - if
514
515                         if ($notify == 'Y') {
516                                 // Prepare infos for the mail template
517                                 if (!empty($DATA['info'])) {
518                                         // Take direct infos
519                                         $DATA['infos'] = $DATA['info'];
520                                 } else {
521                                         // Take points
522                                         $DATA['infos'] = $DATA['points'] . ' {?POINTS?}';
523                                 }
524
525                                 // Add suffix to template name
526                                 $template = 'member_rallye_expired' . $winnerLevel;
527
528                                 // Load template
529                                 $message = loadEmailTemplate($template, $DATA, $userid);
530                                 sendEmail($userid, getMaskedMessage('RALLYE_MEMBER_EXPIRED_SUBJECT', $DATA['level']), $message);
531                         } // END - if
532
533                         // Count userid
534                         $count++;
535                         $users['userid'][$userid] = $userid;
536                         $users['poi'][$userid] = $DATA['infos'];
537                 } // END - if
538         } // END - foreach
539
540         // Select template depending on notfication is switch on / off
541         if ($notify == 'Y') {
542                 $templ = 'admin_rallye_expired';
543         } elseif (is_array($users['userid'])) {
544                 $templ = 'admin_rallye_expired_no';
545                 $count = getReferalRallyeUserDataFromArray($users);
546         }
547
548         // Send mail to admin
549         sendAdminNotification(getMaskedMessage('RALLYE_ADMIN_EXPIRED_SUBJECT', $title), $templ, $count);
550
551         // Add task (we ignore the task id here)
552         createNewTask('{--RALLYE_ADMIN_EXPIRED--}: ' . $title, '{--RALLYE_ADMIN_EXPIRED_TEXT--}', 'RALLYE_EXPIRED');
553 }
554
555 //
556 function getReferalRallyeUserDataFromArray ($userIds) {
557         // Implode user ids
558         $userid_string = implode(',', $userIds['userid']);
559
560         // Init result string
561         $ret = '';
562
563         // Load users
564         $result = SQL_QUERY_ESC("SELECT
565         `userid`, `gender`, `surname`, `family`, `email`
566 FROM
567         `{?_MYSQL_PREFIX?}_user_data`
568 WHERE
569         `userid` IN(%s) AND
570         `status`='CONFIRMED'
571 ORDER BY
572         `userid` ASC
573 LIMIT %s",
574                 array(
575                         $userid_string,
576                         count($userIds)
577                 ), __FUNCTION__, __LINE__);
578         while ($content = SQL_FETCHARRAY($result)) {
579                 // Construct the message masked and add it
580                 $ret .= sprintf("{%%pipe,translateGender=%s%} %s %s (%s) - %s\n",
581                         $content['gender'],
582                         $content['surname'],
583                         $content['family'],
584                         $content['email'],
585                         $userIds['poi'][$content['userid']]
586                 );
587         } // END - while
588
589         // Return result
590         return substr($ret, 0, -1);
591 }
592
593 //
594 function getArrayFromReferalRallyePrices ($rallye) {
595         // Init multi array
596         $prices = array(
597                 'level'  => array(),
598                 'points' => array(),
599                 'info'   => array()
600         );
601
602         // Load prices
603         $result = SQL_QUERY_ESC("SELECT
604         `price_level`, `points`, `info`
605 FROM
606         `{?_MYSQL_PREFIX?}_rallye_prices`
607 WHERE
608         `rallye_id`=%s
609 ORDER BY
610         `price_level` ASC",
611                 array(bigintval($rallye)), __FUNCTION__, __LINE__);
612
613         // Transfer elements
614         while ($content = SQL_FETCHARRAY($result)) {
615                 $prices['level'][]  = $content['price_level'];
616                 $prices['points'][] = $content['points'];
617                 $prices['info'][]   = $content['info'];
618         } // END - while
619
620         // Free memory
621         SQL_FREERESULT($result);
622
623         // Return array
624         return $prices;
625 }
626
627 //
628 function getArrayFromReferalRallyeUsers ($rallye) {
629         // Fix zero points to 0.00000
630         if (getConfig('ref_payout') == '0') setConfigEntry('ref_payout', '0.00000');
631
632         // Init multi array
633         $users = array(
634                 'userid'  => array(),
635                 'ref'     => array(),
636                 'cpoints' => array(),
637         );
638
639         // Load users                          userid    old   points earned
640         $result_user = SQL_QUERY_ESC("SELECT `userid`, `refs`, `curr_points` FROM `{?_MYSQL_PREFIX?}_rallye_users` WHERE `rallye_id`=%s ORDER BY `userid` ASC",
641                 array(bigintval($rallye)), __FUNCTION__, __LINE__);
642         while ($content = SQL_FETCHARRAY($result_user)) {
643                 // Load current ref count
644                 $count = getReferalRallyeRefsCount($content['userid'], $content['refs']);
645
646                 // Points of ref's
647                 $result_ref = SQL_QUERY_ESC("SELECT
648         SUM(p.points) AS `points`
649 FROM
650         `{?_MYSQL_PREFIX?}_user_points` AS p
651 LEFT JOIN
652         `{?_MYSQL_PREFIX?}_user_data` AS d
653 ON
654         p.userid=d.userid
655 WHERE
656         d.`status`='CONFIRMED' AND
657         d.max_mails > 0 AND
658         d.mails_confirmed >= {?ref_payout?} AND
659         p.ref_depth=1 AND
660         p.points > 0 AND
661         d.userid=%s
662 LIMIT 1",
663                         array(bigintval($content['userid'])), __FUNCTION__, __LINE__);
664
665                 // Get points
666                 list($refpoints) = SQL_FETCHROW($result_ref);
667
668                 // Free result
669                 SQL_FREERESULT($result_ref);
670
671                 // Fix empty refpoints
672                 if (empty($refpoints)) $refpoints = '0';
673
674                 // Store calculated new refs to array
675                 $users['userid'][]  = $content['userid'];
676                 $users['ref'][]     = abs($count - $content['refs']);
677                 $users['cpoints'][] = $refpoints - $content['curr_points'];
678         } // END - while
679
680         // Free memory
681         SQL_FREERESULT($result_user);
682
683         // Sort array for refs (descending)
684         array_pk_sort($users, array('ref', 'cpoints'), 0, 1, true);
685
686         // Load prices array (!)
687         $prices = getArrayFromReferalRallyePrices($rallye);
688
689         // Merge users into prices
690         foreach ($prices['level'] as $k => $level) {
691                 // We only need to check one element in $users, see above while() block
692                 if (isset($users['userid'][$k])) {
693                         $prices['userid'][$k]  = $users['userid'][$k];
694                         $prices['ref'][$k]     = $users['ref'][$k];
695                         $prices['cpoints'][$k] = $users['cpoints'][$k];
696                 } // END - if
697         } // END - foreach
698
699         // Return completed array
700         return $prices;
701 }
702
703 // @TODO This function does not load min_users, min_prices, please encapsulate loading rallye data with e.g. getRallyeDataFromId()
704 function addReferalRallyeWinners ($rallye, $default=0) {
705         // First check how many prices are set
706         $prices = countSumTotalData(bigintval($rallye), 'rallye_prices', 'id', 'rallye_id', true);
707
708         // Load data
709         $DATA = getArrayFromReferalRallyeUsers($rallye);
710
711         // Generate table
712         $OUT = '';
713         for ($idx = '0'; $idx < $prices; $idx++) {
714                 // Check status
715                 //   active = 1: account is still confirmed
716                 //   active = 0: account is deleted or locked
717                 $active = countSumTotalData($DATA['userid'][$idx], 'user_data', 'userid', 'userid', true, " AND `status`='CONFIRMED'");
718
719                 if ((empty($DATA['ref'][$idx])) || ($DATA['ref'][$idx] == '0') || ($active == '0') || ('' . round($DATA['cpoints'][$idx]) . '' == '0') || (empty($DATA['cpoints'][$idx]))) {
720                         // Allow valid and active users with at least one ref to get points
721                         $DATA['ref'][$idx]   = '---';
722                         $DATA['userid'][$idx]   = '---';
723                 } // END - if
724
725                 if (!empty($DATA['info'][$idx])) {
726                         // Take direct infos
727                         $DATA['infos'][$idx] = $DATA['info'][$idx];
728                 } else {
729                         // Take ppints
730                         $DATA['infos'][$idx] = $DATA['points'][$idx] . ' {?POINTS?}';
731                 }
732
733                 // Prepare marking of default (maybe current user's) id
734                 $start = ''; $end = '';
735                 if (($DATA['userid'][$idx] == $default) && ($default > 0)) {
736                         $start = '<strong>';
737                         $end   = '</strong>';
738                 } // END - if
739
740                 // Prepare content
741                 $content = array(
742                         'idx'    => ($idx + 1),
743                         'userid' => $DATA['userid'][$idx],
744                         'ref'    => $DATA['ref'][$idx],
745                         'infos'  => $DATA['infos'][$idx],
746                         'start'  => $start,
747                         'end'    => $end
748                 );
749
750                 // Load row template
751                 $OUT .= loadTemplate('guest_rallye_row', true, $content);
752         } // END - for
753
754         // Prepare content
755         $content = array(
756                 'rows'       => $OUT,
757                 'min_users'  => '???',
758                 'min_prices' => '???'
759         );
760
761         // Load main template and finnally return the output
762         return loadTemplate('guest_rallye', true, $content);
763 }
764
765 //
766 function purgeExpiredReferalRallyes () {
767         // Check for expired rallyes
768         $EXPIRE = 3; // @TODO The hard-coded value...
769         $result_rallye = SQL_QUERY_ESC("SELECT
770         `id`, `title`, `start_time`, `end_time`
771 FROM
772         `{?_MYSQL_PREFIX?}_rallye_data`
773 WHERE
774         `end_time` <= (UNIX_TIMESTAMP() - {?ONE_DAY?} - %s) AND
775         `expired`='Y'",
776                 array($EXPIRE), __FUNCTION__, __LINE__);
777
778         if (!SQL_HASZERONUMS($result_rallye)) {
779                 // Init SQLs
780                 initSqls();
781
782                 // Expire found rallyes and notify admin
783                 while ($content = SQL_FETCHARRAY($result_rallye)) {
784                         // Prepare data for mail template
785                         $content['start_time']  = generateDateTime($content['start_time'], 1);
786                         $content['end_time']    = generateDateTime($content['end_time']  , 1);
787                         $content['now_time']    = generateDateTime(time(), 1);
788
789                         // Send mail to admin
790                         sendAdminNotification(getMaskedMessage('RALLYE_ADMIN_PURGED_SUBJECT', $content['title']), 'admin_rallye_purged', $content);
791
792                         // Purge whole rallye
793                         addSql(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_rallye_data` WHERE `id`=%s LIMIT 1",
794                                 array(bigintval($content['id'])), __FUNCTION__, __LINE__, false));
795                         addSql(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_rallye_prices` WHERE `rallye_id`=%s LIMIT 1",
796                                 array(bigintval($content['id'])), __FUNCTION__, __LINE__, false));
797                         addSql(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_rallye_users` WHERE `rallye_id`=%s LIMIT 1",
798                                 array(bigintval($content['id'])), __FUNCTION__, __LINE__, false));
799
800                         // Add task (we ignore the task id here
801                         createNewTask('{--RALLYE_ADMIN_PURGED--}: ' . $content['title'], '{--RALLYE_ADMIN_PURGED_TEXT--}', 'RALLYE_PURGED');
802                 } // END - while
803
804                 // Run all SQLs
805                 runFilterChain('run_sqls');
806         } // END - if
807
808         // Free memory
809         SQL_FREERESULT($result_rallye);
810 }
811
812 //
813 function addReferalRallyeTemplateSelection ($name = 'template', $default = '') {
814         // Init variables
815         $OUT = '';
816         $ral = array();
817
818         // Check templates directory
819         $basePath = sprintf("templates/%s/html/rallye/", getLanguage());
820
821         // Read the directory
822         $templates = getArrayFromDirectory($basePath, 'rallye_', false, true, array(), '.tpl');
823
824         // And walk through
825         foreach ($templates as $read) {
826                 // Cut prefix and extension away
827                 $read = substr($read, 7, strpos($read, '.') - 7);
828
829                 // Accept only template names between 1 and 255 chars length
830                 if ((strlen($read) < 256) && (!empty($read))) {
831                         // Valid entry found
832                         $ral[$read] = $read;
833                 } else {
834                         // Log invalid
835                         logDebugMessage(__FUNCTION__, __LINE__, sprintf("WARNING: Template %s not used.", $read));
836                 }
837         } // END - foreach
838
839         // Do we have found templates which we can link with the new rallye?
840         if (!empty($ral[0])) {
841                 // Generate selection box for all found templates
842                 $OUT  = '<select class="form_select" name="' . $name . '" size="1">';
843                 $OUT .= generateOptionList('/ARRAY/', array_keys($ral), array_values($ral), $default, '', 'none');
844                 $OUT .= '</select>';
845         } else {
846                 // No rallye templates found
847                 $OUT = '{--RALLYE_NO_TEMPLATES_FOUND--}';
848         }
849
850         // Return selection
851         return $OUT;
852 }
853
854 // @TODO Please document this function
855 function getReferalRallyeRefsCount ($currUserid, $old = '0') {
856         // Check current refs
857         if (isExtensionInstalledAndNewer('cache', '0.1.2')) {
858                 // Get refs from cache
859                 $count = '0';
860                 foreach ($GLOBALS['cache_array']['refsystem']['userid'] as $id => $userid) {
861                         // Do we have a ref for this user?
862                         //* DEBUG: */ debugOutput('id='.$id.',userid='.$userid.',userid='.$userid.',old='.$old.',level='.$GLOBALS['cache_array']['refsystem']['level'][$id]);
863                         if (($currUserid == $userid) && ($GLOBALS['cache_array']['refsystem']['level'][$id] == 1)) {
864                                 //* DEBUG: */ debugOutput('userid matches!');
865                                 foreach ($GLOBALS['cache_array']['refdepths']['level'] as $level) {
866                                         if (($level == $GLOBALS['cache_array']['refsystem']['level'][$id]) && ($level == 1)) {
867                                                 // Level does exist so abort here
868                                                 $count = $GLOBALS['cache_array']['refsystem']['counter'][$id];
869                                                 //* DEBUG: */ debugOutput('*'.$userid.'/'.$count.'*');
870                                                 break;
871                                         } elseif ($level > 1) {
872                                                 // Not interesting here...
873                                                 break;
874                                         }
875                                 } // END - foreach
876
877                                 // Abort also here!
878                                 if ($count > 0) break;
879                         } // END - if
880                 } // END - foreach
881
882                 //* DEBUG: */ debugOutput('<pre>'.print_r($GLOBALS['cache_array']['refsystem'], true).'</pre>');
883                 //* DEBUG: */ shutdown();
884
885                 if ($count > 0) {
886                         // Count cache hits
887                         incrementStatsEntry('cache_hits');
888
889                         // Remove old refs
890                         //* DEBUG: */ debugOutput('+'.$count.'/'.$old.'+');
891                         $count -= $old;
892                 } // END - if
893         } else {
894                 // Load current refs from database
895                 $result_ref = SQL_QUERY_ESC("SELECT
896         SUM(s.counter) AS cnt
897 FROM
898         `{?_MYSQL_PREFIX?}_refsystem` AS s
899 LEFT JOIN
900         `{?_MYSQL_PREFIX?}_refdepths` AS d
901 ON
902         s.level=d.level
903 WHERE
904         s.userid=%s AND
905         s.level=1",
906                         array(
907                                 bigintval($userid)
908                         ), __FUNCTION__, __LINE__);
909
910                 // Load count @TODO Can't we rewrite this to our API?
911                 list($count) = SQL_FETCHROW($result_ref);
912
913                 // Free result
914                 SQL_FREERESULT($result_ref);
915                 if (empty($count)) {
916                         $count = '0';
917                 } else {
918                         $count -= $old;
919                 }
920         }
921
922         // Return count
923         //* DEBUG: */ debugOutput('*'.$userid.'/'.$old.'/'.$count.'*');
924         return $count;
925 }
926
927 // Determines the right language string for min_users
928 function determineReferalRallyeMinimumUsers ($min_users) {
929         // Rallye ends without user limitation is the default
930         $return = '{--RALLYE_END_NO_USER_LIMITATION--}';
931
932         if ($min_users > 0) {
933                 // Rallye ends when X members are totally in your exchange
934                 $return = getMaskedMessage('RALLYE_END_USERS', $min_users);
935         } // END - if
936
937         // Return
938         return $return;
939 }
940
941 // Determines the right language string for min_prices
942 function determineReferalRallyeMinimumPrices ($min_prices) {
943         // Rallye ends without user limitation is the default
944         $return = '{--RALLYE_END_NO_PRICE_LIMITATION--}';
945
946         if ($min_prices > 0) {
947                 // Rallye ends when X members are totally in your exchange
948                 $return = getMaskedMessage('RALLYE_END_PRICES', $min_prices);
949         } // END - if
950
951         // Return
952         return $return;
953 }
954
955 // [EOF]
956 ?>