2 /************************************************************************
3 * MXChange v0.2.1 Start: 11/08/2003 *
4 * =============== Last change: 07/01/2005 *
6 * -------------------------------------------------------------------- *
7 * File : pool-update.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Sends queued mails from the pool *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Sendet freigegebene Mails aus den Pool *
12 * -------------------------------------------------------------------- *
14 * -------------------------------------------------------------------- *
15 * Copyright (c) 2003 - 2008 by Roland Haeder *
16 * For more information visit: http://www.mxchange.org *
18 * This program is free software; you can redistribute it and/or modify *
19 * it under the terms of the GNU General Public License as published by *
20 * the Free Software Foundation; either version 2 of the License, or *
21 * (at your option) any later version. *
23 * This program is distributed in the hope that it will be useful, *
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
26 * GNU General Public License for more details. *
28 * You should have received a copy of the GNU General Public License *
29 * along with this program; if not, write to the Free Software *
30 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
32 ************************************************************************/
34 // Some security stuff...
35 if (!defined('__SECURITY')) {
36 $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
40 // Don't run on daily reset
41 if (defined('__DAILY_RESET')) {
46 // Test html extensions once
47 $HTML_EXT = EXT_IS_ACTIVE("html_mail", true);
49 // Check for freed mail orders to send out
51 // 0 1 2 3 4 5 6 7 8 9 10
52 $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__);
54 // 0 1 2 3 4 5 6 7 8 9 10
55 $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__);
59 $cnt = 0; $cnt2 = 0; $LAST_SENT_ID = 0; $cnt_back = array("0"); $points_BACK = array("0");
60 if (SQL_NUMROWS($result_main) > 0)
62 while ($DATA = SQL_FETCHROW($result_main))
64 // Check fetched data for HTML
65 $HTML = $DATA[10]; if ($HTML == $DATA[0]) $HTML = "N";
67 // Compile URL and subject line
68 $DATA[7] = COMPILE_CODE($DATA[7]);
70 // Set mail order as "active". That means it will be sent out
71 $result_active = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_pool SET data_type='ACTIVE' WHERE id=%s AND data_type='NEW' LIMIT 1",
72 array($DATA[0]), __FILE__, __LINE__);
73 if (SQL_AFFECTEDROWS() == 1)
75 // "Explode" all receivers into an array
76 if (ereg(";", $DATA[4]))
78 // There's more than one receiver in the list...
79 $RECEIVERS = explode(";", $DATA[4]);
81 elseif (!empty($DATA[4]))
84 $RECEIVERS = array($DATA[4]);
89 $RECEIVERS = array("0");
93 // Now, if we are good little boys and girls Santa left us some user-ids.
94 // We can now send mails to them...
95 foreach ($RECEIVERS as $key => $uid)
98 $result_user = SQL_QUERY_ESC("SELECT gender, surname, family, email FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
99 array(bigintval($uid)), __FILE__, __LINE__);
101 // Is his data available?
102 //* DEBUG: */ echo "*L:".__LINE__."/".SQL_NUMROWS($result_user)."*<br />";
103 if (SQL_NUMROWS($result_user) == 1)
105 // The final receiver does exists so we can continue...
106 list($gender, $sname, $fname, $email) = SQL_FETCHROW($result_user);
109 SQL_FREERESULT($result_user);
111 // Do we have a stats entry?
112 $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",
113 array($DATA[0], $DATA[1], $DATA[6]), __FILE__, __LINE__);
115 // If there's no stats entry add it!
116 //* DEBUG: */ echo "!L:".__LINE__."/".SQL_NUMROWS($result_stats)."!<br />";
117 if (SQL_NUMROWS($result_stats) == 0)
119 // No entry was found, so we add him!
120 $result_stats = 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())",
121 array(bigintval($DATA[0]), bigintval($DATA[1]), bigintval($DATA[9]), bigintval($DATA[5]), $DATA[2], $DATA[7], $DATA[8], bigintval($DATA[6])), __FILE__, __LINE__);
123 // Receive it's ID for the links table
124 $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",
125 array(bigintval($DATA[0]), bigintval($DATA[1]), bigintval($DATA[6])), __FILE__, __LINE__);
128 //* DEBUG: */ echo "!L:".__LINE__."/".SQL_NUMROWS($result_stats)."!<br />";
129 if (SQL_NUMROWS($result_stats) == 1)
132 list($stats_id) = SQL_FETCHROW($result_stats);
133 SQL_FREERESULT($result_stats);
135 // Mark this user as "spammed" ;-) And place a line for him...
136 //* DEBUG: */ echo "?L:".__LINE__."/".$dummy."/".$key."/".$uid."(".$DATA[1].")/".$DATA[0]."/".$stats_id."?<br />";
137 switch (REMOVE_RECEIVER($dummy, $key, bigintval($uid), bigintval($DATA[0]), bigintval($stats_id)))
141 $DATA[11] = bigintval($stats_id);
144 $DATA[14] = TRANSLATE_GENDER($gender);
146 // Replace text variables
147 foreach ($REPLACER as $key => $value) {
148 if (isset($DATA[$key])) $DATA[3] = str_replace($value, $DATA[$key], $DATA[3]);
155 'sender_uid' => $DATA[1],
156 'category' => GET_CATEGORY($DATA[9]),
157 'time' => CREATE_FANCY_TIME(GET_PAY_POINTS($DATA[5], "time")),
158 'points' => TRANSLATE_COMMA(GET_PAY_POINTS($DATA[5], "payment")),
162 // Load message template
163 $msg = LOAD_EMAIL_TEMPLATE("normal-mail", $content, bigintval($uid));
166 SEND_EMAIL($email, $DATA[2], $msg, $HTML);
168 // Count sent mails...
169 $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data SET emails_sent=emails_sent+1 WHERE userid=%s LIMIT 1",
170 array(bigintval($DATA[1])), __FILE__, __LINE__);
172 if (GET_EXT_VERSION("user") >= "0.1.4") {
173 // Update mails received for receiver
174 $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data SET emails_received=emails_received+1 WHERE userid=%s LIMIT 1",
175 array(bigintval($uid)), __FILE__, __LINE__);
178 // Update mediadata if version is 0.0.4 or higher
179 if (GET_EXT_VERSION("mediadata") >= "0.0.4") {
180 // Update entry (or add missing)
181 //* DEBUG: */ echo "*MEDIA/L:".__LINE__."*<br />";
182 MEDIA_UPDATE_ENTRY(array("total_send", "normal_send"), "add", 1);
185 // And count up the mail
187 //* DEBUG: */ echo"*EXIT/L:".__LINE__."/".$cnt."*<br />";
191 // Entry already found, but we still count one up!
193 //* DEBUG: */ echo"*EXIT/L:".__LINE__."/".$cnt."<br />";
198 // Do we have reached the maximum to send mails? || ($_CONFIG['max_send'] >= $cnt)
199 //* DEBUG: */ echo "*L:".__LINE__."/".$cnt.">=".$DATA[8]."/".$_CONFIG['max_send'].">=".$cnt."/".$LAST_SENT_ID."!=".$DATA[0]."*<br />";
200 if ((($cnt >= $DATA[8])) && ($LAST_SENT_ID != $DATA[0])) {
203 'sender_uid' => $DATA[1],
204 'category' => GET_CATEGORY($DATA[9]),
207 'expiration' => CREATE_FANCY_TIME(GET_PAY_POINTS($DATA[5], "time"))
210 // Yes we do, so we notify admin and sender about fully sent mail!
211 SEND_ADMIN_NOTIFICATION(ADMIN_SUBJ_SEND_DONE, "done-admin", $content, $uid);
214 $result_sender = SQL_QUERY_ESC("SELECT surname, family, email FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
215 array(bigintval($DATA[1])), __FILE__, __LINE__);
216 if (SQL_NUMROWS($result_sender) == 1) {
217 // Load data and prepare mail
218 list($sname, $fname, $email) = SQL_FETCHROW($result_sender);
219 SQL_FREERESULT($result_sender);
221 // Load email template
222 $msg = LOAD_EMAIL_TEMPLATE("done-member", $content, $DATA[1]);
224 // Send it also waway
225 SEND_EMAIL($email, MEMBER_SUBJ_SEND_DONE, $msg);
228 // Set status to SEND because we completely send it away
229 $result_done = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_pool SET data_type='SEND', target_send='0', receivers='' WHERE id=%s LIMIT 1",
230 array(bigintval($DATA[0])), __FILE__, __LINE__);
232 // Update send-completed-time
233 $result_user = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_stats SET timestamp_send=UNIX_TIMESTAMP() WHERE pool_id=%s LIMIT 1",
234 array(bigintval($DATA[0])), __FILE__, __LINE__);
236 $LAST_SENT_ID = $DATA[0]; $cnt = 0;
239 // Update mediadata if version is 0.0.4 or higher
240 if (GET_EXT_VERSION("mediadata") >= "0.0.4")
242 // Update entry (or add missing)
243 //* DEBUG: */ echo "*MEDIA/L:".__LINE__."*<br />";
244 MEDIA_UPDATE_ENTRY(array("total_orders", "normal_orders"), "add", 1);
247 //* DEBUG: */ echo"*EXIT/L:".__LINE__."/".$P."<br />";
250 // Do we have send maximum mails?
251 elseif (($cnt >= $_CONFIG['max_send']) || ($cnt2 >= $_CONFIG['max_send']))
253 // There are some mails left to send for next round, so we reset the status back to NEW (=still not fully delivered)
255 if ($cnt <= $DATA[8]) $ADD = ", target_send=target_send-".$cnt;
256 $result_queue = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_pool SET data_type='NEW', receivers='%s'".$ADD." WHERE id=%s LIMIT 1",
257 array(implode(";", $dummy), bigintval($DATA[0])), __FILE__, __LINE__);
259 //* DEBUG: */ echo"*EXIT/L:".__LINE__."*<br />";
265 // User does not exists so we have add the sender's points back to sender's account
266 if (($RECEIVERS[0] == "0") || (empty($RECEIVERS[0])))
269 $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_pool SET data_type='SEND' WHERE id=%s LIMIT 1",
270 array(bigintval($DATA[0])), __FILE__, __LINE__);
276 // User does not exists, pay points back
277 $points = GET_PAY_POINTS($DATA[5]);
278 ADD_POINTS_REFSYSTEM($DATA[1], $points, false, "0", false, "direct");
280 // Add points together and remove user
281 $points_BACK[$DATA[1]] += $points;
283 $cnt_back[$DATA[1]]++;
285 // Remove entry from list
289 $result_queue = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_pool SET receivers='%s' WHERE id=%s LIMIT 1",
290 array(implode(";", $dummy), bigintval($DATA[0])), __FILE__, __LINE__);
295 if ((sizeof($points_BACK) > 0) && (!empty($points_BACK[0]))) {
296 foreach ($points_BACK as $uid => $PB) {
297 // Add points only when we have points left to add and a valid user ID
298 if (($PB > 0) && ($uid > 0)) {
301 'points' => TRANSLATE_COMMA($DATA[10])
304 // We have to pay back some points to the sender (we add them directly :-P)
305 $result = SQL_QUERY_ESC("SELECT email FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s AND status='CONFIRMED' LIMIT 1",
306 array(bigintval($uid)), __FILE__, __LINE__);
307 $DATA[10] = $PB; $DATA[11] = $cnt_back[$uid];
308 if (SQL_NUMROWS($result) == 1) {
309 list($email) = SQL_FETCHROW($result);
310 SQL_FREERESULT($result);
312 // User account does exists, so we can safely pay back!
313 $msg = LOAD_EMAIL_TEMPLATE("back-member", $content, bigintval($uid));
315 // Send mail out to member
316 SEND_EMAIL($email, MEMBER_BACK_JACKPOT." (".$uid.")", $msg);
321 // Send mail out to admin
322 SEND_ADMIN_NOTIFICATION(ADMIN_BACK_JACKPOT." (".$uid.")", "back-admin", $content, "admin");
330 SQL_FREERESULT($result_main);
332 // Only send bonus mail when bonus extension is active and maximum send-mails is not reached
333 if ((EXT_IS_ACTIVE("bonus") && ($cnt < $_CONFIG['max_send'])))
335 // Do we need to send out bonus mails?
337 // 0 1 2 3 4 5 6 7 8 9 10 11
338 $result_bonus = SQL_QUERY("SELECT id, subject, text, receivers, points, time, data_type, timestamp, url, cat_id, target_send, html_msg FROM "._MYSQL_PREFIX."_bonus WHERE data_type='NEW' ORDER BY timestamp DESC", __FILE__, __LINE__);
340 // 0 1 2 3 4 5 6 7 8 9 10
341 $result_bonus = SQL_QUERY("SELECT id, subject, text, receivers, points, time, data_type, timestamp, url, cat_id, target_send FROM "._MYSQL_PREFIX."_bonus WHERE data_type='NEW' ORDER BY timestamp DESC", __FILE__, __LINE__);
344 if (SQL_NUMROWS($result_bonus) > 0) {
345 // Send these mails away...
347 while ($DATA = SQL_FETCHARRAY($result_bonus)) {
349 $DATA['url'] = COMPILE_CODE($DATA['url']);
351 // Message is active in queue
352 $result_queue = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_bonus SET data_type='QUEUE' WHERE id=%s LIMIT 1",
353 array(bigintval($DATA['id'])), __FILE__, __LINE__);
355 // "Explode" all receivers into an array
356 if (ereg(";", $DATA['receivers'])) {
357 // There's more than one receiver in the list...
358 $RECEIVERS = explode(";", $DATA['receivers']);
359 } elseif (!empty($DATA['points'])) {
360 // Only one user left
361 $RECEIVERS = array($DATA['receivers']);
364 $RECEIVERS = array("0");
368 // Now, if we are good little boys and girls Santa left us some user-ids.
369 // We can now send mails to them...
370 foreach ($RECEIVERS as $key => $uid) {
371 // Load personal data
372 //* DEBUG: */ echo "*L:".__LINE__."/".$uid."*<br />";
373 $result_user = SQL_QUERY_ESC("SELECT surname, family, email FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
374 array(bigintval($uid)), __FILE__, __LINE__);
376 // Is his data available?
377 if (SQL_NUMROWS($result_user) == 1)
379 // The final receiver does exists so we can continue...
380 list($sname, $fname, $email) = SQL_FETCHROW($result_user);
381 //* DEBUG: */ echo "OK!/L:".__LINE__."<br />";
383 // Mark this user as "spammed" ;-) And place a line for him...
384 if (REMOVE_RECEIVER($dummy, $key, $uid, $DATA['id'], $DATA['id'], true) == "done")
386 // Replace text variables
387 foreach ($REPLACER as $key => $value) {
388 if (isset($DATA[$key])) $DATA['text'] = str_replace($value, $DATA[$key], $DATA['text']);
394 'url' => $DATA['url'],
395 'time' => CREATE_FANCY_TIME($DATA['time']),
396 'points' => TRANSLATE_COMMA($DATA['points']),
397 'category' => GET_CATEGORY($DATA['cat_id']),
398 'text' => $DATA['text']
402 $msg = LOAD_EMAIL_TEMPLATE("bonus-mail", $content, $uid);
405 if (isset($DATA['html_msg'])) {
407 SEND_EMAIL($email, $DATA['subject'], $msg, $DATA['html_msg']);
410 SEND_EMAIL($email, $DATA['subject'], $msg);
413 // Count one up and remove entry from dummy array
414 $cnt++; unset($dummy[$key]);
416 if (GET_EXT_VERSION("user") >= "0.1.4")
418 // Update mails received for receiver
419 $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data SET emails_received=emails_received+1 WHERE userid=%s LIMIT 1",
420 array(bigintval($uid)), __FILE__, __LINE__);
423 // Do we have send maximum mails?
424 if (($cnt >= $_CONFIG['max_send']) || (SELECTION_COUNT($dummy) == 0))
427 //* DEBUG: */ echo "*EXIT/L:".__LINE__."<br />";
434 SQL_FREERESULT($result_user);
437 // Update mediadata if version is 0.0.4 or higher
438 if (GET_EXT_VERSION("mediadata") >= "0.0.4")
440 // Update entry (or add missing
442 if (!empty($cnt2) && empty($cnt)) $P = $cnt2;
443 //* DEBUG: */ echo "+MEDIA/L:".__LINE__."/".$P."+<br />";
444 MEDIA_UPDATE_ENTRY(array("total_send", "bonus_send"), "add", $P);
447 // Close sending system
448 //* DEBUG: */ echo "-L:".__LINE__."/".SELECTION_COUNT($dummy)."-<br />";
449 if (SELECTION_COUNT($dummy) == 0)
452 $result_done = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_bonus SET data_type='SEND', target_send='0', receivers='' WHERE id=%s LIMIT 1",
453 array(bigintval($DATA['id'])), __FILE__, __LINE__);
454 //* DEBUG: */ echo "*L:".__LINE__."*<br />";
456 // Update mediadata if version is 0.0.4 or higher
457 if (GET_EXT_VERSION("mediadata") >= "0.0.4")
459 // Update entry (or add missing)
460 //* DEBUG: */ echo "*MEDIA/L:".__LINE__."*<br />";
461 MEDIA_UPDATE_ENTRY(array("total_orders", "bonus_orders"), "add", 1);
464 elseif ($cnt >= $_CONFIG['max_send'])
467 $result_done = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_bonus SET data_type='NEW', target_send=%s, receivers='%s' WHERE id=%s LIMIT 1",
468 array(SELECTION_COUNT($dummy), implode(";", $dummy), bigintval($DATA['id'])), __FILE__, __LINE__);
469 //* DEBUG: */ echo "*L:".__LINE__."<PRE>";
470 //* DEBUG: */ print_r($dummy);
471 //* DEBUG: */ echo "</PRE>\n!!!<br />";
478 SQL_FREERESULT($result_bonus);
481 // Remove message (IMPORTANT!)