More debug output added
[mailer.git] / inc / doubler_send.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 02/16/2005 *
4  * ===============                              Last change: 01/21/2006 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : doubler_send.php                                 *
8  * -------------------------------------------------------------------- *
9  * Short description : Send's out mails for doubled points              *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Sendet Mails bei vergueteter Verdoppelung aus    *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
42         require($INC);
43 }
44
45 // Initialize variables
46 $jackpot = 0; $user = 0;
47
48 // Get total points of the doubler itself
49 $DOUBLER_POINTS = DOUBLER_GET_TOTAL_POINTS_LEFT();
50 if ($DOUBLER_POINTS == 0) {
51         // Exit here to prevent some SQL errors (SQL_QUERY_ESC doen't insert zeros! We need to fix this...)
52         return;
53 } // END - if
54
55 // If not currently doubled set it to zero
56 unset($_GET['DOUBLER_UID']);
57 unset($_POST['DOUBLER_UID']);
58 setSession('DOUBLER_UID', '');
59 if (empty($GLOBALS['doubler_uid'])) $GLOBALS['doubler_uid'] = 0;
60
61 // Check for doubles which we can pay out
62 $min = getConfig(('doubler_min') * 2);
63 $result_total = SQL_QUERY_ESC("SELECT DISTINCT d.id, d.userid, d.points, d.remote_ip, d.timemark
64 FROM `{!_MYSQL_PREFIX!}_doubler` AS d
65 LEFT JOIN `{!_MYSQL_PREFIX!}_user_data` AS u
66 ON d.userid=u.userid
67 WHERE u.`status`='CONFIRMED' AND d.points <= %s AND d.points >= %s AND d.completed='N' AND d.is_ref='N'
68 ORDER BY d.timemark", array($DOUBLER_POINTS, $min), __FILE__, __LINE__);
69
70 // Check for accounts with limitation
71 $result_main = SQL_QUERY_ESC("SELECT DISTINCT d.id, d.userid, d.points, d.remote_ip, d.timemark
72 FROM `{!_MYSQL_PREFIX!}_doubler` AS d
73 LEFT JOIN `{!_MYSQL_PREFIX!}_user_data` AS u
74 ON d.userid=u.userid
75 WHERE u.`status`='CONFIRMED' AND d.points <= %s AND d.points >= %s AND d.completed='N' AND d.is_ref='N'
76 ORDER BY d.timemark
77 LIMIT %d", array($DOUBLER_POINTS, $min, getConfig('doubler_max_sent')), __FILE__, __LINE__);
78
79 // Do we have entries found?
80 if (((SQL_NUMROWS($result_total) > 0) && (getConfig('doubler_sent_all') == 'Y')) || ((SQL_NUMROWS($result_main) == getConfig('doubler_group_sent')) && (getConfig('doubler_sent_all') != 'Y'))) {
81         // Switch to matching SQL resource
82         $result_load = $result_main;
83         if ((SQL_NUMROWS($result_total) > 0) && (getConfig('doubler_sent_all') == 'Y')) $result_load = $result_total;
84
85         // At least one account was found
86         while ($content = SQL_FETCHARRAY($result_load)) {
87                 // Only double when points are enougth!
88                 if ($DOUBLER_POINTS >= $content['points']) {
89                         // Check for his ref points
90                         $ref = GET_TOTAL_DATA($content['userid'], 'doubler', 'points', 'refid', false, " AND completed='N' AND is_ref='Y'");
91
92                         // Zero refid when empty (might be helpful!)
93                         if (empty($ref)) $ref = 0;
94                         if (($ref > 0) && ($GLOBALS['doubler_uid'] == $content['userid']) && (!empty($ref))) {
95                                 // Referal points found so add them and set line(s) to completed='Y'
96                                 $content['points'] += $ref;
97                                 SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_doubler` SET completed='Y' WHERE refid=%s AND completed='N' AND is_ref='Y'",
98                                 array(bigintval($content['userid'])), __FILE__, __LINE__);
99                         } else {
100                                 // No referal points found
101                                 $ref = 0;
102                         }
103
104                         // Exclude webmaster from doubling...
105                         if ($content['userid'] != getConfig('doubler_uid')) {
106                                 // Add points
107                                 ADD_POINTS_REFSYSTEM_DIRECT(sprintf("doubler_%s", strtolower(getConfig('doubler_send_mode'))), $content['userid'], $content['points']);
108                         } // END - if
109
110                         // Set entry as "payed"
111                         SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_doubler` SET completed='Y' WHERE `id`=%s LIMIT 1",
112                         array(bigintval($content['id'])), __FILE__, __LINE__);
113
114                         $okay = false;
115                         // Check for jackpot inclusion in doubling process
116                         if (($jackpot > 0) && ($jackpot >= $content['points']) && (getConfig('doubler_jackpot') == 'Y')) {
117                                 // Subtract points from jackpot
118                                 SUB_JACKPOT($content['points']);
119                                 $jackpot -= $content['points'];
120
121                                 // Okay, done!
122                                 $okay = true;
123                         } // END - if
124
125                         // Exclude also webmaster's ID in taking points from webmaster's account
126                         if (($user > 0) && ($user >= $content['points']) && (!$okay) && (getConfig('doubler_uid') > 0) && ($content['userid'] != getConfig('doubler_uid'))) {
127                                 // Add points to used points
128                                 SUB_POINTS("doubler_payout", getConfig('doubler_uid'), $content['points']);
129
130                                 // Okay, done!
131                                 $okay = true;
132                         } // END - if
133
134                         // Update doubler's account only when others are not updated
135                         if (!$okay) {
136                                 // Add points to used doubler points
137                                 updateConfiguration('doubler_used', $content['points'], '+');
138                         } // END - if
139
140                         // Update variables to prevent errors
141                         incrementConfigEntry('doubler_used', $content['points']);
142                         $DOUBLER_POINTS -= $content['points'];
143
144                         // Prepare array
145                         $content = array(
146                         // Doubler transmission ID
147                                 'id'     => $content['id'],
148                         // Doubled points
149                                 'points' => translateComma($content['points']),
150                         // Timemark
151                                 'when'   => generateDateTime($content['timemark'], '2'),
152                         // IP number when the member submitted the doubling form
153                                 'ip'     => $content['remote_ip'],
154                         );
155
156                         // Load mail template and send mail away...
157                         $msg = LOAD_EMAIL_TEMPLATE("member_doubler", $content, $content['userid']);
158                         sendEmail($content['userid'], getMessage('DOUBLER_MEMBER_SUBJECT'), $msg);
159                 } // END - if
160         } // END - while
161 } // END - if
162
163 // Free memory
164 SQL_FREERESULT($result_total);
165 SQL_FREERESULT($result_main);
166
167 //
168 ?>