Missing theme extension fixed in theme_edit/theme_import
[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 {
49         // Is the extension active
50         if (!EXT_IS_ACTIVE("mailid", true)) {
51                 // Is not activated/installed yet!
52                 LOAD_URL("modules.php?module=index&amp;msg=".CODE_EXTENSION_PROBLEM."&amp;ext=mailid");
53         } // END - if
54
55         // Init
56         $url_uid = 0; $url_bid = 0; $url_mid = 0;
57
58         // Secure all data
59         if (!empty($_GET['uid']))     $url_uid = bigintval($_GET['uid']);
60         if (!empty($_GET['mailid']))  $url_mid = bigintval($_GET['mailid']);
61         if (!empty($_GET['bonusid'])) $url_bid = bigintval($_GET['bonusid']);
62
63         //* DEBUG: */ die("*".$url_uid."/".$url_bid."/".$url_mid."*<pre>".print_r($FATAL, true)."</pre>");
64
65         // 01        1        12            3    32           21    1     2      2     10
66         if (($url_uid) > 0 && (($url_mid > 0) || ($url_bid > 0)) && (count($FATAL) == 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"; $DATA = $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"; $DATA = $url_bid;
78                 } else {
79                         // Problem: No ID entered
80                         LOAD_URL("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                                 if (!EXT_IS_ACTIVE("bonus")) {
101                                         // Abort here
102                                         LOAD_URL("modules.php?module=index&amp;msg=".CODE_EXTENSION_PROBLEM."&amp;ext=mailid");
103                                 } // END - if
104
105                                 // Bonus-Mails
106                                 $result = SQL_QUERY_ESC("SELECT id, url, subject FROM "._MYSQL_PREFIX."_bonus WHERE id=%s LIMIT 1",
107                                  array($url_bid), __FILE__, __LINE__);
108                                 break;
109                         }
110
111                         if (SQL_NUMROWS($result) == 1) {
112                                 // Load data
113                                 list($pool, $URL, $EXTRA_TITLE) = SQL_FETCHROW($result);
114
115                                 // Free result
116                                 SQL_FREERESULT($result);
117
118                                 // Compile extra title
119                                 $EXTRA_TITLE = COMPILE_CODE($EXTRA_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                                                         {
136                                                                 list($pay) = SQL_FETCHROW($result);
137                                                                 $time      = GET_PAY_POINTS($pay, "time");
138                                                                 $payment   = GET_PAY_POINTS($pay, "payment");
139                                                                 $VALID     = true;
140                                                         }
141
142                                                         // Free memory
143                                                         SQL_FREERESULT($result);
144                                                         break;
145
146                                                 case "BONUS":
147                                                         $result = SQL_QUERY_ESC("SELECT points, time FROM "._MYSQL_PREFIX."_bonus WHERE id=%s LIMIT 1",
148                                                          array($url_bid), __FILE__, __LINE__);
149                                                         if (SQL_NUMROWS($result) == 1)
150                                                         {
151                                                                 list($points, $time) = SQL_FETCHROW($result);
152                                                                 $payment = "0.00000";
153                                                                 $VALID = true;
154                                                         }
155
156                                                         // Free memory
157                                                         SQL_FREERESULT($result);
158                                                         break;
159                                                 }
160
161                                                 // Add header
162                                                 require_once(PATH."inc/header.php");
163
164                                                 // Was that mail a valid one?
165                                                 if ($VALID) {
166                                                         // If time is zero seconds we have a sponsor mail. 1 Second shall be set to avoid problems
167                                                         if (($time == "0") && ($payment > 0)) { $URL = URL; $time = "1"; }
168                                                         if (($time > 0) && (($payment > 0) || ($points > 0))) {
169                                                                 // He can confirm this mail!
170                                                                 // Export data into constants for the template
171                                                                 define('_UID_VALUE' , $url_uid);
172                                                                 define('_TYPE_VALUE', $type);
173                                                                 define('_DATA_VALUE', $DATA);
174                                                                 define('_URL_VALUE' , DEREFERER($URL));
175
176                                                                 // Load template
177                                                                 LOAD_TEMPLATE("mailid_frames");
178                                                         } else {
179                                                                 $msg = CODE_DATA_INVALID;
180                                                         }
181                                                 } else {
182                                                         $msg = CODE_POSSIBLE_INVALID;
183                                                 }
184                                         } else {
185                                                 $msg = CODE_ACCOUNT_LOCKED;
186                                         }
187                                 } else {
188                                         SQL_FREERESULT($result);
189                                         $msg = CODE_USER_404;
190                                 }
191                         } else {
192                                 SQL_FREERESULT($result);
193                                 $msg = CODE_STATS_404;
194                         }
195                 } else {
196                         SQL_FREERESULT($result);
197                         $msg = CODE_ALREADY_CONFIRMED;
198                 }
199         } else {
200                 // Nothing entered
201                 $msg = CODE_ERROR_MAILID;
202         }
203
204         // Error code is set?
205         if (!empty($msg)) {
206                 switch ($_CONFIG['mailid_error_redirect']) {
207                         case "INDEX": // Redirect to index page
208                                 LOAD_URL("modules.php?module=index&amp;msg=".$msg."&amp;ext=mailid");
209                                 break;
210
211                         case "REJECT": // Redirect to rejection page
212                                 LOAD_URL($_CONFIG['reject_url']);
213                                 break;
214
215                         default:
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 ?>