More queries now depends on UNIX_TIMESTAMP() SQL function, wrong index in autopurge...
[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")) && (!IS_ADMIN())) {
39         ADD_FATAL(EXTENSION_PROBLEM_EXT_INACTIVE, "bonus");
40         return;
41 }
42
43 // Do not execute when script is in CSS mode or no daily reset
44 if (($CSS == 1) || (!isBooleanConstantAndTrue('__DAILY_RESET'))) return;
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 {
51         // Extension "autopurge" is inactive or purging of inactive accounts is deactivated
52         $whereStatement1 = "WHERE status='CONFIRMED'";
53         $whereStatement2 = 0;
54         $whereStatement3 = bigintval($_CONFIG['bonus_ranks']);
55
56         // Shall I keep inactive members away from here? (mostly wanted in an "active-rallye" ...)
57         if (EXT_IS_ACTIVE("autopurge"))
58         {
59                 // Use last online stamp only when autopurge for inactive members is activated
60                 if ($_CONFIG['ap_inactive_since'] > 0)
61                 {
62                         // Okay, include last online timestamp
63                         $whereStatement1 = "WHERE status='CONFIRMED' AND last_online >=";
64                         $whereStatement2 = bigintval(time() - $_CONFIG['ap_inactive_since']);
65                         $whereStatement3 = bigintval($_CONFIG['bonus_ranks']);
66                 }
67         }
68
69         // Add more bonus points here
70         $ADD = " AND (0";
71         if ($_CONFIG['bonus_click_yn'] == "Y") $ADD .= " + turbo_bonus";
72         if ($_CONFIG['bonus_login_yn'] == "Y") $ADD .= " + login_bonus";
73         if ($_CONFIG['bonus_order_yn'] == "Y") $ADD .= " + bonus_order";
74         if ($_CONFIG['bonus_stats_yn'] == "Y") $ADD .= " + bonus_stats";
75         if ($_CONFIG['bonus_ref_yn']   == "Y") $ADD .= " + bonus_ref";
76         $ADD .= ") > 0";
77
78         // SQL string to check for accounts
79         $result_main = SQL_QUERY_ESC("SELECT userid, email, (turbo_bonus + login_bonus + bonus_order + bonus_stats + bonus_ref) AS active_bonus
80 FROM "._MYSQL_PREFIX."_user_data
81 ".$whereStatement1." %s".$ADD."
82 ORDER BY active_bonus DESC, userid LIMIT %s",
83  array($whereStatement2, $whereStatement3), __FILE__, __LINE__);
84
85         if (SQL_NUMROWS($result_main) > 0)
86         {
87                 // Load our winners...
88                 $UIDs = "";
89                 while(list($uid, $email, $points) = SQL_FETCHROW($result_main))
90                 {
91                         // Add userids in a row
92                         $UIDs .= ",'".$uid."'";
93
94                         // Add points to user's account directly
95                         $result_data = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_points
96 SET points=points+%s WHERE ref_depth=0 AND userid=%s LIMIT 1",
97  array($points, bigintval($uid)), __FILE__, __LINE__);
98
99                         // Update mediadata as well
100                         if (GET_EXT_VERSION("mediadata") >= "0.0.4")
101                         {
102                                 // Update database
103                                 MEDIA_UPDATE_ENTRY(array("total_points"), "add", $points);
104                         }
105
106                         // Load email template and email it away
107                         $msg = LOAD_EMAIL_TEMPLATE("member_bonus", $points, bigintval($uid));
108                         SEND_EMAIL($email, BONUS_MONTHLY_ONLINE_BONUS, $msg);
109                 }
110                 // Remove first commata
111                 $UIDs = substr($UIDs, 1);
112
113                 // Get current month
114                 $curr = date("m", time());
115                 if (strlen($curr) == 1) $curr = "0".$curr;
116                 if ($curr == "00") $curr = "12";
117
118                 // Reset accounts
119                 $result = SQL_QUERY("UPDATE "._MYSQL_PREFIX."_user_data
120 SET turbo_bonus=0, login_bonus=0, bonus_order=0, bonus_stats=0, bonus_ref=0", __FILE__, __LINE__);
121
122         }
123
124         // Free memory
125         SQL_FREERESULT($result_main);
126 }
127
128 //
129 ?>