Heavy rewrite:
[mailer.git] / inc / modules / member / what-bonus.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 10/19/2003 *
4  * ===============                              Last change: 11/19/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-bonus.php                                   *
8  * -------------------------------------------------------------------- *
9  * Short description : Bonus pages for some extra points                *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Bonusseiten fuer ein paar Extrapunkte            *
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 - 2008 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
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.                                  *
27  *                                                                      *
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.                         *
32  *                                                                      *
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,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
42         require($INC);
43 } elseif (!IS_MEMBER()) {
44         redirectToUrl('modules.php?module=index');
45 } elseif ((!EXT_IS_ACTIVE('bonus')) && (!IS_ADMIN())) {
46         addFatalMessage(__FILE__, __LINE__, generateExtensionInactiveNotInstalledMessage('bonus'));
47         return;
48 }
49
50 // Add description as navigation point
51 ADD_DESCR('member', __FILE__);
52
53 if (GET_EXT_VERSION('bonus') >= '0.6.9') {
54         // Add more bonus points here
55         // @TODO Rewrite this to a filter
56         $USE = "(0";
57         if (getConfig('bonus_click_yn') == 'Y') $USE .= " + turbo_bonus";
58         if (getConfig('bonus_login_yn') == 'Y') $USE .= " + login_bonus";
59         if (getConfig('bonus_order_yn') == 'Y') $USE .= " + bonus_order";
60         if (getConfig('bonus_stats_yn') == 'Y') $USE .= " + bonus_stats";
61         if (getConfig('bonus_ref_yn')   == 'Y') $USE .= " + bonus_ref";
62         $USE .= ")";
63 } else {
64         // Old version ???
65         $USE = "turbo_bonus";
66 }
67
68 // Autopurge installed?
69 $lastOnline = "%s"; $ONLINE = '';
70 if (EXT_IS_ACTIVE('autopurge')) {
71         // Use last online timestamp to keep inactive members away from here
72         $lastOnline   = " AND `last_online` >= (UNIX_TIMESTAMP() - %s)";
73         $ONLINE = getConfig('ap_inactive_since');
74 }
75
76 // Let's check if there are some points left we can 'pay'...
77 $result = SQL_QUERY_ESC("SELECT
78         `userid`, `".$USE."` AS points, `last_online`
79 FROM
80         `{!_MYSQL_PREFIX!}_user_data`
81 WHERE
82         `".$USE."` > 0 AND `status`='CONFIRMED'".$lastOnline."
83 ORDER BY
84         `points` DESC,
85         last_online DESC,
86         userid ASC
87 LIMIT %s",
88         array(
89                 $ONLINE,
90                 getConfig('bonus_ranks')
91         ), __FILE__, __LINE__);
92
93 // Reset temporary variable and check for users
94 $OUT = '';
95 if (SQL_NUMROWS($result) > 0) {
96         // Load our winners...
97         $SW = 2; $cnt = 1;
98         while ($content = SQL_FETCHARRAY($result)) {
99                 // Prepare data for the template
100                 $content = array(
101                         'sw'     => $SW,
102                         'cnt'    => $cnt,
103                         'uid'    => bigintval($content['uid']),
104                         'points' => translateComma($content['points']),
105                         'last'   => generateDateTime($content['last'], '2')
106                 );
107
108                 // Load row template
109                 $OUT .= LOAD_TEMPLATE('member_bonus_row', true, $content);
110
111                 // Count one up and switch colors
112                 $cnt++; $SW = 3 - $SW;
113         }
114 } else {
115         // No one is interested in our "active rallye" ! :-(
116         $OUT = LOAD_TEMPLATE('member_bonus_404', true);
117 }
118
119 // Free memory
120 SQL_FREERESULT($result);
121
122 // Remeber row(s) for the template
123 define('__BONUS_ROWS', $OUT);
124
125 // Load final template
126 LOAD_TEMPLATE('member_bonus');
127
128 //
129 ?>