2 /************************************************************************
3 * MXChange v0.2.1 Start: 02/16/2005 *
4 * =============== Last change: 01/21/2006 *
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 * -------------------------------------------------------------------- *
14 * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. March 2009) $ *
15 * $Tag:: 0.2.1-FINAL $ *
16 * $Author:: stelzi $ *
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 *
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. *
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. *
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, *
37 ************************************************************************/
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41 $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
45 // Initialize variables
46 $jackpot = 0; $user = 0;
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...)
55 // If not currently doubled set it to zero
56 unset($_GET['DOUBLER_UID']);
57 unset($_POST['DOUBLER_UID']);
58 set_session('DOUBLER_UID', "");
59 if (empty($GLOBALS['doubler_uid'])) $GLOBALS['doubler_uid'] = 0;
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
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__);
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
75 WHERE u.`status`='CONFIRMED' AND d.points <= %s AND d.points >= %s AND d.completed='N' AND d.is_ref='N'
77 LIMIT %d", array($DOUBLER_POINTS, $min, getConfig('doubler_max_sent')), __FILE__, __LINE__);
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;
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'");
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__);
100 // No referal points found
104 // Exclude webmaster from doubling...
105 if ($content['userid'] != getConfig('doubler_uid')) {
107 ADD_POINTS_REFSYSTEM(sprintf("doubler_%s", strtolower(getConfig('doubler_send_mode'))), $content['userid'], $content['points'], false, "0", false, "direct");
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__);
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'];
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']);
134 // Update doubler's account only when others are not updated
136 // Add points to used doubler points
137 UPDATE_CONFIG("doubler_used", $content['points'], "+");
140 // Update variables to prevent errors
141 incrementConfigEntry('doubler_used', $content['points']);
142 $DOUBLER_POINTS -= $content['points'];
146 // Doubler transmission ID
147 'id' => $content['id'],
149 'points' => TRANSLATE_COMMA($content['points']),
151 'when' => MAKE_DATETIME($content['timemark'], "2"),
152 // IP number when the member submitted the doubling form
153 'ip' => $content['remote_ip'],
156 // Load mail template and send mail away...
157 $msg = LOAD_EMAIL_TEMPLATE("member_doubler", $content, $content['userid']);
158 SEND_EMAIL($content['userid'], getMessage('DOUBLER_MEMBER_SUBJECT'), $msg);
164 SQL_FREERESULT($result_total);
165 SQL_FREERESULT($result_main);