LOAD_CONFIGURED_URL() added, bug #66 resolved
[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  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Load security stuff here (Oh, I hope this is not unsecure? Am I paranoia??? ;-) )
35 require_once("inc/libs/security_functions.php");
36
37 // Init "action" and "what"
38 global $what, $action;
39 $GLOBALS['what'] = ""; $GLOBALS['action'] = "";
40
41 // Tell everyone we are in this module
42 $GLOBALS['module'] = "mailid"; $CSS = -1;
43
44 // Load the required file(s)
45 require("inc/config.php");
46
47 if (isBooleanConstantAndTrue('mxchange_installed')) {
48         // Is the extension active
49         if (!EXT_IS_ACTIVE("mailid", true)) {
50                 // Is not activated/installed yet!
51                 LOAD_URL("modules.php?module=index&amp;msg=".CODE_EXTENSION_PROBLEM."&amp;ext=mailid");
52         } // END - if
53
54         // Init
55         $url_uid = 0; $url_bid = 0; $url_mid = 0;
56
57         // Secure all data
58         if (!empty($_GET['uid']))     $url_uid = bigintval($_GET['uid']);
59         if (!empty($_GET['mailid']))  $url_mid = bigintval($_GET['mailid']);
60         if (!empty($_GET['bonusid'])) $url_bid = bigintval($_GET['bonusid']);
61
62         // 01        1        12            3    32           21    1                   22     10
63         if (($url_uid) > 0 && (($url_mid > 0) || ($url_bid > 0)) && (getTotalFatalErrors() == 0)) {
64                 // Maybe he wants to confirm an email?
65                 if ($url_mid > 0) {
66                         // Normal-Mails
67                         $result = SQL_QUERY_ESC("SELECT link_type FROM "._MYSQL_PREFIX."_user_links WHERE stats_id=%s AND userid=%s LIMIT 1",
68                          array($url_mid, $url_uid), __FILE__, __LINE__);
69                         $type = "mailid"; $DATA = $url_mid;
70                 } elseif ($url_bid > 0) {
71                         // Bonus-Mail
72                         $result = SQL_QUERY_ESC("SELECT link_type FROM "._MYSQL_PREFIX."_user_links WHERE bonus_id=%s AND userid=%s LIMIT 1",
73                          array($url_bid, $url_uid), __FILE__, __LINE__);
74                         $type = "bonusid"; $DATA = $url_bid;
75                 } else {
76                         // Problem: No ID entered
77                         LOAD_URL("index.php");
78                 }
79
80                 if (SQL_NUMROWS($result) == 1) {
81                         // Load the entry
82                         list($ltype) = SQL_FETCHROW($result);
83
84                         // Clean result
85                         SQL_FREERESULT($result);
86
87                         switch ($ltype)
88                         {
89                         case "NORMAL":
90                                 // Is the stats ID valid?
91                                 $result = SQL_QUERY_ESC("SELECT pool_id, url, subject FROM "._MYSQL_PREFIX."_user_stats WHERE id=%s LIMIT 1",
92                                  array($url_mid), __FILE__, __LINE__);
93                                 break;
94
95                         case "BONUS":
96                                 // Is the bonus extension active?
97                                 if (!EXT_IS_ACTIVE("bonus")) {
98                                         // Abort here
99                                         LOAD_URL("modules.php?module=index&amp;msg=".CODE_EXTENSION_PROBLEM."&amp;ext=mailid");
100                                 } // END - if
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, $EXTRA_TITLE) = SQL_FETCHROW($result);
111
112                                 // Free result
113                                 SQL_FREERESULT($result);
114
115                                 // Compile extra title
116                                 $EXTRA_TITLE = COMPILE_CODE($EXTRA_TITLE);
117
118                                 // Is the user's ID unlocked?
119                                 $result = SQL_QUERY_ESC("SELECT status, gender, surname, family FROM `"._MYSQL_PREFIX."_user_data` WHERE userid=%s LIMIT 1",
120                                  array($url_uid), __FILE__, __LINE__);
121                                 if (SQL_NUMROWS($result) == 1) {
122                                         list($status, $gender, $sname, $fname) = SQL_FETCHROW($result);
123                                         SQL_FREERESULT($result);
124                                         if ($status == "CONFIRMED") {
125                                                 // User has confirmed his account so we can procede...
126                                                 switch ($ltype)
127                                                 {
128                                                 case "NORMAL":
129                                                         $result = SQL_QUERY_ESC("SELECT payment_id FROM "._MYSQL_PREFIX."_user_stats WHERE pool_id=%s LIMIT 1",
130                                                          array(bigintval($pool)), __FILE__, __LINE__);
131                                                         if (SQL_NUMROWS($result) == 1)
132                                                         {
133                                                                 list($pay) = SQL_FETCHROW($result);
134                                                                 $time      = GET_PAY_POINTS($pay, "time");
135                                                                 $payment   = GET_PAY_POINTS($pay, "payment");
136                                                                 $VALID     = true;
137                                                         }
138
139                                                         // Free memory
140                                                         SQL_FREERESULT($result);
141                                                         break;
142
143                                                 case "BONUS":
144                                                         $result = SQL_QUERY_ESC("SELECT points, time FROM "._MYSQL_PREFIX."_bonus WHERE id=%s LIMIT 1",
145                                                          array($url_bid), __FILE__, __LINE__);
146                                                         if (SQL_NUMROWS($result) == 1)
147                                                         {
148                                                                 list($points, $time) = SQL_FETCHROW($result);
149                                                                 $payment = "0.00000";
150                                                                 $VALID = true;
151                                                         }
152
153                                                         // Free memory
154                                                         SQL_FREERESULT($result);
155                                                         break;
156                                                 }
157
158                                                 // Add header
159                                                 require_once(PATH."inc/header.php");
160
161                                                 // Was that mail a valid one?
162                                                 if ($VALID) {
163                                                         // If time is zero seconds we have a sponsor mail. 1 Second shall be set to avoid problems
164                                                         if (($time == "0") && ($payment > 0)) { $URL = URL; $time = "1"; }
165                                                         if (($time > 0) && (($payment > 0) || ($points > 0))) {
166                                                                 // He can confirm this mail!
167                                                                 // Export data into constants for the template
168                                                                 define('_UID_VALUE' , $url_uid);
169                                                                 define('_TYPE_VALUE', $type);
170                                                                 define('_DATA_VALUE', $DATA);
171                                                                 define('_URL_VALUE' , DEREFERER($URL));
172
173                                                                 // Load template
174                                                                 LOAD_TEMPLATE("mailid_frames");
175                                                         } else {
176                                                                 $msg = CODE_DATA_INVALID;
177                                                         }
178                                                 } else {
179                                                         $msg = CODE_POSSIBLE_INVALID;
180                                                 }
181                                         } else {
182                                                 $msg = CODE_ACCOUNT_LOCKED;
183                                         }
184                                 } else {
185                                         SQL_FREERESULT($result);
186                                         $msg = CODE_USER_404;
187                                 }
188                         } else {
189                                 SQL_FREERESULT($result);
190                                 $msg = CODE_STATS_404;
191                         }
192                 } else {
193                         SQL_FREERESULT($result);
194                         $msg = CODE_ALREADY_CONFIRMED;
195                 }
196         } else {
197                 // Nothing entered
198                 $msg = CODE_ERROR_MAILID;
199         }
200
201         // Error code is set?
202         if (!empty($msg)) {
203                 switch (getConfig('mailid_error_redirect')) {
204                         case "INDEX": // Redirect to index page
205                                 LOAD_URL("modules.php?module=index&amp;msg=".$msg."&amp;ext=mailid");
206                                 break;
207
208                         case "REJECT": // Redirect to rejection page
209                                 LOAD_CONFIGURED_URL('reject_url');
210                                 break;
211
212                         default:
213                                 DEBUG_LOG(__FILE__, __LINE__, sprintf("Unknown status %s detected in mailid_error_redirect.", getConfig('mailid_error_redirect')));
214                                 LOAD_URL("modules.php?module=index&amp;msg=".CODE_UNKNOWN_STATUS."&amp;ext=mailid");
215                                 break;
216                 }
217         } else {
218                 // Include footer
219                 require_once(PATH."inc/footer.php");
220         }
221 } else {
222         // You have to install first!
223         LOAD_URL("install.php");
224 }
225
226 //
227 ?>