More fixes, missing js.php 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  *                                                                      *
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 // Initialize variables
41 $jackpot = 0; $user = 0;
42
43 // Get total points of the doubler itself
44 $DOUBLER_POINTS = DOUBLER_GET_TOTAL_POINTS_LEFT();
45 if ($DOUBLER_POINTS == 0) {
46         // Exit here to prevent some SQL errors (SQL_QUERY_ESC doen't insert zeros! We need to fix this...)
47         return;
48 }
49
50 // If not currently doubled set it to zero
51 unset($_GET['DOUBLER_UID']);
52 unset($_POST['DOUBLER_UID']);
53 set_session('DOUBLER_UID', "");
54 if (empty($DOUBLER_UID)) $DOUBLER_UID = 0;
55
56 // Check for doubles which we can pay out
57 $min = bigintval($_CONFIG['doubler_min'] * 2);
58 $result_total = SQL_QUERY_ESC("SELECT DISTINCT d.id, d.userid, d.points, d.remote_ip, d.timemark
59 FROM "._MYSQL_PREFIX."_doubler AS d
60 LEFT JOIN "._MYSQL_PREFIX."_user_data AS u
61 ON d.userid=u.userid
62 WHERE u.status='CONFIRMED' AND d.points <= %s AND d.points >= %s AND d.completed='N' AND d.is_ref='N'
63 ORDER BY d.timemark", array($DOUBLER_POINTS, $min), __FILE__, __LINE__);
64
65 // Check for accounts with limitation
66 $result_main = SQL_QUERY_ESC("SELECT DISTINCT d.id, d.userid, d.points, d.remote_ip, d.timemark
67 FROM "._MYSQL_PREFIX."_doubler AS d
68 LEFT JOIN "._MYSQL_PREFIX."_user_data AS u
69 ON d.userid=u.userid
70 WHERE u.status='CONFIRMED' AND d.points <= %s AND d.points >= %s AND d.completed='N' AND d.is_ref='N'
71 ORDER BY d.timemark
72 LIMIT %d", array($DOUBLER_POINTS, $min, $_CONFIG['doubler_max_sent']), __FILE__, __LINE__);
73
74 if (((SQL_NUMROWS($result_total) > 0) && ($_CONFIG['doubler_sent_all'] == "Y")) || ((SQL_NUMROWS($result_main) == $_CONFIG['doubler_group_sent']) && ($_CONFIG['doubler_sent_all'] == "N"))) {
75         // Switch to matching SQL resource
76         $result_load = $result_main;
77         if ((SQL_NUMROWS($result_total) > 0) && ($_CONFIG['doubler_sent_all'] == "Y")) $result_load = $result_total;
78
79         // At least one account was found
80         while(list($id, $uid, $points, $ip, $time) = SQL_FETCHROW($result_load)) {
81                 // Only double when points are enougth!
82                 if ($DOUBLER_POINTS >= $points) {
83                         // Check for his ref points
84                         $ref = GET_TOTAL_DATA($uid, "doubler", "points", "refid", false, " AND completed='N' AND is_ref='Y'");
85
86                         // Zero refid when empty (might be helpful!)
87                         if (empty($ref)) $ref = 0;
88                         if (($ref > 0) && ($DOUBLER_UID == $uid) && (!empty($ref))) {
89                                 // Referal points found so add them and set line(s) to completed='Y'
90                                 $points += $ref;
91                                 $result_ref = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_doubler SET completed='Y' WHERE refid=%s AND completed='N' AND is_ref='Y'",
92                                  array(bigintval($uid)), __FILE__, __LINE__);
93                         } else {
94                                 // No referal points found
95                                 $ref = 0;
96                         }
97
98                         // Exclude webmaster from doubling...
99                         if ($uid != $_CONFIG['doubler_uid']) {
100                                 // Add points
101                                 ADD_POINTS_REFSYSTEM($uid, $points, false, "0", false, "direct");
102                         } // END - if
103
104                         // Set entry as "payed"
105                         $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_doubler SET completed='Y' WHERE id=%s LIMIT 1",
106                          array(bigintval($id)), __FILE__, __LINE__);
107
108                         $OK = false;
109                         // Check for jackpot inclusion in doubling process
110                         if (($jackpot > 0) && ($jackpot >= $points) && ($_CONFIG['doubler_jackpot'] == "Y")) {
111                                 // Subtract points from jackpot
112                                 SUB_JACKPOT($points);
113                                 $jackpot -= $points;
114
115                                 // Okay, done!
116                                 $OK = true;
117                         } // END - if
118
119                         // Exclude also webmaster's ID in taking points from webmaster's account
120                         if (($user > 0) && ($user >= $points) && (!$OK) && ($_CONFIG['doubler_uid'] > 0) && ($uid != $_CONFIG['doubler_uid'])) {
121                                 // Add points to used points
122                                 SUB_POINTS($_CONFIG['doubler_uid'], $points);
123
124                                 // Okay, done!
125                                 $OK = true;
126                         } // END - if
127
128                         // Update doubler's account only when others are not updated
129                         if (!$OK) {
130                                 // Add points to used doubler points
131                                 UPDATE_CONFIG("doubler_used", $points, "+");
132                         }
133
134                         // Update variables to prevent errors
135                         $_CONFIG['doubler_used'] += $points;
136                         $DOUBLER_POINTS -= $points;
137
138                         // Prepare array
139                         $content = array(
140                                 // Doubler transmission ID
141                                 'id'     => $id,
142                                 // Doubled points
143                                 'points' => TRANSLATE_COMMA($points),
144                                 // Timemark
145                                 'when'   => MAKE_DATETIME($time, "2"),
146                                 // IP number when the member submitted the doubling form
147                                 'ip'     => $ip,
148                         );
149
150                         // Load mail template and send mail away...
151                         $msg = LOAD_EMAIL_TEMPLATE("member_doubler", $content, $uid);
152                         SEND_EMAIL($uid, DOUBLER_MEMBER_SUBJECT, $msg);
153                 }
154         }
155 }
156
157 // Free memory
158 SQL_FREERESULT($result_total);
159 SQL_FREERESULT($result_main);
160
161 //
162 ?>