Some fixes for monthly mails
[mailer.git] / inc / monthly / monthly_bonus.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 11/14/2004 *
4  * ===============                              Last change: 11/19/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : monthly_bonus.php                                *
8  * -------------------------------------------------------------------- *
9  * Short description : Monthly bonus from click-bonus                   *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Monatlicher Bonus von Klick-Verguetung           *
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 } elseif (!EXT_IS_ACTIVE("bonus")) {
39         return;
40 }
41
42 // Do not execute when script is in CSS mode or no daily reset
43 if (($CSS == 1) || (!defined('__DAILY_RESET'))) return;
44 //* DEBUG: */ echo basename(__FILE__)."<br />\n";
45
46 // Get current month (2 digits)
47 $curr = date("m", time());
48
49 if (($curr != $_CONFIG['last_month']) && ($_CONFIG['bonus_ranks'] > 0) && ($CSS != 1)) {
50         // Extension "autopurge" is inactive or purging of inactive accounts is deactivated
51         $whereStatement1 = "WHERE status='CONFIRMED'";
52         $whereStatement2 = bigintval($_CONFIG['bonus_ranks']);
53
54         // Shall I keep inactive members away from here? (mostly wanted in an "active-rallye" ...)
55         if (EXT_IS_ACTIVE("autopurge")) {
56                 // Use last online stamp only when autopurge for inactive members is activated
57                 if ($_CONFIG['ap_inactive_since'] > 0) {
58                         // Okay, include last online timestamp
59                         $whereStatement1 = sprintf("WHERE status='CONFIRMED' AND last_online >= (UNIX_TIMESTAMP() - %s)", $_CONFIG['ap_inactive_since']);
60                         $whereStatement2 = bigintval($_CONFIG['bonus_ranks']);
61                 } // END - if
62         } // END - if
63
64         // Add more bonus points here
65         $ADD = "";
66         if ($_CONFIG['bonus_click_yn'] == "Y") $ADD .= " + turbo_bonus";
67         if ($_CONFIG['bonus_login_yn'] == "Y") $ADD .= " + login_bonus";
68         if ($_CONFIG['bonus_order_yn'] == "Y") $ADD .= " + bonus_order";
69         if ($_CONFIG['bonus_stats_yn'] == "Y") $ADD .= " + bonus_stats";
70         if ($_CONFIG['bonus_ref_yn']   == "Y") $ADD .= " + bonus_ref";
71
72         if (!empty($ADD)) {
73                 $ADD .= " AND (0".$ADD.") > 0";
74         } // END - if
75
76         // SQL string to check for accounts
77         $result_main = SQL_QUERY_ESC("SELECT userid, email, gender, surname, family, (turbo_bonus + login_bonus + bonus_order + bonus_stats + bonus_ref) AS points
78 FROM "._MYSQL_PREFIX."_user_data
79 ".$whereStatement1."".$ADD."
80 ORDER BY active_bonus DESC, userid LIMIT %s",
81  array($whereStatement2), __FILE__, __LINE__);
82
83         if (SQL_NUMROWS($result_main) > 0) {
84                 // Load our winners...
85                 while ($content = SQL_FETCHARRAY($result_main)) {
86                         // Make sure zero points are not mailed
87                         if ($content['points'] > 0) {
88                                 // Add points to user's account directly
89                                 ADD_POINTS_REFSYSTEM($content['uid'], $content['points'], false, "0", false, "direct");
90
91                                 // Translate gender
92                                 $content['gender'] = TRANSLATE_GENDER($content['gender']);
93
94                                 // Load email template and email it away
95                                 $msg = LOAD_EMAIL_TEMPLATE("member_bonus", $content['points'], bigintval($content['uid']));
96                                 SEND_EMAIL($content['email'], BONUS_MONTHLY_ONLINE_BONUS, $msg);
97                         } // END - if
98                 } // END - while
99
100                 // Reset accounts
101                 $result = SQL_QUERY("UPDATE "._MYSQL_PREFIX."_user_data
102 SET turbo_bonus=0, login_bonus=0, bonus_order=0, bonus_stats=0, bonus_ref=0", __FILE__, __LINE__);
103         } // END - if
104
105         // Free memory
106         SQL_FREERESULT($result_main);
107 } // END - if
108
109 //
110 ?>