A lot code refactured to newly introduces wrapper function isNicknameUsed()
[mailer.git] / show_bonus.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 11/13/2004 *
4  * ===============                              Last change: 11/14/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : show_bonus.php                                   *
8  * -------------------------------------------------------------------- *
9  * Short description : Show ranking list for turbo-bonus                *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Rankliste fuer Turbo-Bonus anzeigen              *
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 // Load security stuff here
40 require('inc/libs/security_functions.php');
41
42 // Init start time
43 $GLOBALS['startTime'] = microtime(true);
44
45 // Set this because we have no module in URI
46 $GLOBALS['module'] = 'show_bonus';
47 $GLOBALS['output_mode'] = 0;
48
49 // Load the required file(s)
50 require('inc/config-global.php');
51
52 // Is the 'bonus' extension active?
53 redirectOnUninstalledExtension('bonus');
54
55 // List only rankings when script is installed
56 if (!isInstalled()) {
57         // You have to install first!
58         redirectToUrl('install.php');
59 } // END - if
60
61 // Include header
62 loadIncludeOnce('inc/header.php');
63
64 if ((REQUEST_GET('uid') > 0) && (REQUEST_GET('d') > 0) && (REQUEST_ISSET_GET(('t')))) {
65         // Set row name
66         $t = '';
67         switch (REQUEST_GET('t')) {
68                 case 'bonusid': // Bonus mail
69                         $t = 'bonus_id';
70                         break;
71
72                 case 'mailid': // Regular member mail
73                         $t = 'mail_id';
74                         break;
75
76                 default: // Invalid type
77                         DEBUG_LOG(__FILE__, __LINE__, sprintf("Invalid type %s detected.", REQUEST_GET('t')));
78                         break;
79         } // END - switch
80
81         // Valid type?
82         if (!empty($t)) {
83                 // Check for data
84                 $result = SQL_QUERY_ESC("SELECT DISTINCT d.gender, d.surname, d.family, b.level, b.points
85 FROM `{!_MYSQL_PREFIX!}_user_data` AS d
86 RIGHT JOIN `{!_MYSQL_PREFIX!}_bonus_turbo` AS b
87 ON d.userid=b.userid
88 WHERE d.`status`='CONFIRMED' AND d.userid=%s AND b.%s=%s
89 LIMIT 1",
90                 array(bigintval(REQUEST_GET('uid')), $t, bigintval(REQUEST_GET('d'))), __FILE__, __LINE__);
91
92                 // Entry found?
93                 if (SQL_NUMROWS($result) == 1) {
94                         // Load data
95                         $content = SQL_FETCHARRAY($result);
96
97                         // Prepare constants for the pre-template
98                         $content['gender'] = translateGender($content['gender']);
99                         $content['points'] = translateComma($content['points']);
100                         $content['mailid'] = bigintval(REQUEST_GET('d'));
101                         $content['rows']   = BONUS_MAKE_RANK_ROWS(bigintval(REQUEST_GET('d')), $t, bigintval(REQUEST_GET('uid')));
102
103                         // Constant created within previous function which contains informations for current user's ranking position:
104                         // @TODO Rewrite this constant
105                         //   __YOUR_RANKING_LINE
106
107                         // Load pre-template
108                         $content['msg'] = LOAD_TEMPLATE('show_bonus_msg', true, $content);
109                 } else {
110                         // No data found
111                         $content['msg'] = "<span class=\"guest_failed\">{--BONUS_SHOW_NO_DATA--}</span>";
112                 }
113
114                 // Free memory
115                 SQL_FREERESULT($result);
116         } else {
117                 // Wrong type entered
118                 $content['msg'] = "<span class=\"guest_failed\">{--BONUS_SHOW_WRONG_TYPE--}</span>";
119         }
120 } else {
121         // Wrong call!
122         $content['msg'] = "<span class=\"guest_failed\">{--BONUS_SHOW_WRONG_CALL--}</span>";
123 }
124
125 // Load send_bonus header template (for your banners, e.g.?)
126 $content['header'] = LOAD_TEMPLATE('show_bonus_header', true);
127
128 // Load show_bonus footer template (for your banners, e.g.?)
129 $content['footer'] = LOAD_TEMPLATE('show_bonus_footer', true);
130
131 // Total ranks who can win
132 $content['total_ranks'] = getConfig('bonus_ranks');
133
134 // Load final template
135 LOAD_TEMPLATE('show_bonus', false, $content);
136
137 // Include footer
138 loadIncludeOnce('inc/footer.php');
139
140 // [EOF]
141 ?>