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