]> git.mxchange.org Git - mailer.git/blob - inc/libs/rallye_functions.php
Extensions fixed/improved:
[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'], '{%message,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('{%message,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 = '{%message,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 ($mode, $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($mode . '_list_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($mode . '_list_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, '{%message,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         // @TODO Deprecated variable and global statement, please try to rewrite this
440         global $DATA;
441
442         // Load rallye data
443         list($id, $title, $start, $end, $notify, $min_users, $min_prices) = SQL_FETCHROW($result);
444
445         // Free result
446         SQL_FREERESULT($result);
447
448         // Init array
449         $DATA = array();
450         $count = '0';
451         $users = array();
452         $DATA['title']  = $title;
453         $DATA['start']  = generateDateTime($start, 1);
454         $DATA['end']    = generateDateTime($end  , 1);
455         $DATA['now_t']  = generateDateTime(time(), 1);
456
457         // Load users array (!) with assigned prices
458         $prices = getArrayFromReferalRallyeUsers($id);
459
460         // Just count...
461         $total = '0';
462         foreach ($prices['userid'] as $key => $userid) {
463                 // Check status
464                 //   active = 1: account is still confirmed
465                 //   active = 0: account is deleted or locked
466                 $active = countSumTotalData($userid, 'user_data', 'userid', 'userid', true, " AND `status`='CONFIRMED'");
467
468                 $prices['active'][$key] = $active;
469
470                 // Allow valid and active users with at least one ref to get points
471                 if ((isValidUserId($userid)) && ($prices['ref'][$key] > 0) && ($active == 1) && ($prices['cpoints'][$key] > 0)) {
472                         $total++;
473                 } // END - if
474         } // END - foreach
475
476         if (($total < $min_prices) || ($total == '0')) {
477                 // Do not end this rallye!
478                 unset($DATA);
479                 return;
480         } // END - if
481
482         // Expire rallye
483         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_rallye_data` SET `expired`='Y' WHERE `id`=%s LIMIT 1",
484                 array(bigintval($id)), __FUNCTION__, __LINE__);
485
486         // Run array through (by userid is the most important 2nd-level-array)
487         foreach ($prices['userid'] as $key => $userid) {
488                 // Allow valid and active users with at least one ref to get points
489                 if ((isValidUserId($userid)) && ($prices['ref'][$key] > 0) && ($prices['active'][$key] == 1) && ($prices['cpoints'][$key] > 0)) {
490                         // Transfer data to array for the mail template
491                         $DATA['level']  = $prices['level'][$key];
492                         $DATA['points'] = $prices['points'][$key];
493                         $DATA['info']   = $prices['info'][$key];
494                         $DATA['ref']    = $prices['ref'][$key];
495
496                         // Default is other
497                         $winnerLevel = 'other';
498
499                         // Determine winner level
500                         if ($DATA['level'] == 1) {
501                                 // The winner!
502                                 $winnerLevel = 'gold';
503                         } elseif ($DATA['level'] == 2) {
504                                 // The vice winner!
505                                 $winnerLevel = 'silver';
506                         } elseif ($DATA['level'] == 3) {
507                                 // The bronce winner
508                                 $winnerLevel = 'bronce';
509                         }
510
511                         if ($DATA['points'] > 0) {
512                                 // Add points directly to user's account
513                                 addPointsThroughReferalSystem('rallye_winner:' . $winnerLevel, $userid, $DATA['points']);
514                         } // END - if
515
516                         if ($notify == 'Y') {
517                                 // Prepare infos for the mail template
518                                 if (!empty($DATA['info'])) {
519                                         // Take direct infos
520                                         $DATA['infos'] = $DATA['info'];
521                                 } else {
522                                         // Take points
523                                         $DATA['infos'] = $DATA['points'] . ' {?POINTS?}';
524                                 }
525
526                                 // Add suffix to template name
527                                 $template = 'member_rallye_expired' . $winnerLevel;
528
529                                 // Load template
530                                 $message = loadEmailTemplate($template, $DATA, $userid);
531                                 sendEmail($userid, '{%message,RALLYE_MEMBER_EXPIRED_SUBJECT=' . $DATA['level'] . '%}', $message);
532                         } // END - if
533
534                         // Count userid
535                         $count++;
536                         $users['userid'][$userid] = $userid;
537                         $users['poi'][$userid] = $DATA['infos'];
538                 } // END - if
539         } // END - foreach
540
541         // Select template depending on notfication is switch on / off
542         if ($notify == 'Y') {
543                 $templ = 'admin_rallye_expired';
544         } elseif (is_array($users['userid'])) {
545                 $templ = 'admin_rallye_expired_no';
546                 $count = getReferalRallyeUserDataFromArray($users);
547         }
548
549         // Send mail to admin
550         sendAdminNotification('{%message,RALLYE_ADMIN_EXPIRED_SUBJECT=' . $title . '%}', $templ, $count);
551
552         // Add task (we ignore the task id here)
553         createNewTask('{--RALLYE_ADMIN_EXPIRED--}: ' . $title, '{--RALLYE_ADMIN_EXPIRED_TEXT--}', 'RALLYE_EXPIRED');
554 }
555
556 //
557 function getReferalRallyeUserDataFromArray ($userIds) {
558         // Implode user ids
559         $userid_string = implode(',', $userIds['userid']);
560
561         // Init result string
562         $ret = '';
563
564         // Load users
565         $result = SQL_QUERY_ESC("SELECT
566         `userid`, `gender`, `surname`, `family`, `email`
567 FROM
568         `{?_MYSQL_PREFIX?}_user_data`
569 WHERE
570         `userid` IN(%s) AND
571         `status`='CONFIRMED'
572 ORDER BY
573         `userid` ASC
574 LIMIT %s",
575                 array(
576                         $userid_string,
577                         count($userIds)
578                 ), __FUNCTION__, __LINE__);
579         while ($content = SQL_FETCHARRAY($result)) {
580                 // Construct the message masked and add it
581                 $ret .= sprintf("{%%pipe,translateGender=%s%} %s %s (%s) - %s\n",
582                         $content['gender'],
583                         $content['surname'],
584                         $content['family'],
585                         $content['email'],
586                         $userIds['poi'][$content['userid']]
587                 );
588         } // END - while
589
590         // Return result
591         return substr($ret, 0, -1);
592 }
593
594 //
595 function getArrayFromReferalRallyePrices ($rallye) {
596         // Init multi array
597         $prices = array(
598                 'level'  => array(),
599                 'points' => array(),
600                 'info'   => array()
601         );
602
603         // Load prices
604         $result = SQL_QUERY_ESC("SELECT
605         `price_level`, `points`, `info`
606 FROM
607         `{?_MYSQL_PREFIX?}_rallye_prices`
608 WHERE
609         `rallye_id`=%s
610 ORDER BY
611         `price_level` ASC",
612                 array(bigintval($rallye)), __FUNCTION__, __LINE__);
613
614         // Transfer elements
615         while ($content = SQL_FETCHARRAY($result)) {
616                 $prices['level'][]  = $content['price_level'];
617                 $prices['points'][] = $content['points'];
618                 $prices['info'][]   = $content['info'];
619         } // END - while
620
621         // Free memory
622         SQL_FREERESULT($result);
623
624         // Return array
625         return $prices;
626 }
627
628 //
629 function getArrayFromReferalRallyeUsers ($rallye) {
630         // Fix zero points to 0.00000
631         if (getConfig('ref_payout') == '0') setConfigEntry('ref_payout', '0.00000');
632
633         // Init multi array
634         $users = array(
635                 'userid'  => array(),
636                 'ref'     => array(),
637                 'cpoints' => array(),
638         );
639
640         // Load users                          userid    old   points earned
641         $result_user = SQL_QUERY_ESC("SELECT `userid`, `refs`, `curr_points` FROM `{?_MYSQL_PREFIX?}_rallye_users` WHERE `rallye_id`=%s ORDER BY `userid` ASC",
642                 array(bigintval($rallye)), __FUNCTION__, __LINE__);
643         while ($content = SQL_FETCHARRAY($result_user)) {
644                 // Load current ref count
645                 $count = getReferalRallyeRefsCount($content['userid'], $content['refs']);
646
647                 // Points of ref's
648                 $result_ref = SQL_QUERY_ESC("SELECT
649         SUM(p.points) AS `points`
650 FROM
651         `{?_MYSQL_PREFIX?}_user_points` AS p
652 LEFT JOIN
653         `{?_MYSQL_PREFIX?}_user_data` AS d
654 ON
655         p.userid=d.userid
656 WHERE
657         d.`status`='CONFIRMED' AND
658         d.max_mails > 0 AND
659         d.mails_confirmed >= {?ref_payout?} AND
660         p.ref_depth=1 AND
661         p.points > 0 AND
662         d.userid=%s
663 LIMIT 1",
664                         array(bigintval($content['userid'])), __FUNCTION__, __LINE__);
665
666                 // Get points
667                 list($refpoints) = SQL_FETCHROW($result_ref);
668
669                 // Free result
670                 SQL_FREERESULT($result_ref);
671
672                 // Fix empty refpoints
673                 if (empty($refpoints)) $refpoints = '0';
674
675                 // Store calculated new refs to array
676                 $users['userid'][]  = $content['userid'];
677                 $users['ref'][]     = abs($count - $content['refs']);
678                 $users['cpoints'][] = $refpoints - $content['curr_points'];
679         } // END - while
680
681         // Free memory
682         SQL_FREERESULT($result_user);
683
684         // Sort array for refs (descending)
685         array_pk_sort($users, array('ref', 'cpoints'), 0, 1, true);
686
687         // Load prices array (!)
688         $prices = getArrayFromReferalRallyePrices($rallye);
689
690         // Merge users into prices
691         foreach ($prices['level'] as $k => $level) {
692                 // We only need to check one element in $users, see above while() block
693                 if (isset($users['userid'][$k])) {
694                         $prices['userid'][$k]  = $users['userid'][$k];
695                         $prices['ref'][$k]     = $users['ref'][$k];
696                         $prices['cpoints'][$k] = $users['cpoints'][$k];
697                 } // END - if
698         } // END - foreach
699
700         // Return completed array
701         return $prices;
702 }
703
704 // @TODO This function does not load min_users, min_prices, please encapsulate loading rallye data with e.g. getRallyeDataFromId()
705 function addReferalRallyeWinners ($mode, $rallye, $default=0) {
706         // First check how many prices are set
707         $prices = countSumTotalData(bigintval($rallye), 'rallye_prices', 'id', 'rallye_id', true);
708
709         // Load data
710         $DATA = getArrayFromReferalRallyeUsers($rallye);
711
712         // Generate table
713         $OUT = '';
714         for ($idx = '0'; $idx < $prices; $idx++) {
715                 // Check status
716                 //   active = 1: account is still confirmed
717                 //   active = 0: account is deleted or locked
718                 $active = countSumTotalData($DATA['userid'][$idx], 'user_data', 'userid', 'userid', true, " AND `status`='CONFIRMED'");
719
720                 if ((empty($DATA['ref'][$idx])) || ($DATA['ref'][$idx] == '0') || ($active == '0') || ('' . round($DATA['cpoints'][$idx]) . '' == '0') || (empty($DATA['cpoints'][$idx]))) {
721                         // Allow valid and active users with at least one ref to get points
722                         $DATA['ref'][$idx]   = '---';
723                         $DATA['userid'][$idx]   = '---';
724                 } // END - if
725
726                 if (!empty($DATA['info'][$idx])) {
727                         // Take direct infos
728                         $DATA['infos'][$idx] = $DATA['info'][$idx];
729                 } else {
730                         // Take ppints
731                         $DATA['infos'][$idx] = $DATA['points'][$idx] . ' {?POINTS?}';
732                 }
733
734                 // Prepare marking of default (maybe current user's) id
735                 $start = ''; $end = '';
736                 if (($DATA['userid'][$idx] == $default) && ($default > 0)) {
737                         $start = '<strong>';
738                         $end   = '</strong>';
739                 } // END - if
740
741                 // Prepare content
742                 $content = array(
743                         'idx'    => ($idx + 1),
744                         'userid' => $DATA['userid'][$idx],
745                         'ref'    => $DATA['ref'][$idx],
746                         'infos'  => $DATA['infos'][$idx],
747                         'start'  => $start,
748                         'end'    => $end
749                 );
750
751                 // Load row template
752                 $OUT .= loadTemplate($mode . '_list_rallye_row', true, $content);
753         } // END - for
754
755         // Prepare content
756         $content = array(
757                 'rows'       => $OUT,
758                 'min_users'  => '???',
759                 'min_prices' => '???'
760         );
761
762         // Load main template and finnally return the output
763         return loadTemplate($mode . '_list_rallye', true, $content);
764 }
765
766 //
767 function purgeExpiredReferalRallyes () {
768         // Check for expired rallyes
769         $EXPIRE = 3; // @TODO The hard-coded value...
770         $result_rallye = SQL_QUERY_ESC("SELECT
771         `id`, `title`, `start_time`, `end_time`
772 FROM
773         `{?_MYSQL_PREFIX?}_rallye_data`
774 WHERE
775         (UNIX_TIMESTAMP() - `end_time`) > ({?ONE_DAY?} * %s) AND
776         `expired`='Y'",
777                 array($EXPIRE), __FUNCTION__, __LINE__);
778
779         if (!SQL_HASZERONUMS($result_rallye)) {
780                 // Init SQLs
781                 initSqls();
782
783                 // Expire found rallyes and notify admin
784                 while ($content = SQL_FETCHARRAY($result_rallye)) {
785                         // Prepare data for mail template
786                         $content['start_time'] = generateDateTime($content['start_time'], 1);
787                         $content['end_time']   = generateDateTime($content['end_time']  , 1);
788                         $content['now_time']   = generateDateTime(time(), 1);
789
790                         // Send mail to admin
791                         sendAdminNotification('{%message,RALLYE_ADMIN_PURGED_SUBJECT=' . $content['title'] . '%}', 'admin_rallye_purged', $content);
792
793                         // Purge whole rallye
794                         addSql(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_rallye_data` WHERE `id`=%s LIMIT 1",
795                                 array(bigintval($content['id'])), __FUNCTION__, __LINE__, false));
796                         addSql(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_rallye_prices` WHERE `rallye_id`=%s LIMIT 1",
797                                 array(bigintval($content['id'])), __FUNCTION__, __LINE__, false));
798                         addSql(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_rallye_users` WHERE `rallye_id`=%s LIMIT 1",
799                                 array(bigintval($content['id'])), __FUNCTION__, __LINE__, false));
800
801                         // Add task (we ignore the task id here
802                         createNewTask('{--RALLYE_ADMIN_PURGED--}: ' . $content['title'], '{--RALLYE_ADMIN_PURGED_TEXT--}', 'RALLYE_PURGED');
803                 } // END - while
804
805                 // Run all SQLs
806                 runFilterChain('run_sqls');
807         } // END - if
808
809         // Free memory
810         SQL_FREERESULT($result_rallye);
811 }
812
813 //
814 function addReferalRallyeTemplateSelection ($name = 'template', $default = '') {
815         // Init variables
816         $OUT = '';
817         $ral = array();
818
819         // Check templates directory
820         $basePath = sprintf("templates/%s/html/rallye/", getLanguage());
821
822         // Read the directory
823         $templates = getArrayFromDirectory($basePath, 'rallye_', false, true, array(), '.tpl');
824
825         // And walk through
826         foreach ($templates as $read) {
827                 // Cut prefix and extension away
828                 $read = substr($read, 7, strpos($read, '.') - 7);
829
830                 // Accept only template names between 1 and 255 chars length
831                 if ((strlen($read) < 256) && (!empty($read))) {
832                         // Valid entry found
833                         $ral[$read] = $read;
834                 } else {
835                         // Log invalid
836                         logDebugMessage(__FUNCTION__, __LINE__, sprintf("WARNING: Template %s not used.", $read));
837                 }
838         } // END - foreach
839
840         // Do we have found templates which we can link with the new rallye?
841         if (!empty($ral[0])) {
842                 // Generate selection box for all found templates
843                 $OUT  = '<select class="form_select" name="' . $name . '" size="1">';
844                 $OUT .= generateOptionList('/ARRAY/', array_keys($ral), array_values($ral), $default, '', 'none');
845                 $OUT .= '</select>';
846         } else {
847                 // No rallye templates found
848                 $OUT = '{--RALLYE_NO_TEMPLATES_FOUND--}';
849         }
850
851         // Return selection
852         return $OUT;
853 }
854
855 // @TODO Please document this function
856 function getReferalRallyeRefsCount ($currUserid, $old = '0') {
857         // Check current refs
858         if (isExtensionInstalledAndNewer('cache', '0.1.2')) {
859                 // Get refs from cache
860                 $count = '0';
861                 foreach ($GLOBALS['cache_array']['refsystem']['userid'] as $id => $userid) {
862                         // Do we have a ref for this user?
863                         //* DEBUG: */ debugOutput('id='.$id.',userid='.$userid.',userid='.$userid.',old='.$old.',level='.$GLOBALS['cache_array']['refsystem']['level'][$id]);
864                         if (($currUserid == $userid) && ($GLOBALS['cache_array']['refsystem']['level'][$id] == 1)) {
865                                 //* DEBUG: */ debugOutput('userid matches!');
866                                 foreach ($GLOBALS['cache_array']['refdepths']['level'] as $level) {
867                                         if (($level == $GLOBALS['cache_array']['refsystem']['level'][$id]) && ($level == 1)) {
868                                                 // Level does exist so abort here
869                                                 $count = $GLOBALS['cache_array']['refsystem']['counter'][$id];
870                                                 //* DEBUG: */ debugOutput('*'.$userid.'/'.$count.'*');
871                                                 break;
872                                         } elseif ($level > 1) {
873                                                 // Not interesting here...
874                                                 break;
875                                         }
876                                 } // END - foreach
877
878                                 // Abort also here!
879                                 if ($count > 0) break;
880                         } // END - if
881                 } // END - foreach
882
883                 //* DEBUG: */ debugOutput('<pre>'.print_r($GLOBALS['cache_array']['refsystem'], true).'</pre>');
884                 //* DEBUG: */ shutdown();
885
886                 if ($count > 0) {
887                         // Count cache hits
888                         incrementStatsEntry('cache_hits');
889
890                         // Remove old refs
891                         //* DEBUG: */ debugOutput('+'.$count.'/'.$old.'+');
892                         $count -= $old;
893                 } // END - if
894         } else {
895                 // Load current refs from database
896                 $result_ref = SQL_QUERY_ESC("SELECT
897         SUM(s.counter) AS cnt
898 FROM
899         `{?_MYSQL_PREFIX?}_refsystem` AS s
900 LEFT JOIN
901         `{?_MYSQL_PREFIX?}_refdepths` AS d
902 ON
903         s.level=d.level
904 WHERE
905         s.userid=%s AND
906         s.level=1",
907                         array(
908                                 bigintval($userid)
909                         ), __FUNCTION__, __LINE__);
910
911                 // Load count @TODO Can't we rewrite this to our API?
912                 list($count) = SQL_FETCHROW($result_ref);
913
914                 // Free result
915                 SQL_FREERESULT($result_ref);
916                 if (empty($count)) {
917                         $count = '0';
918                 } else {
919                         $count -= $old;
920                 }
921         }
922
923         // Return count
924         //* DEBUG: */ debugOutput('*'.$userid.'/'.$old.'/'.$count.'*');
925         return $count;
926 }
927
928 // Determines the right language string for min_users
929 function determineReferalRallyeMinimumUsers ($min_users) {
930         // Rallye ends without user limitation is the default
931         $return = '{--RALLYE_END_NO_USER_LIMITATION--}';
932
933         if ($min_users > 0) {
934                 // Rallye ends when X members are totally in your exchange
935                 $return = '{%message,RALLYE_END_USERS=' . $min_users . '%}';
936         } // END - if
937
938         // Return
939         return $return;
940 }
941
942 // Determines the right language string for min_prices
943 function determineReferalRallyeMinimumPrices ($min_prices) {
944         // Rallye ends without user limitation is the default
945         $return = '{--RALLYE_END_NO_PRICE_LIMITATION--}';
946
947         if ($min_prices > 0) {
948                 // Rallye ends when X members are totally in your exchange
949                 $return = '{%message,RALLYE_END_PRICES=' . $min_prices . '%}';
950         } // END - if
951
952         // Return
953         return $return;
954 }
955
956 // [EOF]
957 ?>