Added ability to allow empty passwords, if the user does so, a random password will...
[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, 2010 by Mailer Developer Team                    *
20  * For more information visit: http://www.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         return;
43 }
44
45 // Do not execute when script is in CSS mode
46 if (!isHtmlOutputMode()) return;
47
48 // Initialize variables
49 $jackpotPoints = '0'; $userPoints = '0';
50 if (isExtensionActive('jackpot')) $jackpotPoints = getJackpotPoints();
51
52 // Get total points of the doubler itself
53 $DOUBLER_POINTS = getDoublerTotalPointsLeft();
54 if ($DOUBLER_POINTS == '0') {
55         // Exit here to prevent some SQL errors (SQL_QUERY_ESC doen't insert zeros! We need to fix this...)
56         return;
57 } // END - if
58
59 // If not currently doubled set it to zero
60 unsetGetRequestParameter('DOUBLER_UID');
61 unsetPostRequestParameter('DOUBLER_UID');
62 setSession('DOUBLER_UID', '');
63 if (empty($GLOBALS['local_doubler_userid'])) $GLOBALS['local_doubler_userid'] = '0';
64
65 // Check for doubles which we can pay out
66 $result_total = SQL_QUERY_ESC("SELECT
67         d.id, d.userid, d.points, d.remote_ip, d.timemark
68 FROM
69         `{?_MYSQL_PREFIX?}_doubler` AS d
70 LEFT JOIN
71         `{?_MYSQL_PREFIX?}_user_data` AS u
72 ON
73         d.userid=u.userid
74 WHERE
75         u.`status`='CONFIRMED' AND
76         d.points <= %s AND
77         d.points >= ({?doubler_min?} * 2) AND
78         d.completed='N' AND
79         d.is_ref='N'
80 ORDER BY
81         d.timemark ASC",
82         array(
83                 $DOUBLER_POINTS
84         ), __FILE__, __LINE__);
85
86 // Check for accounts with limitation
87 $result_main = SQL_QUERY_ESC("SELECT
88         d.id, d.userid, d.points, d.remote_ip, d.timemark
89 FROM
90         `{?_MYSQL_PREFIX?}_doubler` AS d
91 LEFT JOIN
92         `{?_MYSQL_PREFIX?}_user_data` AS u
93 ON
94         d.userid=u.userid
95 WHERE
96         u.`status`='CONFIRMED' AND
97         d.points <= %s AND
98         d.points >= ({?doubler_min?} * 2) AND
99         d.completed='N' AND
100         d.is_ref='N'
101 ORDER BY
102         d.timemark ASC
103 LIMIT {?doubler_max_sent?}",
104         array(
105                 $DOUBLER_POINTS
106         ), __FILE__, __LINE__);
107
108 // Do we have entries found?
109 if (((!SQL_HASZERONUMS($result_total)) && (getConfig('doubler_sent_all') == 'Y')) || ((SQL_NUMROWS($result_main) == getConfig('doubler_group_sent')) && (getConfig('doubler_sent_all') != 'Y'))) {
110         // Switch to matching SQL resource
111         $result_load = $result_main;
112         if ((!SQL_HASZERONUMS($result_total)) && (getConfig('doubler_sent_all') == 'Y')) {
113                 $result_load = $result_total;
114         } // END - if
115
116         // At least one account was found
117         while ($content = SQL_FETCHARRAY($result_load)) {
118                 // Only double when points are enougth!
119                 if ($DOUBLER_POINTS >= $content['points']) {
120                         // Check for his ref points
121                         $ref = countSumTotalData($content['userid'], 'doubler', 'points', 'refid', false, " AND `completed`='N' AND `is_ref`='Y'");
122
123                         // Zero refid when empty (might be helpful!)
124                         if (empty($ref)) $ref = '0';
125
126                         if (($ref > 0) && ($GLOBALS['local_doubler_userid'] == $content['userid']) && (!empty($ref))) {
127                                 // Referal points found so add them and set line(s) to completed='Y'
128                                 $content['points'] += $ref;
129                                 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_doubler` SET `completed`='Y' WHERE `refid`=%s AND `completed`='N' AND `is_ref`='Y'",
130                                         array(bigintval($content['userid'])), __FILE__, __LINE__);
131                         } else {
132                                 // No referal points found
133                                 $ref = '0';
134                         }
135
136                         // Exclude webmaster from doubling...
137                         if ($content['userid'] != getConfig('doubler_userid')) {
138                                 // Add points
139                                 addPointsDirectly(sprintf("doubler_%s", strtolower(getConfig('doubler_send_mode'))), $content['userid'], $content['points']);
140                         } // END - if
141
142                         // Set entry as "payed"
143                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_doubler` SET `completed`='Y' WHERE `id`=%s LIMIT 1",
144                                 array(bigintval($content['id'])), __FILE__, __LINE__);
145
146                         $okay = false;
147
148                         // Check for jackpot inclusion in doubling process
149                         if (($jackpotPoints > 0) && ($jackpotPoints >= $content['points']) && (getConfig('doubler_jackpot') == 'Y')) {
150                                 // Subtract points from jackpot
151                                 subtractPointsFromJackpot($content['points']);
152                                 $jackpotPoints -= $content['points'];
153
154                                 // Okay, done!
155                                 $okay = true;
156                         } // END - if
157
158                         // Exclude also webmaster's id in taking points from webmaster's account
159                         if (($userPoints > 0) && ($userPoints >= $content['points']) && ($okay === false) && (getConfig('doubler_userid') > 0) && ($content['userid'] != getConfig('doubler_userid'))) {
160                                 // Add points to used points
161                                 subtractPoints('doubler_payout', getConfig('doubler_userid'), $content['points']);
162
163                                 // Okay, done!
164                                 $okay = true;
165                         } // END - if
166
167                         // Update doubler's account only when others are not updated
168                         if ($okay === false) {
169                                 // Add points to used doubler points
170                                 updateConfiguration('doubler_used', $content['points'], '+');
171                         } // END - if
172
173                         // Update variables to prevent errors
174                         incrementConfigEntry('doubler_used', $content['points']);
175                         $DOUBLER_POINTS -= $content['points'];
176
177                         // Prepare array
178                         $content['timemark'] = generateDateTime($content['timemark'], 2);
179
180                         // Load mail template and send mail away...
181                         $message = loadEmailTemplate('member_doubler', $content, $content['userid']);
182                         sendEmail($content['userid'], '{--MEMBER_DOUBLER_SUBJECT--}', $message);
183                 } // END - if
184         } // END - while
185 } // END - if
186
187 // Free memory
188 SQL_FREERESULT($result_total);
189 SQL_FREERESULT($result_main);
190
191 // [EOF]
192 ?>