Monthly beg/bonus rallye rewritten
[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) || (!defined('__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 = bigintval($_CONFIG['bonus_ranks']);
54
55         // Shall I keep inactive members away from here? (mostly wanted in an "active-rallye" ...)
56         if (EXT_IS_ACTIVE("autopurge"))
57         {
58                 // Use last online stamp only when autopurge for inactive members is activated
59                 if ($_CONFIG['ap_inactive_since'] > 0)
60                 {
61                         // Okay, include last online timestamp
62                         $whereStatement1 = sprintf("WHERE status='CONFIRMED' AND last_online >= (UNIX_TIMESTAMP() - %s)", $_CONFIG['ap_inactive_since']);
63                         $whereStatement2 = bigintval($_CONFIG['bonus_ranks']);
64                 }
65         }
66
67         // Add more bonus points here
68         $ADD = "";
69         if ($_CONFIG['bonus_click_yn'] == "Y") $ADD .= " + turbo_bonus";
70         if ($_CONFIG['bonus_login_yn'] == "Y") $ADD .= " + login_bonus";
71         if ($_CONFIG['bonus_order_yn'] == "Y") $ADD .= " + bonus_order";
72         if ($_CONFIG['bonus_stats_yn'] == "Y") $ADD .= " + bonus_stats";
73         if ($_CONFIG['bonus_ref_yn']   == "Y") $ADD .= " + bonus_ref";
74
75         if (!empty($ADD)) {
76                 $ADD .= " AND (0".$ADD.") > 0";
77         } // END - if
78
79         // SQL string to check for accounts
80         $result_main = SQL_QUERY_ESC("SELECT userid, email, (turbo_bonus + login_bonus + bonus_order + bonus_stats + bonus_ref) AS active_bonus
81 FROM "._MYSQL_PREFIX."_user_data
82 ".$whereStatement1."".$ADD."
83 ORDER BY active_bonus DESC, userid LIMIT %s",
84  array($whereStatement2), __FILE__, __LINE__);
85
86         if (SQL_NUMROWS($result_main) > 0)
87         {
88                 // Load our winners...
89                 $UIDs = "";
90                 while(list($uid, $email, $points) = SQL_FETCHROW($result_main))
91                 {
92                         // Add userids in a row
93                         $UIDs .= ",'".$uid."'";
94
95                         // Add points to user's account directly
96                         ADD_POINTS_REFSYSTEM($uid, $points, false, "0", false, "direct");
97
98                         // Load email template and email it away
99                         $msg = LOAD_EMAIL_TEMPLATE("member_bonus", $points, bigintval($uid));
100                         SEND_EMAIL($email, BONUS_MONTHLY_ONLINE_BONUS, $msg);
101                 }
102
103                 // Remove first commata
104                 $UIDs = substr($UIDs, 1);
105
106                 // Get current month
107                 $curr = date("m", time());
108                 if (strlen($curr) == 1) $curr = "0".$curr;
109                 if ($curr == "00") $curr = "12";
110
111                 // Reset accounts
112                 $result = SQL_QUERY("UPDATE "._MYSQL_PREFIX."_user_data
113 SET turbo_bonus=0, login_bonus=0, bonus_order=0, bonus_stats=0, bonus_ref=0", __FILE__, __LINE__);
114         }
115
116         // Free memory
117         SQL_FREERESULT($result_main);
118 }
119
120 //
121 ?>