Sending pool splitted (prepared for upcoming feature)
[mailer.git] / inc / pool / pool-user.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 12/12/2008 *
4  * ===============                              Last change: 12/12/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : pool-user.php                                    *
8  * -------------------------------------------------------------------- *
9  * Short description : Sends queued user mails from the pool            *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Sendet freigegebene Mitglieder-Mails aus Pool    *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
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.                                  *
22  *                                                                      *
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.                         *
27  *                                                                      *
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,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if (!defined('__SECURITY')) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 }
39
40 // Don't run on daily reset
41 if (defined('__DAILY_RESET')) {
42         // Skip here
43         return false;
44 } elseif (!EXT_IS_ACTIVE("user")) {
45         // Abort here if extension user is not active
46         return false;
47 }
48
49 // Check for freed mail orders to send out
50 if (EXT_IS_ACTIVE("html_mail")) {
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__);
53 } else {
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__);
56 }
57
58 // Reset variables
59 $cnt2 = 0; $LAST_SENT_ID = 0; $cnt_back = array("0"); $pointsBack = array("0");
60 if (SQL_NUMROWS($result_main) > 0) {
61         while ($DATA = SQL_FETCHROW($result_main)) {
62                 // Check fetched data for HTML
63                 $HTML = $DATA[10]; if ($HTML == $DATA[0]) $HTML = "N";
64
65                 // Compile URL and subject line
66                 $DATA[7] = COMPILE_CODE($DATA[7]);
67
68                 // Set mail order as "active". That means it will be sent out
69                 $result_active = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_pool SET data_type='ACTIVE' WHERE id=%s AND data_type='NEW' LIMIT 1",
70                         array($DATA[0]), __FILE__, __LINE__);
71
72                 // Entry updated?
73                 if (SQL_AFFECTEDROWS() == 1) {
74                         // "Explode" all receivers into an array
75                         if (ereg(";", $DATA[4])) {
76                                 // There's more than one receiver in the list...
77                                 $RECEIVERS = explode(";", $DATA[4]);
78                         } elseif (!empty($DATA[4])) {
79                                 // Only one user left
80                                 $RECEIVERS = array($DATA[4]);
81                         } else {
82                                 // No users left
83                                 $RECEIVERS = array("0");
84                         }
85                         $dummy = $RECEIVERS;
86
87                         // Now, if we are good little boys and girls Santa left us some user-ids.
88                         // We can now send mails to them...
89                         foreach ($RECEIVERS as $key => $uid) {
90                                 // Lookup user ID
91                                 $result_user = SQL_QUERY_ESC("SELECT gender, surname, family, email FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
92                                  array(bigintval($uid)), __FILE__, __LINE__);
93
94                                 // Is his data available?
95                                 //* DEBUG: */ echo "*L:".__LINE__."/".SQL_NUMROWS($result_user)."*<br />";
96                                 if (SQL_NUMROWS($result_user) == 1)
97                                 {
98                                         // The final receiver does exists so we can continue...
99                                         list($gender, $sname, $fname, $email) = SQL_FETCHROW($result_user);
100
101                                         // Free memory
102                                         SQL_FREERESULT($result_user);
103
104                                         // Do we have a stats entry?
105                                         $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",
106                                          array($DATA[0], $DATA[1], $DATA[6]), __FILE__, __LINE__);
107
108                                         // If there's no stats entry add it!
109                                         //* DEBUG: */ echo "!L:".__LINE__."/".SQL_NUMROWS($result_stats)."!<br />";
110                                         if (SQL_NUMROWS($result_stats) == 0)
111                                         {
112                                                 // No entry was found, so we add him!
113                                                 $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())",
114                                                  array(bigintval($DATA[0]), bigintval($DATA[1]), bigintval($DATA[9]), bigintval($DATA[5]), $DATA[2], $DATA[7], $DATA[8], bigintval($DATA[6])), __FILE__, __LINE__);
115
116                                                 // Receive it's ID for the links table
117                                                 $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",
118                                                  array(bigintval($DATA[0]), bigintval($DATA[1]), bigintval($DATA[6])), __FILE__, __LINE__);
119                                         }
120
121                                         //* DEBUG: */ echo "!L:".__LINE__."/".SQL_NUMROWS($result_stats)."!<br />";
122                                         if (SQL_NUMROWS($result_stats) == 1)
123                                         {
124                                                 // We got one!
125                                                 list($stats_id) = SQL_FETCHROW($result_stats);
126                                                 SQL_FREERESULT($result_stats);
127
128                                                 // Mark this user as "spammed" ;-) And place a line for him...
129                                                 //* DEBUG: */ echo "?L:".__LINE__."/".$dummy."/".$key."/".$uid."(".$DATA[1].")/".$DATA[0]."/".$stats_id."?<br />";
130                                                 switch (REMOVE_RECEIVER($dummy, $key, bigintval($uid), bigintval($DATA[0]), bigintval($stats_id)))
131                                                 {
132                                                 case "done":
133                                                         // Prepare the mail
134                                                         $DATA[11] = bigintval($stats_id);
135                                                         $DATA[12] = $sname;
136                                                         $DATA[13] = $fname;
137                                                         $DATA[14] = TRANSLATE_GENDER($gender);
138
139                                                         // Replace text variables
140                                                         foreach ($REPLACER as $key => $value) {
141                                                                 if (isset($DATA[$key])) $DATA[3] = str_replace($value, $DATA[$key], $DATA[3]);
142                                                         } // END - if
143
144                                                         // Prepare content
145                                                         $content = array(
146                                                                 'id'         => $DATA[11],
147                                                                 'url'        => $DATA[7],
148                                                                 'sender_uid' => $DATA[1],
149                                                                 'category'   => GET_CATEGORY($DATA[9]),
150                                                                 'time'       => CREATE_FANCY_TIME(GET_PAY_POINTS($DATA[5], "time")),
151                                                                 'points'     => TRANSLATE_COMMA(GET_PAY_POINTS($DATA[5], "payment")),
152                                                                 'text'       => $DATA[3]
153                                                         );
154
155                                                         // Load message template
156                                                         $msg = LOAD_EMAIL_TEMPLATE("normal-mail", $content, bigintval($uid));
157
158                                                         // Send mail away
159                                                         SEND_EMAIL($email, $DATA[2], $msg, $HTML);
160
161                                                         // Count sent mails...
162                                                         $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data SET emails_sent=emails_sent+1 WHERE userid=%s LIMIT 1",
163                                                          array(bigintval($DATA[1])), __FILE__, __LINE__);
164
165                                                         if (GET_EXT_VERSION("user") >= "0.1.4") {
166                                                                 // Update mails received for receiver
167                                                                 $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data SET emails_received=emails_received+1 WHERE userid=%s LIMIT 1",
168                                                                 array(bigintval($uid)), __FILE__, __LINE__);
169                                                         } // END - if
170
171                                                         // Update mediadata if version is 0.0.4 or higher
172                                                         if (GET_EXT_VERSION("mediadata") >= "0.0.4") {
173                                                                 // Update entry (or add missing)
174                                                                 //* DEBUG: */ echo "*MEDIA/L:".__LINE__."*<br />";
175                                                                 MEDIA_UPDATE_ENTRY(array("total_send", "normal_send"), "add", 1);
176                                                         } // END - if
177
178                                                         // And count up the mail
179                                                         $cnt++;
180                                                         //* DEBUG: */ echo"*EXIT/L:".__LINE__."/".$cnt."*<br />";
181                                                         break;
182
183                                                 case "already":
184                                                         // Entry already found, but we still count one up!
185                                                         $cnt++;
186                                                         //* DEBUG: */ echo"*EXIT/L:".__LINE__."/".$cnt."<br />";
187                                                         break;
188                                                 }
189                                         }
190
191                                         // Do we have reached the maximum to send mails? || ($_CONFIG['max_send'] >= $cnt)
192                                         //* DEBUG: */ echo "*L:".__LINE__."/".$cnt.">=".$DATA[8]."/".$_CONFIG['max_send'].">=".$cnt."/".$LAST_SENT_ID."!=".$DATA[0]."*<br />";
193                                         if ((($cnt >= $DATA[8])) && ($LAST_SENT_ID != $DATA[0])) {
194                                                 // Prepare content
195                                                 $content = array(
196                                                         'sender_uid' => $DATA[1],
197                                                         'category'   => GET_CATEGORY($DATA[9]),
198                                                         'text'       => $DATA[3],
199                                                         'url'        => $DATA[7],
200                                                         'expiration' => CREATE_FANCY_TIME(GET_PAY_POINTS($DATA[5], "time"))
201                                                 );
202
203                                                 // Yes we do, so we notify admin and sender about fully sent mail!
204                                                 SEND_ADMIN_NOTIFICATION(ADMIN_SUBJ_SEND_DONE, "done-admin", $content, $uid);
205
206                                                 // Get sender's data
207                                                 $result_sender = SQL_QUERY_ESC("SELECT surname, family, email FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
208                                                         array(bigintval($DATA[1])), __FILE__, __LINE__);
209
210                                                 // Is the sender found?
211                                                 if (SQL_NUMROWS($result_sender) == 1) {
212                                                         // Load data and prepare mail
213                                                         list($sname, $fname, $email) = SQL_FETCHROW($result_sender);
214                                                         SQL_FREERESULT($result_sender);
215
216                                                         // Load email template
217                                                         $msg = LOAD_EMAIL_TEMPLATE("done-member", $content, $DATA[1]);
218
219                                                         // Send it also waway
220                                                         SEND_EMAIL($email, MEMBER_SUBJ_SEND_DONE, $msg);
221                                                 } // END - if
222
223                                                 // Set status to SEND because we completely send it away
224                                                 $result_done = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_pool SET data_type='SEND', target_send='0', receivers='' WHERE id=%s LIMIT 1",
225                                                         array(bigintval($DATA[0])), __FILE__, __LINE__);
226
227                                                 // Update send-completed-time
228                                                 $result_user = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_stats SET timestamp_send=UNIX_TIMESTAMP() WHERE pool_id=%s LIMIT 1",
229                                                         array(bigintval($DATA[0])), __FILE__, __LINE__);
230
231                                                 $LAST_SENT_ID = $DATA[0]; $cnt = 0;
232                                                 $cnt2 += $cnt;
233
234                                                 // Update mediadata if version is 0.0.4 or higher
235                                                 if (GET_EXT_VERSION("mediadata") >= "0.0.4") {
236                                                         // Update entry (or add missing)
237                                                         //* DEBUG: */ echo "*MEDIA/L:".__LINE__."*<br />";
238                                                         MEDIA_UPDATE_ENTRY(array("total_orders", "normal_orders"), "add", 1);
239                                                 } // END - if
240
241                                                 //* DEBUG: */ echo"*EXIT/L:".__LINE__."/".$P."<br />";
242                                                 break;
243                                         }
244                                         // Do we have send maximum mails?
245                                          elseif (($cnt >= $_CONFIG['max_send']) || ($cnt2 >= $_CONFIG['max_send'])) {
246                                                 // There are some mails left to send for next round, so we reset the status back to NEW (=still not fully delivered)
247                                                 $ADD = "";
248                                                 if ($cnt <= $DATA[8]) $ADD = ", target_send=target_send-".$cnt;
249                                                 $result_queue = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_pool SET data_type='NEW', receivers='%s'".$ADD." WHERE id=%s LIMIT 1",
250                                                  array(implode(";", $dummy), bigintval($DATA[0])), __FILE__, __LINE__);
251
252                                                 //* DEBUG: */ echo"*EXIT/L:".__LINE__."*<br />";
253                                                 break;
254                                         }
255                                 } else {
256                                         // User does not exists so we have add the sender's points back to sender's account
257                                         if (($RECEIVERS[0] == "0") || (empty($RECEIVERS[0]))) {
258                                                 // List was empty
259                                                 $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_pool SET data_type='SEND' WHERE id=%s LIMIT 1",
260                                                  array(bigintval($DATA[0])), __FILE__, __LINE__);
261                                         } else {
262                                                 // Is the userid set?
263                                                 if ($uid > 0) {
264                                                         // User does not exists, pay points back
265                                                         $points = GET_PAY_POINTS($DATA[5]);
266                                                         ADD_POINTS_REFSYSTEM("pool_payback", $DATA[1], $points, false, "0", false, "direct");
267
268                                                         // Add points together and remove user
269                                                         $pointsBack[$DATA[1]] += $points;
270                                                 } // END - if
271
272                                                 // Count up
273                                                 $cnt_back[$DATA[1]]++;
274                                         }
275
276                                         // Remove entry from list
277                                         unset($dummy[$key]);
278
279                                         // Update receivers
280                                         $result_queue = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_pool SET receivers='%s' WHERE id=%s LIMIT 1",
281                                          array(implode(";", $dummy), bigintval($DATA[0])), __FILE__, __LINE__);
282                                 }
283                         }
284                 }
285         }
286
287         // Do we have points to "pay back"?
288         if ((sizeof($pointsBack) > 0) && (!empty($pointsBack[0]))) {
289                 // Walk through all points
290                 foreach ($pointsBack as $uid => $PB) {
291                         // Add points only when we have points left to add and a valid user ID
292                         if (($PB > 0) && ($uid > 0)) {
293                                 // Prepare content
294                                 $content = array(
295                                         'points' => TRANSLATE_COMMA($DATA[10])
296                                 );
297
298                                 // We have to pay back some points to the sender (we add them directly :-P)
299                                 $result = SQL_QUERY_ESC("SELECT email FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s AND status='CONFIRMED' LIMIT 1",
300                                         array(bigintval($uid)), __FILE__, __LINE__);
301                                 $DATA[10] = $PB; $DATA[11] = $cnt_back[$uid];
302
303                                 // User found?
304                                 if (SQL_NUMROWS($result) == 1) {
305                                         list($email) = SQL_FETCHROW($result);
306                                         SQL_FREERESULT($result);
307
308                                         // User account does exists, so we can safely pay back!
309                                         $msg = LOAD_EMAIL_TEMPLATE("back-member", $content, bigintval($uid));
310
311                                         // Send mail out to member
312                                         SEND_EMAIL($email, MEMBER_BACK_JACKPOT." (".$uid.")", $msg);
313                                 } else {
314                                         // Add to jackpot
315                                         ADD_JACKPOT($PB);
316
317                                         // Send mail out to admin
318                                         SEND_ADMIN_NOTIFICATION(ADMIN_BACK_JACKPOT." (".$uid.")", "back-admin", $content, "admin");
319                                 }
320                         } // END - if
321                 } // END - foreach
322         } // END - if
323 }
324
325 // Free memory
326 SQL_FREERESULT($result_main);
327
328 //
329 ?>