Renamed ifSqlHasZeroNums() to ifSqlHasZeroNumRows() and improved some queries.
[mailer.git] / inc / pool / pool-user.php
index 8c8e53fd4e94c4b3f24679073b60288a9b39adfd..128d793eea663d566c30dfa225e20f7bab524949 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 12/12/2008 *
- * ===============                              Last change: 12/12/2008 *
+ * Mailer v0.2.1-FINAL                                Start: 12/12/2008 *
+ * ===================                          Last change: 12/12/2008 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : pool-user.php                                    *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Sendet freigegebene Mitglieder-Mails aus Pool    *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009 - 2015 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
-       require($INC);
-}
+       die();
+} // END - if
 
 // Don't run on daily reset
-if (isResetModeEnabled()) {
+if ((isResetModeEnabled()) || (!isHtmlOutputMode())) {
        // Skip here
-       return false;
-} elseif (!EXT_IS_ACTIVE("user")) {
-       // Abort here if extension user is not active
-       return false;
+       return FALSE;
+} elseif ((!isExtensionActive('user')) || (!isExtensionActive('other'))) {
+       // Abort here if extension user/other are not active
+       return FALSE;
 }
 
-// Need this here
+// No HTML is default
+$HTML = '';
+
 // Check for freed mail orders to send out
-if (EXT_IS_ACTIVE("html_mail")) {
-       //                                0     1        2      3       4          5            6      7        8          9       10
-       $result_main = SQL_QUERY("SELECT id, sender, subject, text, receivers, payment_id, timestamp, url, target_send, cat_id, html_msg FROM `{!_MYSQL_PREFIX!}_pool` WHERE data_type='NEW' ORDER BY timestamp DESC", __FILE__, __LINE__);
-} else {
-       //                                0     1        2      3       4          5            6      7        8          9    10
-       $result_main = SQL_QUERY("SELECT id, sender, subject, text, receivers, payment_id, timestamp, url, target_send, cat_id, id FROM `{!_MYSQL_PREFIX!}_pool` WHERE data_type='NEW' ORDER BY timestamp DESC", __FILE__, __LINE__);
-}
+if (isExtensionActive('html_mail')) {
+       // With HTML mails
+       $HTML = ',`html_msg`';
+} // END - if
+
+// Main query
+$result_main = sqlQuery("SELECT
+       `id`,
+       `sender` AS `sender_userid`,
+       `subject`,
+       `text`,
+       `receivers`,
+       `payment_id`,
+       `timestamp`,
+       `url`,
+       `target_send`,
+       `cat_id`
+       " . $HTML . "
+FROM
+       `{?_MYSQL_PREFIX?}_pool`
+WHERE
+       `data_type`='NEW'
+ORDER BY
+       `timestamp` DESC", __FILE__, __LINE__);
 
 // Reset variables
-$cnt2 = 0; $lastSentId = 0; $cnt_back = array("0"); $pointsBack = array("0");
-if (SQL_NUMROWS($result_main) > 0) {
+$count2 = '0';
+$lastSentId = '0';
+$count_back = array(0);
+$pointsBack = array(0);
+
+if (!ifSqlHasZeroNumRows($result_main)) {
        // Parse all mails
-       while ($DATA = SQL_FETCHROW($result_main)) {
-               // Set mail order as "active". That means it will be sent out
-               SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_pool` SET data_type='ACTIVE' WHERE id=%s AND data_type='NEW' LIMIT 1",
-                       array($DATA[0]), __FILE__, __LINE__);
+       while ($mailData = sqlFetchArray($result_main)) {
+               // Set mail order as 'active'. That means it will be sent out
+               updatePoolDataById($mailData['id'], 'data_type', 'ACTIVE', NULL, " AND `data_type`='NEW'");
 
                // Check fetched data for HTML
-               $HTML = $DATA[10]; if ($HTML == $DATA[0]) $HTML = "N";
-
-               // Compile URL and subject line
-               $DATA[7] = COMPILE_CODE($DATA[7]);
+               $isHtml = 'N';
+               if (isset($mailData['html_msg'])) {
+                       $isHtml = $mailData['html_msg'];
+               } // END - if
 
                // Entry updated?
-               if (SQL_AFFECTEDROWS() == 1) {
+               if (!ifSqlHasZeroAffectedRows()) {
                        // "Explode" all receivers into an array
-                       if (ereg(";", $DATA[4])) {
+                       if (isInString(';', $mailData['receivers'])) {
                                // There's more than one receiver in the list...
-                               $RECEIVERS = explode(";", $DATA[4]);
-                       } elseif (!empty($DATA[4])) {
+                               $receivers = explode(';', $mailData['receivers']);
+                       } elseif (!empty($mailData['receivers'])) {
                                // Only one user left
-                               $RECEIVERS = array($DATA[4]);
+                               $receivers = array($mailData['receivers']);
                        } else {
                                // No users left
-                               $RECEIVERS = array("0");
+                               $receivers = array(0);
                        }
-                       $dummy = $RECEIVERS;
+                       $temporaryReceivers = $receivers;
 
-                       // Now, if we are good little boys and girls Santa left us some user-ids.
+                       // Now, if we are good little boys and girls Santa Claus left us some user-ids.
                        // We can now send mails to them...
-                       foreach ($RECEIVERS as $key => $uid) {
-                               // Lookup user ID
-                               $result_user = SQL_QUERY_ESC("SELECT gender, surname, family, email FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1",
-                                       array(bigintval($uid)), __FILE__, __LINE__);
-
-                               // Is his data available?
-                               //* DEBUG: */ echo "*L:".__LINE__."/".SQL_NUMROWS($result_user)."*<br />";
-                               if (SQL_NUMROWS($result_user) == 1) {
-                                       // The final receiver does exists so we can continue...
-                                       list($gender, $sname, $fname, $email) = SQL_FETCHROW($result_user);
-
-                                       // Free memory
-                                       SQL_FREERESULT($result_user);
-
-                                       // Do we have a stats entry?
-                                       $result_stats = SQL_QUERY_ESC("SELECT id FROM `{!_MYSQL_PREFIX!}_user_stats` WHERE pool_id=%s AND userid=%s AND timestamp_ordered='%s' LIMIT 1",
-                                               array($DATA[0], $DATA[1], $DATA[6]), __FILE__, __LINE__);
+                       foreach ($receivers as $key => $userid) {
+                               // Lookup user id
+                               //* DEBUG: */ debugOutput('*L:'.__LINE__.'/'.sqlNumRows($result_user).'*');
+                               if (fetchUserData($userid)) {
+                                       // Is there a stats entry?
+                                       $result_stats = sqlQueryEscaped("SELECT `id` FROM `{?_MYSQL_PREFIX?}_user_stats` WHERE `pool_id`=%s AND `userid`=%s AND timestamp_ordered='%s' LIMIT 1",
+                                               array($mailData['id'], $mailData['sender_userid'], $mailData['timestamp']), __FILE__, __LINE__);
 
                                        // If there's no stats entry add it!
-                                       //* DEBUG: */ echo "!L:".__LINE__."/".SQL_NUMROWS($result_stats)."!<br />";
-                                       if (SQL_NUMROWS($result_stats) == 0) {
+                                       //* DEBUG: */ debugOutput('!L:'.__LINE__.'/'.sqlNumRows($result_stats).'!');
+                                       if (ifSqlHasZeroNumRows($result_stats)) {
                                                // No entry was found, so we add him!
-                                               SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_user_stats` (pool_id , userid, cat_id, payment_id, subject, url , max_rec , timestamp_ordered, timestamp_sstart) VALUES ('%s','%s','%s','%s','%s','%s','%s','%s' , UNIX_TIMESTAMP())",
-                                                       array(bigintval($DATA[0]), bigintval($DATA[1]), bigintval($DATA[9]), bigintval($DATA[5]), $DATA[2], $DATA[7], $DATA[8], bigintval($DATA[6])), __FILE__, __LINE__);
-
-                                               // Receive it's ID for the links table
-                                               $result_stats = SQL_QUERY_ESC("SELECT id FROM `{!_MYSQL_PREFIX!}_user_stats` WHERE pool_id=%s AND userid=%s AND timestamp_ordered='%s' LIMIT 1",
-                                                       array(bigintval($DATA[0]), bigintval($DATA[1]), bigintval($DATA[6])), __FILE__, __LINE__);
+                                               sqlQueryEscaped("INSERT INTO
+       `{?_MYSQL_PREFIX?}_user_stats`
+(
+       `pool_id`,
+       `userid`,
+       `cat_id`,
+       `payment_id`,
+       `subject`,
+       `url`,
+       `max_rec`,
+       `timestamp_ordered`,
+       `timestamp_sstart`
+) VALUES (
+       %s,
+       %s,
+       %s,
+       %s,
+       '%s',
+       '%s',
+       %s,
+       %s,
+       UNIX_TIMESTAMP()
+)",
+                                                       array(
+                                                               bigintval($mailData['id']),
+                                                               bigintval($mailData['sender_userid']),
+                                                               bigintval($mailData['cat_id']),
+                                                               bigintval($mailData['payment_id']),
+                                                               $mailData['subject'],
+                                                               $mailData['url'],
+                                                               bigintval($mailData['target_send']),
+                                                               bigintval($mailData['timestamp'])
+                                                       ), __FILE__, __LINE__);
+
+                                               // Receive it's id for the links table
+                                               $result_stats = sqlQueryEscaped("SELECT `id` FROM `{?_MYSQL_PREFIX?}_user_stats` WHERE `pool_id`=%s AND `userid`=%s AND timestamp_ordered='%s' LIMIT 1",
+                                                       array(bigintval($mailData['id']), bigintval($mailData['sender_userid']), bigintval($mailData['timestamp'])), __FILE__, __LINE__);
                                        } // END - if
 
-                                       //* DEBUG: */ echo "!L:".__LINE__."/".SQL_NUMROWS($result_stats)."!<br />";
-                                       if (SQL_NUMROWS($result_stats) == 1) {
+                                       //* DEBUG: */ debugOutput('!L:'.__LINE__.'/'.sqlNumRows($result_stats).'!');
+                                       if (sqlNumRows($result_stats) == 1) {
                                                // We got one!
-                                               list($stats_id) = SQL_FETCHROW($result_stats);
-
-                                               // Mark this user as "spammed" ;-) And place a line for him...
-                                               //* DEBUG: */ echo "?L:".__LINE__."/".$dummy."/".$key."/".$uid."(".$DATA[1].")/".$DATA[0]."/".$stats_id."?<br />";
-                                               switch (REMOVE_RECEIVER($dummy, $key, bigintval($uid), bigintval($DATA[0]), bigintval($stats_id)))
-                                               {
-                                               case "done":
-                                                       // Prepare the mail
-                                                       $DATA[11] = bigintval($stats_id);
-                                                       $DATA[12] = $sname;
-                                                       $DATA[13] = $fname;
-                                                       $DATA[14] = TRANSLATE_GENDER($gender);
-
-                                                       // Replace text variables
-                                                       foreach ($GLOBALS['replacer'] as $key => $value) {
-                                                               if (isset($DATA[$key])) $DATA[3] = str_replace($value, $DATA[$key], $DATA[3]);
-                                                       } // END - if
-
-                                                       // Prepare content
-                                                       $content = array(
-                                                               'id'         => $DATA[11],
-                                                               'url'        => $DATA[7],
-                                                               'sender_uid' => $DATA[1],
-                                                               'category'   => GET_CATEGORY($DATA[9]),
-                                                               'time'       => CREATE_FANCY_TIME(GET_PAY_POINTS($DATA[5], "time")),
-                                                               'points'     => TRANSLATE_COMMA(GET_PAY_POINTS($DATA[5], "payment")),
-                                                               'text'       => $DATA[3]
-                                                       );
-
-                                                       // Load message template
-                                                       $mailText = LOAD_EMAIL_TEMPLATE("normal-mail", $content, bigintval($uid));
-
-                                                       // Send mail away
-                                                       SEND_EMAIL($email, $DATA[2], $mailText, $HTML);
-
-                                                       // Count sent mails...
-                                                       SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_user_data` SET emails_sent=emails_sent+1 WHERE userid=%s LIMIT 1",
-                                                               array(bigintval($DATA[1])), __FILE__, __LINE__);
-
-                                                       if (GET_EXT_VERSION("user") >= "0.1.4") {
-                                                               // Update mails received for receiver
-                                                               SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_user_data` SET emails_received=emails_received+1 WHERE userid=%s LIMIT 1",
-                                                                       array(bigintval($uid)), __FILE__, __LINE__);
-                                                       } // END - if
-
-                                                       // Update mediadata if version is 0.0.4 or higher
-                                                       if (GET_EXT_VERSION("mediadata") >= "0.0.4") {
-                                                               // Update entry (or add missing)
-                                                               //* DEBUG: */ echo "*MEDIA/L:".__LINE__."*<br />";
-                                                               MEDIA_UPDATE_ENTRY(array("total_send", "normal_send"), "add", 1);
-                                                       } // END - if
-
-                                                       // And count up the mail
-                                                       $GLOBALS['pool_cnt']++;
-                                                       //* DEBUG: */ echo"*EXIT/L:".__LINE__."/".$GLOBALS['pool_cnt']."*<br />";
-                                                       break;
-
-                                               case "already":
-                                                       // Entry already found, but we still count one up!
-                                                       $GLOBALS['pool_cnt']++;
-                                                       //* DEBUG: */ echo"*EXIT/L:".__LINE__."/".$GLOBALS['pool_cnt']."<br />";
-                                                       break;
-                                               }
-                                       }
+                                               list($stats_id) = sqlFetchRow($result_stats);
+
+                                               // Remove receiver from list
+                                               $status = removeReceiver($temporaryReceivers, $key, bigintval($userid), bigintval($mailData['id']), bigintval($stats_id));
+
+                                               //* DEBUG: */ debugOutput('?L:'.__LINE__.'/'.$temporaryReceivers.'/'.$key.'/'.$userid.'('.['sender_userid'].')/'.$mailData['id'].'/'.$stats_id.'?');
+                                               switch ($status) {
+                                                       case 'done':
+                                                               // Prepare the mail
+                                                               $mailData['stats_id'] = bigintval($stats_id);
+
+                                                               // Load message template
+                                                               $mailText = loadEmailTemplate('member_user_pool_normal', $mailData, bigintval($userid));
+
+                                                               // Send mail away
+                                                               sendEmail(getUserData('userid'), $mailData['subject'], $mailText, $isHtml);
+
+                                                               // Count sent mails...
+                                                               sqlQueryEscaped("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `emails_sent`=`emails_sent`+1 WHERE `userid`=%s LIMIT 1",
+                                                                       array(bigintval($mailData['sender_userid'])), __FILE__, __LINE__);
+
+                                                               if (isExtensionInstalledAndNewer('user', '0.1.4')) {
+                                                                       // Update mails received for receiver
+                                                                       sqlQueryEscaped("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `emails_received`=`emails_received`+1 WHERE `userid`=%s LIMIT 1",
+                                                                               array(bigintval($userid)), __FILE__, __LINE__);
+                                                               } // END - if
+
+                                                               // Update mediadata if version is 0.0.4 or higher
+                                                               if (isExtensionInstalledAndNewer('mediadata', '0.0.4')) {
+                                                                       // Update entry (or add missing)
+                                                                       //* DEBUG: */ debugOutput('*MEDIA/L:'.__LINE__.'*');
+                                                                       updateMediadataEntry(array('total_send', 'normal_send'), 'add', 1);
+                                                               } // END - if
+
+                                                               // And count up the mail
+                                                               $GLOBALS['pool_cnt']++;
+                                                               //* DEBUG: */ debugOutput('*EXIT/L:'.__LINE__.'/'.$GLOBALS['pool_cnt'].'*');
+                                                               break;
+
+                                                       case 'already':
+                                                               // Entry already found, but we still count one up!
+                                                               $GLOBALS['pool_cnt']++;
+                                                               //* DEBUG: */ debugOutput('*EXIT/L:'.__LINE__.'/'.$GLOBALS['pool_cnt']);
+                                                               break;
+
+                                                       default: // Unknown return type
+                                                               logDebugMessage(__FILE__, __LINE__, 'Unknown status ' . $status . ' detected. pool_id=' . $mailData['id'] . ',sender=' . $mailData['sender_userid'] . ',stats_id=' . $stats_id);
+                                                               break;
+                                               } // END - switch
+                                       } // END - if
 
-                                       // Do we have reached the maximum to send mails? || (getConfig('max_send') >= $GLOBALS['pool_cnt'])
-                                       //* DEBUG: */ echo "*L:".__LINE__."/".$GLOBALS['pool_cnt'].">=".$DATA[8]."/".getConfig('max_send').">=".$GLOBALS['pool_cnt']."/".$lastSentId."!=".$DATA[0]."*<br />";
-                                       if ((($GLOBALS['pool_cnt'] >= $DATA[8])) && ($lastSentId != $DATA[0])) {
+                                       // Is there reached the maximum to send mails? || (getMaxSend() >= $GLOBALS['pool_cnt'])
+                                       //* DEBUG: */ debugOutput('*L:'.__LINE__.'/'.$GLOBALS['pool_cnt'].'>='.$mailData['target_send'].'/'.getMaxSend().'>='.$GLOBALS['pool_cnt'].'/'.$lastSentId.'!='.$mailData['id'].'*');
+                                       if ((($GLOBALS['pool_cnt'] >= $mailData['target_send'])) && ($lastSentId != $mailData['id'])) {
                                                // Prepare content
                                                $content = array(
-                                                       'sender_uid' => $DATA[1],
-                                                       'category'   => GET_CATEGORY($DATA[9]),
-                                                       'text'       => $DATA[3],
-                                                       'url'        => $DATA[7],
-                                                       'expiration' => CREATE_FANCY_TIME(GET_PAY_POINTS($DATA[5], "time"))
+                                                       'sender_userid' => $mailData['sender_userid'],
+                                                       'cat_id'        => $mailData['cat_id'],
+                                                       'text'          => $mailData['text'],
+                                                       'url'           => $mailData['url'],
+                                                       'expiration'    => '{%pipe,getPaymentTime,createFancyTime=' . $mailData['payment_id'] . '%}'
                                                );
 
                                                // Yes we do, so we notify admin and sender about fully sent mail!
-                                               SEND_ADMIN_NOTIFICATION(ADMIN_SUBJ_SEND_DONE, "done-admin", $content, $uid);
+                                               sendAdminNotification('{--ADMIN_SEND_DONE_SUBJECT--}', 'admin_user_pool_done', $content, $userid);
 
                                                // Get sender's data
-                                               $result_sender = SQL_QUERY_ESC("SELECT surname, family, email FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1",
-                                                       array(bigintval($DATA[1])), __FILE__, __LINE__);
-
-                                               // Is the sender found?
-                                               if (SQL_NUMROWS($result_sender) == 1) {
-                                                       // Load data and prepare mail
-                                                       list($sname, $fname, $email) = SQL_FETCHROW($result_sender);
-
+                                               if (fetchUserData($mailData['sender_userid'])) {
                                                        // Load email template
-                                                       $mailText = LOAD_EMAIL_TEMPLATE("done-member", $content, $DATA[1]);
+                                                       $mailText = loadEmailTemplate('member_user_pool_done', $content, $mailData['sender_userid']);
 
                                                        // Send it also waway
-                                                       SEND_EMAIL($email, MEMBER_SUBJ_SEND_DONE, $mailText);
+                                                       sendEmail(getUserData('userid'), '{--MEMBER_SEND_DONE_SUBJECT--}', $mailText);
                                                } // END - if
 
-                                               // Free result
-                                               SQL_FREERESULT($result_sender);
-
                                                // Set status to SEND because we completely send it away
-                                               SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_pool` SET data_type='SEND', target_send='0', receivers='' WHERE id=%s LIMIT 1",
-                                                       array(bigintval($DATA[0])), __FILE__, __LINE__);
+                                               updatePoolDataById($mailData['id'], NULL, array('data_type' => 'SEND', 'target_send' => '0', 'receivers' => ''));
 
                                                // Update send-completed-time
-                                               SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_user_stats` SET timestamp_send=UNIX_TIMESTAMP() WHERE pool_id=%s LIMIT 1",
-                                                       array(bigintval($DATA[0])), __FILE__, __LINE__);
+                                               sqlQueryEscaped("UPDATE `{?_MYSQL_PREFIX?}_user_stats` SET `timestamp_send`=UNIX_TIMESTAMP() WHERE `pool_id`=%s LIMIT 1",
+                                                       array(bigintval($mailData['id'])), __FILE__, __LINE__);
 
-                                               $lastSentId = $DATA[0]; $GLOBALS['pool_cnt'] = 0;
-                                               $cnt2 += $GLOBALS['pool_cnt'];
+                                               $lastSentId = $mailData['id']; $GLOBALS['pool_cnt'] = '0';
+                                               $count2 += $GLOBALS['pool_cnt'];
 
                                                // Update mediadata if version is 0.0.4 or higher
-                                               if (GET_EXT_VERSION("mediadata") >= "0.0.4") {
+                                               if (isExtensionInstalledAndNewer('mediadata', '0.0.4')) {
                                                        // Update entry (or add missing)
-                                                       //* DEBUG: */ echo "*MEDIA/L:".__LINE__."*<br />";
-                                                       MEDIA_UPDATE_ENTRY(array("total_orders", "normal_orders"), "add", 1);
+                                                       //* DEBUG: */ debugOutput('*MEDIA/L:'.__LINE__.'*');
+                                                       updateMediadataEntry(array('total_orders', 'normal_orders'), 'add', 1);
                                                } // END - if
 
-                                               //* DEBUG: */ echo"*EXIT/L:".__LINE__."/".$P."<br />";
+                                               //* DEBUG: */ debugOutput('*EXIT/L:'.__LINE__.'/'.$P);
                                                break;
                                        }
-                                       // Do we have send maximum mails?
-                                        elseif (($GLOBALS['pool_cnt'] >= getConfig('max_send')) || ($cnt2 >= getConfig('max_send'))) {
+                                       // Is there send maximum mails?
+                                       elseif (($GLOBALS['pool_cnt'] >= getMaxSend()) || ($count2 >= getMaxSend())) {
                                                // There are some mails left to send for next round, so we reset the status back to NEW (=still not fully delivered)
-                                               $ADD = "";
-                                               if ($GLOBALS['pool_cnt'] <= $DATA[8]) $ADD = ", target_send=target_send-".$GLOBALS['pool_cnt'];
-                                               SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_pool` SET data_type='NEW', receivers='%s'".$ADD." WHERE id=%s LIMIT 1",
-                                                array(implode(";", $dummy), bigintval($DATA[0])), __FILE__, __LINE__);
+                                               $add = '';
+                                               if ($GLOBALS['pool_cnt'] <= $mailData['target_send']) $add = ',`target_send`=`target_send`-' . $GLOBALS['pool_cnt'];
+                                               updatePoolDataById($mailData['id'], NULL, array('data_type' => 'NEW', 'receivers' => implode(';', $temporaryReceivers)), NULL, '', $add);
 
-                                               //* DEBUG: */ echo"*EXIT/L:".__LINE__."*<br />";
+                                               //* DEBUG: */ debugOutput('*EXIT/L:'.__LINE__.'*');
                                                break;
                                        }
 
                                        // Free result
-                                       SQL_FREERESULT($result_stats);
+                                       sqlFreeResult($result_stats);
                                } else {
                                        // User does not exists so we have add the sender's points back to sender's account
-                                       if (($RECEIVERS[0] == "0") || (empty($RECEIVERS[0]))) {
+                                       if (($receivers['id'] == '0') || (empty($receivers['id']))) {
                                                // List was empty
-                                               SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_pool` SET data_type='SEND' WHERE id=%s LIMIT 1",
-                                                array(bigintval($DATA[0])), __FILE__, __LINE__);
+                                               updatePoolDataById($mailData['id'], 'data_type', 'SEND');
                                        } else {
                                                // Is the userid set?
-                                               if ($uid > 0) {
+                                               if (isValidId($userid)) {
                                                        // User does not exists, pay points back
-                                                       $points = GET_PAY_POINTS($DATA[5]);
-                                                       ADD_POINTS_REFSYSTEM("pool_payback", $DATA[1], $points, false, "0", false, "direct");
+                                                       initReferralSystem();
+                                                       addPointsThroughReferralSystem('pool_payback', $mailData['sender_userid'], getPaymentPrice($mailData['payment_id']));
 
                                                        // Add points together and remove user
-                                                       $pointsBack[$DATA[1]] += $points;
+                                                       $pointsBack[$mailData['sender_userid']] += getPaymentPrice($mailData['payment_id']);
                                                } // END - if
 
                                                // Count up
-                                               $cnt_back[$DATA[1]]++;
+                                               $count_back[$mailData['sender_userid']]++;
                                        }
 
                                        // Remove entry from list
-                                       unset($dummy[$key]);
+                                       unset($temporaryReceivers[$key]);
 
                                        // Update receivers
-                                       SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_pool` SET receivers='%s' WHERE id=%s LIMIT 1",
-                                               array(implode(";", $dummy), bigintval($DATA[0])), __FILE__, __LINE__);
+                                       updatePoolData($mailData['id'], 'receivers', implode(';', $temporaryReceivers));
                                }
-                       }
-               }
-       }
+                       } // END - foreach
+               } // END - if
+       } // END - while
 
-       // Do we have points to "pay back"?
-       if ((sizeof($pointsBack) > 0) && (!empty($pointsBack[0]))) {
+       // Is there points to "pay back"?
+       if ((isFilledArray($pointsBack)) && (!empty($pointsBack[0]))) {
                // Walk through all points
-               foreach ($pointsBack as $uid => $PB) {
-                       // Add points only when we have points left to add and a valid user ID
-                       if (($PB > 0) && ($uid > 0)) {
+               foreach ($pointsBack as $userid => $PB) {
+                       // Add points only when we have points left to add and a valid user id
+                       if (($PB > 0) && (isValidId($userid))) {
                                // Prepare content
                                $content = array(
-                                       'points' => TRANSLATE_COMMA($DATA[10])
+                                       'points' => $PB
                                );
 
                                // We have to pay back some points to the sender (we add them directly :-P)
-                               $result = SQL_QUERY_ESC("SELECT email FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s AND `status`='CONFIRMED' LIMIT 1",
-                                       array(bigintval($uid)), __FILE__, __LINE__);
-                               $DATA[10] = $PB; $DATA[11] = $cnt_back[$uid];
-
-                               // User found?
-                               if (SQL_NUMROWS($result) == 1) {
-                                       list($email) = SQL_FETCHROW($result);
-                                       SQL_FREERESULT($result);
-
+                               if (fetchUserData($userid)) {
                                        // User account does exists, so we can safely pay back!
-                                       $mailText = LOAD_EMAIL_TEMPLATE("back-member", $content, bigintval($uid));
+                                       $mailText = loadEmailTemplate('member_user_pool_back', $content, bigintval($userid));
 
                                        // Send mail out to member
-                                       SEND_EMAIL($email, MEMBER_BACK_JACKPOT." (".$uid.")", $mailText);
-                               } else {
+                                       sendEmail($userid, '{--MEMBER_BACK_JACKPOT--}' . ' (' . $userid . ')', $mailText);
+                               } elseif (isExtensionActive('jackpot')) {
                                        // Add to jackpot
-                                       ADD_JACKPOT($PB);
+                                       addPointsToJackpot($PB);
 
                                        // Send mail out to admin
-                                       SEND_ADMIN_NOTIFICATION(ADMIN_BACK_JACKPOT." (".$uid.")", "back-admin", $content, "admin");
+                                       sendAdminNotification('{--ADMIN_BACK_JACKPOT--}' . ' (' . $userid . ')', 'admin_user_pool_back', $content, 'admin');
                                }
                        } // END - if
                } // END - foreach
        } // END - if
-}
+} // END - if
 
 // Free memory
-SQL_FREERESULT($result_main);
+sqlFreeResult($result_main);
 
 // Remove variable
 unset($mailText);
 
-//
+// [EOF]
 ?>