Even more language strings renamed
[mailer.git] / inc / monthly / monthly_bonus.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 11/14/2004 *
4  * ===================                          Last change: 06/20/2010 *
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  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
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 - 2009 by Roland Haeder                           *
21  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if (!defined('__SECURITY')) {
42         die();
43 } elseif ((getScriptOutputMode() == 1) || (!isResetModeEnabled())) {
44         // Do not execute when script is in CSS mode or no daily reset
45         return;
46 } elseif (!isExtensionActive('bonus')) {
47         logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension disabled.');
48         return;
49 }
50
51 // Get current month (2 digits)
52 $curr = getMonth();
53
54 if (($curr != getConfig('last_month')) && (getConfig('bonus_ranks') > 0) && (getScriptOutputMode() != 1)) {
55         // Extension 'autopurge' is inactive or purging of inactive accounts is deactivated
56         $whereStatement1 = "WHERE `status`='CONFIRMED'";
57
58         // Shall I keep inactive members away from here? (mostly wanted in an "active-rallye" ...)
59         if (isExtensionActive('autopurge')) {
60                 // Use last online stamp only when autopurge for inactive members is activated
61                 if (getApInactiveSince() > 0) {
62                         // Okay, include last online timestamp
63                         $whereStatement1 = "WHERE `status`='CONFIRMED' AND `last_online` >= (UNIX_TIMESTAMP() - {?ap_inactive_since?})";
64                 } // END - if
65         } // END - if
66
67         // Add more bonus points here
68         $add = '';
69         // @TODO Rewrite this to a filter
70         if (getConfig('bonus_click_yn') == 'Y') $add .= ' + `turbo_bonus`';
71         if (getConfig('bonus_login_yn') == 'Y') $add .= ' + `login_bonus`';
72         if (getConfig('bonus_order_yn') == 'Y') $add .= ' + `bonus_order`';
73         if (getConfig('bonus_stats_yn') == 'Y') $add .= ' + `bonus_stats`';
74         if (getConfig('bonus_ref_yn')   == 'Y') $add .= ' + `bonus_ref`';
75
76         // Shall we add some entries?
77         if (!empty($add)) {
78                 $whereStatement1 .= ' AND (0' . $add . ') > 0';
79         } // END - if
80
81         // Run SQL string to check for accounts
82         $result_main = SQL_QUERY('SELECT
83         `userid`, `email`, `gender`, `surname`, `family`, (0" . $add . ") AS points
84 FROM
85         `{?_MYSQL_PREFIX?}_user_data`
86 ' . $whereStatement1 . '
87 ORDER BY
88         `points` DESC,
89         `userid` ASC
90 LIMIT {?bonus_ranks?}', __FILE__, __LINE__);
91
92         // Some entries were found?
93         if (!SQL_HASZERONUMS($result_main)) {
94                 // Load our winners...
95                 while ($content = SQL_FETCHARRAY($result_main)) {
96                         // Make sure zero points are not mailed
97                         if ($content['points'] > 0) {
98                                 // Add points to user's account directly
99                                 addPointsDirectly('monthly_bonus', $content['userid'], $content['points']);
100
101                                 // Load email template and email it away
102                                 $message = loadEmailTemplate('member_bonus', $content, bigintval($content['userid']));
103                                 sendEmail($content['email'], '{--MEMBER_MONTHLY_BONUS_WON_SUBJECT--}', $message);
104                         } // END - if
105                 } // END - while
106
107                 // Reset all accounts
108                 $result = SQL_QUERY('UPDATE `{?_MYSQL_PREFIX?}_user_data`
109 SET
110         `turbo_bonus`=0,
111         `login_bonus`=0,
112         `bonus_order`=0,
113         `bonus_stats`=0,
114         `bonus_ref`=0', __FILE__, __LINE__);
115         } // END - if
116
117         // Free memory
118         SQL_FREERESULT($result_main);
119 } // END - if
120
121 // [EOF]
122 ?>