Parser error fixed and should be span instead of div, TODOs.txt updated
[mailer.git] / mailid.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 11/14/2003 *
4  * ===============                              Last change: 11/25/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : mailid.php                                       *
8  * -------------------------------------------------------------------- *
9  * Short description : Confirmation file for emails                     *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Bestaetigung von Mails                           *
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 "action" and "what"
43 $GLOBALS['what'] = '';
44 $GLOBALS['action'] = '';
45
46 // Tell everyone we are in this module
47 $GLOBALS['module'] = 'mailid';
48 $GLOBALS['output_mode'] = -1;
49
50 // Load the required file(s)
51 require('inc/config-global.php');
52
53 if (isInstalled()) {
54         // Is the extension active?
55         redirectOnUninstalledExtension('mailid');
56
57         // Init
58         $url_uid = 0; $url_bid = 0; $url_mid = 0;
59
60         // Secure all data
61         if (REQUEST_ISSET_GET('uid'))     $url_uid = bigintval(REQUEST_GET('uid'));
62         if (REQUEST_ISSET_GET('mailid'))  $url_mid = bigintval(REQUEST_GET('mailid'));
63         if (REQUEST_ISSET_GET('bonusid')) $url_bid = bigintval(REQUEST_GET('bonusid'));
64
65         // 01        1        12            3    32           21    1                   22     10
66         if (($url_uid) > 0 && (($url_mid > 0) || ($url_bid > 0)) && (getTotalFatalErrors() == 0)) {
67                 // Maybe he wants to confirm an email?
68                 if ($url_mid > 0) {
69                         // Normal-Mails
70                         $result = SQL_QUERY_ESC("SELECT link_type FROM `{!_MYSQL_PREFIX!}_user_links` WHERE stats_id=%s AND `userid`=%s LIMIT 1",
71                         array($url_mid, $url_uid), __FILE__, __LINE__);
72                         $type = 'mailid'; $urlId = $url_mid;
73                 } elseif ($url_bid > 0) {
74                         // Bonus-Mail
75                         $result = SQL_QUERY_ESC("SELECT link_type FROM `{!_MYSQL_PREFIX!}_user_links` WHERE bonus_id=%s AND `userid`=%s LIMIT 1",
76                         array($url_bid, $url_uid), __FILE__, __LINE__);
77                         $type = 'bonusid'; $urlId = $url_bid;
78                 } else {
79                         // Problem: No ID entered
80                         redirectToUrl('index.php');
81                 }
82
83                 if (SQL_NUMROWS($result) == 1) {
84                         // Load the entry
85                         list($ltype) = SQL_FETCHROW($result);
86
87                         // Clean result
88                         SQL_FREERESULT($result);
89
90                         switch ($ltype)
91                         {
92                                 case 'NORMAL':
93                                         // Is the stats ID valid?
94                                         $result = SQL_QUERY_ESC("SELECT pool_id, url, subject FROM `{!_MYSQL_PREFIX!}_user_stats` WHERE `id`=%s LIMIT 1",
95                                         array($url_mid), __FILE__, __LINE__);
96                                         break;
97
98                                 case 'BONUS':
99                                         // Is the bonus extension active?
100                                         redirectOnUninstalledExtension('bonus');
101
102                                         // Bonus-Mails
103                                         $result = SQL_QUERY_ESC("SELECT id, url, subject FROM `{!_MYSQL_PREFIX!}_bonus` WHERE `id`=%s LIMIT 1",
104                                         array($url_bid), __FILE__, __LINE__);
105                                         break;
106                         }
107
108                         if (SQL_NUMROWS($result) == 1) {
109                                 // Load data
110                                 list($pool, $URL, $title) = SQL_FETCHROW($result);
111
112                                 // Free result
113                                 SQL_FREERESULT($result);
114
115                                 // Compile extra title
116                                 $title = COMPILE_CODE($title);
117
118                                 // Set it
119                                 setExtraTitle($title);
120
121                                 // Is the user's ID unlocked?
122                                 $result = SQL_QUERY_ESC("SELECT status, gender, surname, family FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1",
123                                 array($url_uid), __FILE__, __LINE__);
124                                 if (SQL_NUMROWS($result) == 1) {
125                                         list($status, $gender, $sname, $fname) = SQL_FETCHROW($result);
126                                         SQL_FREERESULT($result);
127                                         if ($status == 'CONFIRMED') {
128                                                 // User has confirmed his account so we can procede...
129                                                 switch ($ltype)
130                                                 {
131                                                         case 'NORMAL':
132                                                                 $result = SQL_QUERY_ESC("SELECT payment_id FROM `{!_MYSQL_PREFIX!}_user_stats` WHERE pool_id=%s LIMIT 1",
133                                                                 array(bigintval($pool)), __FILE__, __LINE__);
134                                                                 if (SQL_NUMROWS($result) == 1) {
135                                                                         list($pay) = SQL_FETCHROW($result);
136                                                                         $time      = getPaymentPoints($pay, 'time');
137                                                                         $payment   = getPaymentPoints($pay, 'payment');
138                                                                         $isValid   = true;
139                                                                 }
140
141                                                                 // Free memory
142                                                                 SQL_FREERESULT($result);
143                                                                 break;
144
145                                                         case 'BONUS':
146                                                                 $result = SQL_QUERY_ESC("SELECT points, time FROM `{!_MYSQL_PREFIX!}_bonus` WHERE `id`=%s LIMIT 1",
147                                                                 array($url_bid), __FILE__, __LINE__);
148                                                                 if (SQL_NUMROWS($result) == 1) {
149                                                                         list($points, $time) = SQL_FETCHROW($result);
150                                                                         $payment = '0.00000';
151                                                                         $isValid = true;
152                                                                 }
153
154                                                                 // Free memory
155                                                                 SQL_FREERESULT($result);
156                                                                 break;
157                                                 }
158
159                                                 // Add header
160                                                 loadIncludeOnce('inc/header.php');
161
162                                                 // Was that mail a valid one?
163                                                 if ($isValid === true) {
164                                                         // If time is zero seconds we have a sponsor mail. 1 Second shall be set to avoid problems
165                                                         if (($time == '0') && ($payment > 0)) { $URL = constant('URL'); $time = '1'; }
166                                                         if (($time > 0) && (($payment > 0) || ($points > 0))) {
167                                                                 // He can confirm this mail!
168                                                                 // Export data into constants for the template
169                                                                 define('_UID_VALUE' , $url_uid);
170                                                                 define('_TYPE_VALUE', $type);
171                                                                 define('_DATA_VALUE', $urlId);
172                                                                 define('_URL_VALUE' , DEREFERER($URL));
173
174                                                                 // Load template
175                                                                 LOAD_TEMPLATE('mailid_frames');
176                                                         } else {
177                                                                 $msg = getCode('DATA_INVALID');
178                                                         }
179                                                 } else {
180                                                         $msg = getCode('POSSIBLE_INVALID');
181                                                 }
182                                         } else {
183                                                 $msg = getCode('ACCOUNT_LOCKED');
184                                         }
185                                 } else {
186                                         SQL_FREERESULT($result);
187                                         $msg = getCode('USER_404');
188                                 }
189                         } else {
190                                 SQL_FREERESULT($result);
191                                 $msg = getCode('STATS_404');
192                         }
193                 } else {
194                         SQL_FREERESULT($result);
195                         $msg = getCode('ALREADY_CONFIRMED');
196                 }
197         } else {
198                 // Nothing entered
199                 $msg = getCode('ERROR_MAILID');
200         }
201
202         // Error code is set?
203         if (!empty($msg)) {
204                 switch (getConfig('mailid_error_redirect')) {
205                         case 'INDEX': // Redirect to index page
206                                 redirectToUrl('modules.php?module=index&amp;msg='.$msg.'&amp;ext=mailid');
207                                 break;
208
209                         case 'REJECT': // Redirect to rejection page
210                                 redirectToConfiguredUrl('reject_url');
211                                 break;
212
213                         default:
214                                 DEBUG_LOG(__FILE__, __LINE__, sprintf("Unknown status %s detected in mailid_error_redirect.", getConfig('mailid_error_redirect')));
215                                 redirectToUrl('modules.php?module=index&amp;msg=' . getCode('UNKNOWN_STATUS') . '&amp;ext=mailid');
216                                 break;
217                 }
218         } else {
219                 // Include footer
220                 loadIncludeOnce('inc/footer.php');
221         }
222 } else {
223         // You have to install first!
224         redirectToUrl('install.php');
225 }
226
227 // Shutdown
228 shutdown();
229
230 //
231 ?>