Rewrote 'we' word a little, rewrote mail order to use SQL_INSERTID() instead of anoth...
[mailer.git] / inc / mails / doubler_mails.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 02/16/2005 *
4  * ===================                          Last change: 01/21/2006 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : doubler_mails.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  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
20  * For more information visit: http://mxchange.org                      *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
40         die();
41 } elseif (!isExtensionActive('doubler')) {
42         // Do not execute when extension is absent
43         return;
44 } elseif (!isHtmlOutputMode()) {
45         // Do not execute when script is in CSS mode
46         return;
47 }
48
49 // Initialize variables
50 $jackpotPoints = '0';
51 $userPoints = '0';
52
53 // @TODO Can this be rewritten to a filter?
54 if (isExtensionActive('jackpot')) {
55         $jackpotPoints = getJackpotPoints();
56 } // END - if
57
58 // Get total points of the doubler itself
59 $DOUBLER_POINTS = getDoublerTotalPointsLeft();
60 if ($DOUBLER_POINTS == '0') {
61         // Exit here to prevent some SQL errors (SQL_QUERY_ESC doen't insert zeros! We need to fix this...)
62         return;
63 } // END - if
64
65 // If not currently doubled set it to zero
66 unsetGetRequestElement('DOUBLER_USERID');
67 unsetPostRequestElement('DOUBLER_USERID');
68 setSession('DOUBLER_USERID', '');
69 if (empty($GLOBALS['local_doubler_userid'])) $GLOBALS['local_doubler_userid'] = '0';
70
71 // Check for doubles which we can pay out
72 $result_total = SQL_QUERY_ESC("SELECT
73         d.id, d.userid, d.points, d.remote_ip, d.timemark
74 FROM
75         `{?_MYSQL_PREFIX?}_doubler` AS d
76 LEFT JOIN
77         `{?_MYSQL_PREFIX?}_user_data` AS u
78 ON
79         d.`userid`=u.`userid`
80 WHERE
81         u.`status`='CONFIRMED'
82         " . runFilterChain('user_exclusion_sql', ' ') . " AND
83         d.`points` <= %s AND
84         d.`points` >= ({?doubler_min?} * 2) AND
85         d.`completed`='N' AND
86         d.`is_ref`='N'
87 ORDER BY
88         d.`timemark` ASC",
89         array(
90                 $DOUBLER_POINTS
91         ), __FILE__, __LINE__);
92
93 // Check for accounts with limitation
94 $result_main = SQL_QUERY_ESC("SELECT
95         d.`id`,
96         d.`userid`,
97         d.`points`,
98         d.`remote_ip`,
99         d.`timemark`
100 FROM
101         `{?_MYSQL_PREFIX?}_doubler` AS d
102 LEFT JOIN
103         `{?_MYSQL_PREFIX?}_user_data` AS u
104 ON
105         d.`userid`=u.`userid`
106 WHERE
107         u.`status`='CONFIRMED'
108         " . runFilterChain('user_exclusion_sql', ' ') . " AND
109         d.`points` <= %s AND
110         d.`points` >= ({?doubler_min?} * 2) AND
111         d.`completed`='N' AND
112         d.`is_ref`='N'
113 ORDER BY
114         d.`timemark` ASC
115 LIMIT {?doubler_max_sent?}",
116         array(
117                 $DOUBLER_POINTS
118         ), __FILE__, __LINE__);
119
120 // Are there entries found?
121 if (((!SQL_HASZERONUMS($result_total)) && (getConfig('doubler_sent_all') == 'Y')) || ((SQL_NUMROWS($result_main) == getConfig('doubler_group_sent')) && (getConfig('doubler_sent_all') != 'Y'))) {
122         // Switch to matching SQL resource
123         $result_load = $result_main;
124         if ((!SQL_HASZERONUMS($result_total)) && (getConfig('doubler_sent_all') == 'Y')) {
125                 $result_load = $result_total;
126         } // END - if
127
128         // At least one account was found
129         while ($content = SQL_FETCHARRAY($result_load)) {
130                 // Only double when points are enougth!
131                 if ($DOUBLER_POINTS >= $content['points']) {
132                         // Check for his ref points
133                         $refPoints = countSumTotalData($content['userid'], 'doubler', 'points', 'refid', false, " AND `completed`='N' AND `is_ref`='Y'");
134
135                         // Zero refid when empty (might be helpful!)
136                         if (empty($refPoints)) {
137                                 $refPoints = '0';
138                         } // END - if
139
140                         if (($refPoints > 0) && ($GLOBALS['local_doubler_userid'] == $content['userid']) && (!empty($refPoints))) {
141                                 // Referral points found so add them and set line(s) to completed='Y'
142                                 $content['points'] += $refPoints;
143                                 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_doubler` SET `completed`='Y' WHERE `refid`=%s AND `completed`='N' AND `is_ref`='Y'",
144                                         array(bigintval($content['userid'])), __FILE__, __LINE__);
145                         } else {
146                                 // No referral points found
147                                 $refPoints = '0';
148                         }
149
150                         // Exclude webmaster from doubling...
151                         if ($content['userid'] != getConfig('doubler_userid')) {
152                                 // Add points
153                                 initReferralSystem();
154                                 addPointsThroughReferralSystem(sprintf("doubler_%s", strtolower(getConfig('doubler_send_mode'))), $content['userid'], $content['points']);
155                         } // END - if
156
157                         // Set entry as "payed"
158                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_doubler` SET `completed`='Y' WHERE `id`=%s LIMIT 1",
159                                 array(bigintval($content['id'])), __FILE__, __LINE__);
160
161                         $okay = false;
162
163                         // Check for jackpot inclusion in doubling process
164                         if (($jackpotPoints > 0) && ($jackpotPoints >= $content['points']) && (getConfig('doubler_jackpot') == 'Y')) {
165                                 // Subtract points from jackpot
166                                 $okay = subtractPointsFromJackpot($content['points']);
167                                 $jackpotPoints -= $content['points'];
168                         } // END - if
169
170                         // Exclude also webmaster's id in taking points from webmaster's account
171                         if (($userPoints > 0) && ($userPoints >= $content['points']) && ($okay === false) && (getConfig('doubler_userid') > 0) && ($content['userid'] != getConfig('doubler_userid'))) {
172                                 // Subtract points
173                                 $okay = subtractPoints('doubler_payout', getConfig('doubler_userid'), $content['points']);
174                         } // END - if
175
176                         // Update doubler's account only when others are not updated
177                         if ($okay === false) {
178                                 // Add points to used doubler points
179                                 updateConfiguration('doubler_used', $content['points'], '+');
180                         } // END - if
181
182                         // Update variables to prevent errors
183                         incrementConfigEntry('doubler_used', $content['points']);
184                         $DOUBLER_POINTS -= $content['points'];
185
186                         // Prepare array
187                         $content['timemark'] = generateDateTime($content['timemark'], 2);
188
189                         // Load mail template and send mail away...
190                         $message = loadEmailTemplate('member_doubler', $content, $content['userid']);
191                         sendEmail($content['userid'], '{--MEMBER_DOUBLER_SUBJECT--}', $message);
192                 } // END - if
193         } // END - while
194 } // END - if
195
196 // Free memory
197 SQL_FREERESULT($result_total);
198 SQL_FREERESULT($result_main);
199
200 // [EOF]
201 ?>