X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fbonus_functions.php;h=273019962a0be6f2ac3c6c1fc8d73a5fb913d7d5;hb=57227d33e870ec5cd271209c4a978a52b45c2dd6;hp=9cbf52d1ffb2ec2129d88b429ef04a2b499c3035;hpb=3c8df4406f9247182f4dbe4494d62ac229a7bd28;p=mailer.git diff --git a/inc/libs/bonus_functions.php b/inc/libs/bonus_functions.php index 9cbf52d1ff..273019962a 100644 --- a/inc/libs/bonus_functions.php +++ b/inc/libs/bonus_functions.php @@ -1,7 +1,7 @@ 0) { // Start generating the ranking list $max = SQL_NUMROWS($result); @@ -151,31 +160,50 @@ function addBonusRanks ($data, $type, $userid) { // Output all ranks (levels) for ($rank = 1; $rank <= $max; $rank++) { // Load data - $result_users = SQL_QUERY_ESC("SELECT `userid`, `points`, `timemark` FROM `{?_MYSQL_PREFIX?}_bonus_turbo` WHERE `%s`=%s AND level=%s LIMIT 1", + $result_users = SQL_QUERY_ESC("SELECT + `userid`, `points` +FROM + `{?_MYSQL_PREFIX?}_bonus_turbo` +WHERE + `%s`=%s AND + `level`=%s +LIMIT 1", array($type, $data, $rank), __FUNCTION__, __LINE__); // Nothing found by default - $GLOBALS['ranking_content']['userid'] = '---'; - $GLOBALS['ranking_content']['points'] = '---'; + $rows['userid'] = '---'; + $rows['points'] = '---'; // Are you one of them? if (SQL_NUMROWS($result_users) == 1) { // Load data - $GLOBALS['ranking_content'] = merge_array($GLOBALS['ranking_content'], SQL_FETCHARRAY($result_users)); + $rows = merge_array($rows, SQL_FETCHARRAY($result_users)); + + // Is ext-nickname active? + if (isExtensionActive('nickname')) { + // Then get the nickname + $nick = getNickname($rows['userid']); + + // Is it not empty? Then use it + if (!empty($nick)) $rows['userid'] = $nick; + } // END - if // Translate comma - $GLOBALS['ranking_content']['points'] = translateComma($GLOBALS['ranking_content']['points']); + $rows['points'] = translateComma($rows['points']); } // END - if + // Free result + SQL_FREERESULT($result_users); + // Add more - $GLOBALS['ranking_content']['rank'] = $rank; - $GLOBALS['ranking_content']['sw'] = $SW; + $rows['rank'] = $rank; + $rows['sw'] = $SW; // Output row $OUT .= " -  ".$GLOBALS['ranking_content']['rank'].". - ".$GLOBALS['ranking_content']['userid']." - ".$GLOBALS['ranking_content']['points']." +  ".$rows['rank'].". + ".$rows['userid']." + ".$rows['points']." \n"; // Switch color @@ -190,8 +218,8 @@ function addBonusRanks ($data, $type, $userid) { } else { // No entries found! $OUT = " - -
".sprintf(getMessage('BONUS_NO_RANKS'), $data)."
+ +
".getMaskedMessage('BONUS_NO_RANKS', $data)."
\n"; } @@ -219,22 +247,21 @@ function handleBonusPoints ($mode) { $points = $mode; } + // Check his amount first + $total = countSumTotalData(getConfig('bonus_userid'), 'user_points', 'points') - countSumTotalData(getConfig('bonus_userid'), 'user_data', 'used_points'); + // Subtract points from... switch (getConfig('bonus_mode')) { case 'JACKPOT': // ... jackpot if ((isExtensionActive('jackpot')) && (subtractPointsFromJackpot($points) == -1) && (getConfig('bonus_userid') > 0)) { - // Check points amount first... - $total = countSumTotalData(getConfig('bonus_userid'), 'user_points', 'points') - countSumTotalData(getConfig('bonus_userid'), 'user_data', 'used_points'); if ($total >= $points) { // Subtract points from userid's account - subtractPoints('bonus_payout_jackpot', getConfig('bonus_userid'), $points); + subtractPointsFromJackpot('bonus_payout_jackpot', getConfig('bonus_userid'), $points); } // END - if } // END - if break; case 'UID': // ... userid's account - // Check his amount first - $total = countSumTotalData(getConfig('bonus_userid'), 'user_points', 'points') - countSumTotalData(getConfig('bonus_userid'), 'user_data', 'used_points'); if ($total >= $points) { // Subtract points from userid's account subtractPoints('bonus_payout_userid', getConfig('bonus_userid'), $points); @@ -243,7 +270,7 @@ function handleBonusPoints ($mode) { $dummy = subtractPointsFromJackpot($points); } break; - } + } // END - switch } // Purges expired fast-click bonus entries @@ -257,5 +284,48 @@ function purgeExpiredTurboBonus() { } // END - if } -// +/////////////////////////////////////////////////////////////////////////////// +// Only filter functions +/////////////////////////////////////////////////////////////////////////////// + +// Filter for adding login bonus to the user's account +function FILTER_ADD_LOGIN_BONUS () { + // Is the user data valid? + if (!isMember()) { + // Do only run for logged in members + debug_report_bug('Please only run this filter for logged in users.'); + } // END - if + + // Bonus is not given by default ;-) + $bonus = false; + if ((isExtensionInstalledAndNewer('sql_patches', '0.2.8')) && (getConfig('bonus_active') == 'Y') && (getConfig('bonus_login_yn') == 'Y')) { + // Update last login if far enougth away + // @TODO This query isn't right, it will only update if the user was for a longer time away! + SQL_QUERY_ESC("UPDATE + `{?_MYSQL_PREFIX?}_user_data` +SET + `last_login`=UNIX_TIMESTAMP() +WHERE + `userid`=%s AND + `last_login` < (UNIX_TIMESTAMP() - {?login_timeout?}) +LIMIT 1", + array( + getMemberId() + ), __FILE__, __LINE__ + ); + + // Updated entry? + $bonus = (SQL_AFFECTEDROWS() == 1); + } // END - if + + if (($bonus === true) && (getRequestParameter('mode') == 'bonus')) { + // Output message with added points + $GLOBALS['message'] .= '
' . getMessage('BONUS_LOGIN_BONUS_ADDED') . '
'; + } elseif (isExtensionActive('bonus')) { + // No login bonus added! + $GLOBALS['message'] .= '
{--BONUS_LOGIN_BONUS_NOT_ADDED--}
'; + } +} + +// [EOF] ?>