Cache file does no longer output fatal messages when it can't find file for deletion
[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         //* DEBUG: */ die("*".$url_uid."/".$url_bid."/".$url_mid."*<pre>".print_r($FATAL, true)."</pre>");
63
64         // 01        1        12            3    32           21    1     2      2     10
65         if (($url_uid) > 0 && (($url_mid > 0) || ($url_bid > 0)) && (count($FATAL) == 0)) {
66                 // Maybe he wants to confirm an email?
67                 if ($url_mid > 0) {
68                         // Normal-Mails
69                         $result = SQL_QUERY_ESC("SELECT link_type FROM "._MYSQL_PREFIX."_user_links WHERE stats_id=%s AND userid=%s LIMIT 1",
70                          array($url_mid, $url_uid), __FILE__, __LINE__);
71                         $type = "mailid"; $DATA = $url_mid;
72                 } elseif ($url_bid > 0) {
73                         // Bonus-Mail
74                         $result = SQL_QUERY_ESC("SELECT link_type FROM "._MYSQL_PREFIX."_user_links WHERE bonus_id=%s AND userid=%s LIMIT 1",
75                          array($url_bid, $url_uid), __FILE__, __LINE__);
76                         $type = "bonusid"; $DATA = $url_bid;
77                 } else {
78                         // Problem: No ID entered
79                         LOAD_URL("index.php");
80                 }
81
82                 if (SQL_NUMROWS($result) == 1) {
83                         // Load the entry
84                         list($ltype) = SQL_FETCHROW($result);
85
86                         // Clean result
87                         SQL_FREERESULT($result);
88
89                         switch ($ltype)
90                         {
91                         case "NORMAL":
92                                 // Is the stats ID valid?
93                                 $result = SQL_QUERY_ESC("SELECT pool_id, url, subject FROM "._MYSQL_PREFIX."_user_stats WHERE id=%s LIMIT 1",
94                                  array($url_mid), __FILE__, __LINE__);
95                                 break;
96
97                         case "BONUS":
98                                 // Is the bonus extension active?
99                                 if (!EXT_IS_ACTIVE("bonus")) {
100                                         // Abort here
101                                         LOAD_URL("modules.php?module=index&amp;msg=".CODE_EXTENSION_PROBLEM."&amp;ext=mailid");
102                                 } // END - if
103
104                                 // Bonus-Mails
105                                 $result = SQL_QUERY_ESC("SELECT id, url, subject FROM "._MYSQL_PREFIX."_bonus WHERE id=%s LIMIT 1",
106                                  array($url_bid), __FILE__, __LINE__);
107                                 break;
108                         }
109
110                         if (SQL_NUMROWS($result) == 1) {
111                                 // Load data
112                                 list($pool, $URL, $EXTRA_TITLE) = SQL_FETCHROW($result);
113
114                                 // Free result
115                                 SQL_FREERESULT($result);
116
117                                 // Compile extra title
118                                 $EXTRA_TITLE = COMPILE_CODE($EXTRA_TITLE);
119
120                                 // Is the user's ID unlocked?
121                                 $result = SQL_QUERY_ESC("SELECT status, gender, surname, family FROM `"._MYSQL_PREFIX."_user_data` WHERE userid=%s LIMIT 1",
122                                  array($url_uid), __FILE__, __LINE__);
123                                 if (SQL_NUMROWS($result) == 1) {
124                                         list($status, $gender, $sname, $fname) = SQL_FETCHROW($result);
125                                         SQL_FREERESULT($result);
126                                         if ($status == "CONFIRMED") {
127                                                 // User has confirmed his account so we can procede...
128                                                 switch ($ltype)
129                                                 {
130                                                 case "NORMAL":
131                                                         $result = SQL_QUERY_ESC("SELECT payment_id FROM "._MYSQL_PREFIX."_user_stats WHERE pool_id=%s LIMIT 1",
132                                                          array(bigintval($pool)), __FILE__, __LINE__);
133                                                         if (SQL_NUMROWS($result) == 1)
134                                                         {
135                                                                 list($pay) = SQL_FETCHROW($result);
136                                                                 $time      = GET_PAY_POINTS($pay, "time");
137                                                                 $payment   = GET_PAY_POINTS($pay, "payment");
138                                                                 $VALID     = 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                                                         {
150                                                                 list($points, $time) = SQL_FETCHROW($result);
151                                                                 $payment = "0.00000";
152                                                                 $VALID = true;
153                                                         }
154
155                                                         // Free memory
156                                                         SQL_FREERESULT($result);
157                                                         break;
158                                                 }
159
160                                                 // Add header
161                                                 require_once(PATH."inc/header.php");
162
163                                                 // Was that mail a valid one?
164                                                 if ($VALID) {
165                                                         // If time is zero seconds we have a sponsor mail. 1 Second shall be set to avoid problems
166                                                         if (($time == "0") && ($payment > 0)) { $URL = URL; $time = "1"; }
167                                                         if (($time > 0) && (($payment > 0) || ($points > 0))) {
168                                                                 // He can confirm this mail!
169                                                                 // Export data into constants for the template
170                                                                 define('_UID_VALUE' , $url_uid);
171                                                                 define('_TYPE_VALUE', $type);
172                                                                 define('_DATA_VALUE', $DATA);
173                                                                 define('_URL_VALUE' , DEREFERER($URL));
174
175                                                                 // Load template
176                                                                 LOAD_TEMPLATE("mailid_frames");
177                                                         } else {
178                                                                 $msg = CODE_DATA_INVALID;
179                                                         }
180                                                 } else {
181                                                         $msg = CODE_POSSIBLE_INVALID;
182                                                 }
183                                         } else {
184                                                 $msg = CODE_ACCOUNT_LOCKED;
185                                         }
186                                 } else {
187                                         SQL_FREERESULT($result);
188                                         $msg = CODE_USER_404;
189                                 }
190                         } else {
191                                 SQL_FREERESULT($result);
192                                 $msg = CODE_STATS_404;
193                         }
194                 } else {
195                         SQL_FREERESULT($result);
196                         $msg = CODE_ALREADY_CONFIRMED;
197                 }
198         } else {
199                 // Nothing entered
200                 $msg = CODE_ERROR_MAILID;
201         }
202
203         // Error code is set?
204         if (!empty($msg)) {
205                 switch (getConfig('mailid_error_redirect')) {
206                         case "INDEX": // Redirect to index page
207                                 LOAD_URL("modules.php?module=index&amp;msg=".$msg."&amp;ext=mailid");
208                                 break;
209
210                         case "REJECT": // Redirect to rejection page
211                                 LOAD_URL(getConfig('reject_url'));
212                                 break;
213
214                         default:
215                                 DEBUG_LOG(__FILE__, __LINE__, sprintf("Unknown status %s detected in mailid_error_redirect.", getConfig('mailid_error_redirect')));
216                                 LOAD_URL("modules.php?module=index&amp;msg=".CODE_UNKNOWN_STATUS."&amp;ext=mailid");
217                                 break;
218                 }
219         } else {
220                 // Include footer
221                 require_once(PATH."inc/footer.php");
222         }
223 } else {
224         // You have to configure first!
225         LOAD_URL("install.php");
226 }
227
228 //
229 ?>