X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Flibs%2Fbonus_functions.php;h=72b6b2e24d47c57dcca4ddbd237100a2b3bb4f55;hb=039203d5428c9c6a3bed61fb3a9a16958c6fd44c;hp=678c68c6ba03267cdd30680996cf7c51810eb09f;hpb=854fcac4ae5fe26e28e9d4d7b8361f2ab455aeb1;p=mailer.git diff --git a/inc/libs/bonus_functions.php b/inc/libs/bonus_functions.php index 678c68c6ba..72b6b2e24d 100644 --- a/inc/libs/bonus_functions.php +++ b/inc/libs/bonus_functions.php @@ -1,7 +1,7 @@ -  ".$rows['rank'].". - ".$rows['userid']." - ".$rows['points']." +  ".$rows['rank'].". + ".$rows['userid']." + ".$rows['points']." \n"; // Switch color @@ -218,8 +218,8 @@ LIMIT 1", } else { // No entries found! $OUT = " - -
".sprintf(getMessage('BONUS_NO_RANKS'), $data)."
+ +
".getMaskedMessage('BONUS_NO_RANKS', $data)."
\n"; } @@ -234,7 +234,7 @@ function handleBonusPoints ($mode) { if (getConfig('bonus_active') != 'Y') return; // Switch to jackpot-mode when no UID is supplied but userid-mode is selected - if ((getConfig('bonus_mode') == 'UID') && (getConfig('bonus_userid') == 0) && (isExtensionActive('jackpot'))) { + if ((getConfig('bonus_mode') == 'UID') && (getConfig('bonus_userid') == '0') && (isExtensionActive('jackpot'))) { // Update database & config updateConfiguration('bonus_mode', 'JACKPOT'); } // END - if @@ -247,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); @@ -285,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) && (getRequestElement('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] ?>