2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 02/16/2005 *
4 * =================== Last change: 01/21/2006 *
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 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
17 * -------------------------------------------------------------------- *
18 * Copyright (c) 2003 - 2009 by Roland Haeder *
19 * Copyright (c) 2009 - 2011 by Mailer Developer Team *
20 * For more information visit: http://mxchange.org *
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. *
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. *
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, *
36 ************************************************************************/
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
41 } elseif (!isExtensionActive('doubler')) {
42 // Do not execute when extension is absent
44 } elseif (!isHtmlOutputMode()) {
45 // Do not execute when script is in CSS mode
49 // Initialize variables
53 // @TODO Can this be rewritten to a filter?
54 if (isExtensionActive('jackpot')) {
55 $jackpotPoints = getJackpotPoints();
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...)
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';
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
75 `{?_MYSQL_PREFIX?}_doubler` AS d
77 `{?_MYSQL_PREFIX?}_user_data` AS u
81 u.`status`='CONFIRMED' AND
83 d.points >= ({?doubler_min?} * 2) AND
90 ), __FILE__, __LINE__);
92 // Check for accounts with limitation
93 $result_main = SQL_QUERY_ESC("SELECT
94 d.id, d.userid, d.points, d.remote_ip, d.timemark
96 `{?_MYSQL_PREFIX?}_doubler` AS d
98 `{?_MYSQL_PREFIX?}_user_data` AS u
102 u.`status`='CONFIRMED' AND
104 d.points >= ({?doubler_min?} * 2) AND
109 LIMIT {?doubler_max_sent?}",
112 ), __FILE__, __LINE__);
114 // Do we have entries found?
115 if (((!SQL_HASZERONUMS($result_total)) && (getConfig('doubler_sent_all') == 'Y')) || ((SQL_NUMROWS($result_main) == getConfig('doubler_group_sent')) && (getConfig('doubler_sent_all') != 'Y'))) {
116 // Switch to matching SQL resource
117 $result_load = $result_main;
118 if ((!SQL_HASZERONUMS($result_total)) && (getConfig('doubler_sent_all') == 'Y')) {
119 $result_load = $result_total;
122 // At least one account was found
123 while ($content = SQL_FETCHARRAY($result_load)) {
124 // Only double when points are enougth!
125 if ($DOUBLER_POINTS >= $content['points']) {
126 // Check for his ref points
127 $refPoints = countSumTotalData($content['userid'], 'doubler', 'points', 'refid', false, " AND `completed`='N' AND `is_ref`='Y'");
129 // Zero refid when empty (might be helpful!)
130 if (empty($refPoints)) {
134 if (($refPoints > 0) && ($GLOBALS['local_doubler_userid'] == $content['userid']) && (!empty($refPoints))) {
135 // Referral points found so add them and set line(s) to completed='Y'
136 $content['points'] += $refPoints;
137 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_doubler` SET `completed`='Y' WHERE `refid`=%s AND `completed`='N' AND `is_ref`='Y'",
138 array(bigintval($content['userid'])), __FILE__, __LINE__);
140 // No referral points found
144 // Exclude webmaster from doubling...
145 if ($content['userid'] != getConfig('doubler_userid')) {
147 initReferralSystem();
148 addPointsThroughReferralSystem(sprintf("doubler_%s", strtolower(getConfig('doubler_send_mode'))), $content['userid'], $content['points']);
151 // Set entry as "payed"
152 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_doubler` SET `completed`='Y' WHERE `id`=%s LIMIT 1",
153 array(bigintval($content['id'])), __FILE__, __LINE__);
157 // Check for jackpot inclusion in doubling process
158 if (($jackpotPoints > 0) && ($jackpotPoints >= $content['points']) && (getConfig('doubler_jackpot') == 'Y')) {
159 // Subtract points from jackpot
160 $okay = subtractPointsFromJackpot($content['points']);
161 $jackpotPoints -= $content['points'];
164 // Exclude also webmaster's id in taking points from webmaster's account
165 if (($userPoints > 0) && ($userPoints >= $content['points']) && ($okay === false) && (getConfig('doubler_userid') > 0) && ($content['userid'] != getConfig('doubler_userid'))) {
167 $okay = subtractPoints('doubler_payout', getConfig('doubler_userid'), $content['points']);
170 // Update doubler's account only when others are not updated
171 if ($okay === false) {
172 // Add points to used doubler points
173 updateConfiguration('doubler_used', $content['points'], '+');
176 // Update variables to prevent errors
177 incrementConfigEntry('doubler_used', $content['points']);
178 $DOUBLER_POINTS -= $content['points'];
181 $content['timemark'] = generateDateTime($content['timemark'], 2);
183 // Load mail template and send mail away...
184 $message = loadEmailTemplate('member_doubler', $content, $content['userid']);
185 sendEmail($content['userid'], '{--MEMBER_DOUBLER_SUBJECT--}', $message);
191 SQL_FREERESULT($result_total);
192 SQL_FREERESULT($result_main);