X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Flibs%2Frallye_functions.php;h=201b11db96ccf777313e6744022fc79cceabe1e5;hp=331687eb517ebb40f03c6822bddde0c91ee8a56a;hb=263a089d8a499e0e26d0af9e7aa7639f88b8ca60;hpb=6f89f62b93d13d53d21aba27793ed283e735f410 diff --git a/inc/libs/rallye_functions.php b/inc/libs/rallye_functions.php index 331687eb51..201b11db96 100644 --- a/inc/libs/rallye_functions.php +++ b/inc/libs/rallye_functions.php @@ -1,7 +1,7 @@ $prices), $content['userid']); + $message = loadEmailTemplate('member_rallye_notify', $content, $content['userid']); sendEmail($content['userid'], sprintf(getMessage('RALLYE_MEMBER_NOTIFY'), $title), $message); } // END - if } // END - while @@ -194,27 +195,33 @@ ORDER BY // function addReferalRallyeTopUsers ($rallye, $default=0) { // First check how many prices are set - $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_rallye_prices` WHERE rallye_id=%s ORDER BY price_level", + $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_rallye_prices` WHERE `rallye_id`=%s ORDER BY price_level", array(bigintval($rallye)), __FUNCTION__, __LINE__); $prices = SQL_NUMROWS($result); SQL_FREERESULT($result); // And load only limited users $result = SQL_QUERY_ESC("SELECT - u.userid, u.refs, u.curr_points FROM `{?_MYSQL_PREFIX?}_rallye_users` AS u + u.userid, u.refs, u.curr_points, rd.min_users, rd.min_prices +FROM + `{?_MYSQL_PREFIX?}_rallye_users` AS u LEFT JOIN `{?_MYSQL_PREFIX?}_refsystem` AS r ON u.userid=r.userid +LEFT JOIN + `{?_MYSQL_PREFIX?}_rallye_data` AS rd +ON + u.rallye_id=rd.id WHERE - u.rallye_id=%s AND r.counter > 0 + u.`rallye_id`=%s AND r.counter > 0 ORDER BY u.refs DESC", array(bigintval($rallye)), __FUNCTION__, __LINE__); // Load users $DATA = array( - 'userid' => array(), + 'userid' => array(), 'ref' => array(), 'cpoints' => array() ); @@ -237,9 +244,9 @@ WHERE d.`status`='CONFIRMED' AND p.ref_depth=1 AND d.max_mails > 0 AND - d.mails_confirmed >= %s + d.mails_confirmed >= {?ref_payout?} LIMIT 1", - array(bigintval($content['userid']), getConfig('ref_payout')), __FUNCTION__, __LINE__); + array(bigintval($content['userid'])), __FUNCTION__, __LINE__); // Get points list($refpoints) = SQL_FETCHROW($result_ref); @@ -250,16 +257,18 @@ LIMIT 1", if (empty($refpoints)) $refpoints = '0'; // Init userid for list - $_userid = '---'; + $userid = '---'; // List only users with at least one ref! //* DEBUG: */ print("*".$cnt.'/'.$content['userid'].'/'.$content['curr_points'].'/'.$refpoints."*
"); - if (($cnt > 0) && ($refpoints > $content['curr_points'])) { $_userid = $content['userid']; } else { $cnt = ''; } + if (($cnt > 0) && ($refpoints > $content['curr_points'])) { $userid = $content['userid']; } else { $cnt = ''; } // Save values to array - $DATA['userid'][] = $_userid; - $DATA['ref'][] = $cnt; - $DATA['cpoints'][] = $content['curr_points']; + $DATA['userid'][] = $userid; + $DATA['ref'][] = $cnt; + $DATA['cpoints'][] = $content['curr_points']; + $min_users = $content['min_users']; + $min_prices = $content['min_prices']; } // END - while // Free memory @@ -291,8 +300,12 @@ LIMIT 1", $SW = 3 - $SW; } // END - for + // Translate min_prices/users + $content['min_prices'] = determineReferalRallyeMinimumPrices($min_prices); + $content['min_users'] = determineReferalRallyeMinimumUsers($min_users); + // Add footer - $OUT .= loadTemplate('guest_rallye_footer', true); + $OUT .= loadTemplate('guest_rallye_footer', true, $content); // And finnally return the output return $OUT; @@ -321,6 +334,7 @@ LIMIT 1", __FUNCTION__, __LINE__); if (SQL_NUMROWS($result) == 1) { // Init variables $min_users = '0'; $min_prices = '0'; + // Load data if (getExtensionVersion('rallye') >= '0.2.0') { list($id, $title, $start, $end, $notify, $min_users, $min_prices) = SQL_FETCHROW($result); @@ -331,21 +345,6 @@ LIMIT 1", __FUNCTION__, __LINE__); // Free result SQL_FREERESULT($result); - // Check if line is already included... - $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_rallye_users` WHERE `rallye_id`=%s AND `userid`=%s LIMIT 1", - array(bigintval($id), bigintval($userid)), __FUNCTION__, __LINE__); - - // Is this user added? - if (SQL_NUMROWS($result) == '0') { - // Add userid and his ref count to table - SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_rallye_users` (`rallye_id`, `userid`, `refs`) -VALUES ('%s','%s',0)", - array(bigintval($id), bigintval($userid)), __FUNCTION__, __LINE__); - } // END - if - - // Free memory - SQL_FREERESULT($result); - if ($notify == 'Y') { // Transfer all neccessary data to the global $content array $content['start'] = generateDateTime($start, 2); @@ -367,6 +366,27 @@ VALUES ('%s','%s',0)", $message = loadEmailTemplate('member_rallye_notify', $content, $userid); sendEmail($userid, sprintf(getMessage('RALLYE_MEMBER_NOTIFY'), $title), $message); } // END - if + + // Check if line is already included... + $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_rallye_users` WHERE `rallye_id`=%s AND `userid`=%s LIMIT 1", + array( + bigintval($id), + bigintval($userid) + ), __FUNCTION__, __LINE__); + + // Is this user added? + if (SQL_NUMROWS($result) < 1) { + // Add userid and his ref count to table + SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_rallye_users` (`rallye_id`, `userid`, `refs`) +VALUES ('%s','%s',0)", + array( + bigintval($id), + bigintval($userid) + ), __FUNCTION__, __LINE__); + } // END - if + + // Free memory + SQL_FREERESULT($result); } // END - if } @@ -424,7 +444,7 @@ LIMIT 1", // Expire rallye SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_rallye_data` SET `expired`='Y' WHERE `id`=%s LIMIT 1", - array(bigintval($id)), __FUNCTION__, __LINE__); + array(bigintval($id)), __FUNCTION__, __LINE__); // Run array through (by userid is the most important 2nd-level-array) foreach($prices['userid'] as $key => $userid) { @@ -483,9 +503,9 @@ LIMIT 1", // Select template depending on notfication is switch on / off if ($notify == 'Y') { - $templ = "admin_rallye_expired"; + $templ = 'admin_rallye_expired'; } elseif (is_array($users['userid'])) { - $templ = "admin_rallye_expired_no"; + $templ = 'admin_rallye_expired_no'; $cnt = getReferalRallyeUserDataFromArray($users); } @@ -532,7 +552,7 @@ function getArrayFromReferalRallyePrices ($rallye) { ); // Load prices - $result = SQL_QUERY_ESC("SELECT price_level, points, info FROM `{?_MYSQL_PREFIX?}_rallye_prices` WHERE rallye_id=%s ORDER BY price_level", + $result = SQL_QUERY_ESC("SELECT price_level, points, info FROM `{?_MYSQL_PREFIX?}_rallye_prices` WHERE `rallye_id`=%s ORDER BY price_level", array(bigintval($rallye)), __FUNCTION__, __LINE__); // Transfer elements @@ -718,9 +738,9 @@ WHERE end_time <= (UNIX_TIMESTAMP() - {?ONE_DAY?} - %s) AND expired='Y'", // Purge whole rallye addSql(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_rallye_data` WHERE `id`=%s LIMIT 1", array(bigintval($content['id'])), __FUNCTION__, __LINE__, false)); - addSql(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_rallye_prices` WHERE rallye_id=%s LIMIT 1", + addSql(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_rallye_prices` WHERE `rallye_id`=%s LIMIT 1", array(bigintval($content['id'])), __FUNCTION__, __LINE__, false)); - addSql(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_rallye_users` WHERE rallye_id=%s LIMIT 1", + addSql(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_rallye_users` WHERE `rallye_id`=%s LIMIT 1", array(bigintval($content['id'])), __FUNCTION__, __LINE__, false)); // Add task