branch prepared
[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 if (!empty($_GET['action'])) $GLOBALS['action'] = secureString($_GET['action']);
41 if (!empty($_GET['what'])) $GLOBALS['what'] = secureString($_GET['what']);
42
43 // Tell everyone we are in this module
44 $GLOBALS['module'] = "mailid"; $CSS = -1;
45
46 // Load the required file(s)
47 require ("inc/config.php");
48
49 if (defined('mxchange_installed') && (mxchange_installed))
50 {
51         // Is the extension active
52         if (!EXT_IS_ACTIVE("mailid", true)) {
53                 // Is not activated/installed yet!
54                 ADD_FATAL(sprintf(EXTENSION_PROBLEM_NOT_INSTALLED, "mailid"));
55         }
56
57         // Add header
58         require_once(PATH."inc/header.php");
59
60         // Init
61         $url_uid = 0; $url_bid = 0; $url_mid = 0;
62
63         // Secure all data
64         if (!empty($_GET['uid']))     $url_uid = bigintval($_GET['uid']);
65         if (!empty($_GET['mailid']))  $url_mid = bigintval($_GET['mailid']);
66         if (!empty($_GET['bonusid'])) $url_bid = bigintval($_GET['bonusid']);
67
68         //* DEBUG: */ die("*".$url_uid."/".$url_bid."/".$url_mid."*<pre>".print_r($FATAL, true)."</pre>");
69
70         // 01        1        12            3    32           21    1     2      2     10
71         if (($url_uid) > 0 && (($url_mid > 0) || ($url_bid > 0)) && (count($FATAL) == 0))
72         {
73                 // Maybe he wants to confirm an email?
74                 if ($url_mid > 0)
75                 {
76                         // Normal-Mails
77                         $result = SQL_QUERY_ESC("SELECT link_type FROM "._MYSQL_PREFIX."_user_links WHERE stats_id=%d AND userid=%d LIMIT 1",
78                          array($url_mid, $url_uid), __FILE__, __LINE__);
79                         $TYPE = "mailid"; $DATA = $url_mid;
80                 }
81                  elseif ($url_bid > 0)
82                 {
83                         // Bonus-Mail
84                         $result = SQL_QUERY_ESC("SELECT link_type FROM "._MYSQL_PREFIX."_user_links WHERE bonus_id=%d AND userid=%d LIMIT 1",
85                          array($url_bid, $url_uid), __FILE__, __LINE__);
86                         $TYPE = "bonusid"; $DATA = $url_bid;
87                 }
88                  else
89                 {
90                         // Problem: No ID entered
91                         LOAD_URL("index.php");
92                 }
93                 if (SQL_NUMROWS($result) == 1)
94                 {
95                         list($ltype) = SQL_FETCHROW($result);
96                         SQL_FREERESULT($result);
97                         switch ($ltype)
98                         {
99                         case "NORMAL":
100                                 // Is the stats ID valid?
101                                 $result = SQL_QUERY_ESC("SELECT pool_id, url FROM "._MYSQL_PREFIX."_user_stats WHERE id=%d LIMIT 1",
102                                  array($url_mid), __FILE__, __LINE__);
103                                 break;
104
105                         case "BONUS":
106                                 // Bonus-Mails
107                                 $result = SQL_QUERY_ESC("SELECT id, url FROM "._MYSQL_PREFIX."_bonus WHERE id=%d LIMIT 1",
108                                  array($url_bid), __FILE__, __LINE__);
109                                 break;
110                         }
111
112                         if (SQL_NUMROWS($result) == 1)
113                         {
114                                 // Load data
115                                 list($pool, $URL) = SQL_FETCHROW($result);
116                                 SQL_FREERESULT($result);
117
118                                 // Is the user's ID unlocked?
119                                 $result = SQL_QUERY_ESC("SELECT status, sex, surname, family FROM "._MYSQL_PREFIX."_user_data WHERE userid=%d LIMIT 1",
120                                  array($url_uid), __FILE__, __LINE__);
121                                 if (SQL_NUMROWS($result) == 1)
122                                 {
123                                         list($status, $sex, $sname, $fname) = SQL_FETCHROW($result);
124                                         SQL_FREERESULT($result);
125                                         if ($status == "CONFIRMED")
126                                         {
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=%d 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=%d 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                                                 if ($VALID)
161                                                 {
162                                                         // If time is zero seconds we have a sponsor mail. 1 Second shall be set to avoid problems
163                                                         if (($time == "0") && ($payment > 0)) { $URL = URL; $time = "1"; }
164                                                         if (($time > 0) && (($payment > 0) || ($points > 0))) {
165                                                                 // He can confirm this mail!
166                                                                 // Export data into constants for the template
167                                                                 define('_UID_VALUE' , $url_uid);
168                                                                 define('_TYPE_VALUE', $TYPE);
169                                                                 define('_DATA_VALUE', $DATA);
170                                                                 define('_URL_VALUE' , DEREFERER($URL));
171
172                                                                 // Load template
173                                                                 LOAD_TEMPLATE("mailid_frames");
174                                                         } else {
175                                                                 $msg = CODE_DATA_INVALID;
176                                                         }
177                                                 } else {
178                                                         $msg = CODE_POSSIBLE_INVALID;
179                                                 }
180                                         } else {
181                                                 $msg = CODE_ACCOUNT_LOCKED;
182                                         }
183                                 } else {
184                                         SQL_FREERESULT($result);
185                                         $msg = CODE_USER_404;
186                                 }
187                         } else {
188                                 SQL_FREERESULT($result);
189                                 $msg = CODE_STATS_404;
190                         }
191                 } else {
192                         SQL_FREERESULT($result);
193                         $msg = CODE_ALREADY_CONFIRMED;
194                 }
195         } else {
196                 // Nothing entered
197                 $msg = CODE_ERROR_MAILID;
198         }
199
200         // Error code is set?
201         if (!empty($msg)) {
202                 LOAD_URL(URL."/modules.php?module=index&msg=".$msg);
203         }
204
205         require_once(PATH."inc/footer.php");
206 }
207  else
208 {
209         // You have to configure first!
210         LOAD_URL("install.php");
211 }
212 // Really all done here... ;-)
213 die();
214
215 //
216 ?>