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