API test for WDS66-API integrated
[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                         // Load the entry
96                         list($ltype) = SQL_FETCHROW($result);
97
98                         // Clean result
99                         SQL_FREERESULT($result);
100                         switch ($ltype)
101                         {
102                         case "NORMAL":
103                                 // Is the stats ID valid?
104                                 $result = SQL_QUERY_ESC("SELECT pool_id, url FROM "._MYSQL_PREFIX."_user_stats WHERE id=%d LIMIT 1",
105                                  array($url_mid), __FILE__, __LINE__);
106                                 break;
107
108                         case "BONUS":
109                                 // Bonus-Mails
110                                 $result = SQL_QUERY_ESC("SELECT id, url FROM "._MYSQL_PREFIX."_bonus WHERE id=%d LIMIT 1",
111                                  array($url_bid), __FILE__, __LINE__);
112                                 break;
113                         }
114
115                         if (SQL_NUMROWS($result) == 1)
116                         {
117                                 // Load data
118                                 list($pool, $URL) = SQL_FETCHROW($result);
119                                 SQL_FREERESULT($result);
120
121                                 // Is the user's ID unlocked?
122                                 $result = SQL_QUERY_ESC("SELECT status, sex, surname, family FROM "._MYSQL_PREFIX."_user_data WHERE userid=%d LIMIT 1",
123                                  array($url_uid), __FILE__, __LINE__);
124                                 if (SQL_NUMROWS($result) == 1)
125                                 {
126                                         list($status, $sex, $sname, $fname) = SQL_FETCHROW($result);
127                                         SQL_FREERESULT($result);
128                                         if ($status == "CONFIRMED")
129                                         {
130                                                 // User has confirmed his account so we can procede...
131                                                 switch ($ltype)
132                                                 {
133                                                 case "NORMAL":
134                                                         $result = SQL_QUERY_ESC("SELECT payment_id FROM "._MYSQL_PREFIX."_user_stats WHERE pool_id=%d LIMIT 1",
135                                                          array(bigintval($pool)), __FILE__, __LINE__);
136                                                         if (SQL_NUMROWS($result) == 1)
137                                                         {
138                                                                 list($pay) = SQL_FETCHROW($result);
139                                                                 $time      = GET_PAY_POINTS($pay, "time");
140                                                                 $payment   = GET_PAY_POINTS($pay, "payment");
141                                                                 $VALID     = true;
142                                                         }
143
144                                                         // Free memory
145                                                         SQL_FREERESULT($result);
146                                                         break;
147
148                                                 case "BONUS":
149                                                         $result = SQL_QUERY_ESC("SELECT points, time FROM "._MYSQL_PREFIX."_bonus WHERE id=%d LIMIT 1",
150                                                          array($url_bid), __FILE__, __LINE__);
151                                                         if (SQL_NUMROWS($result) == 1)
152                                                         {
153                                                                 list($points, $time) = SQL_FETCHROW($result);
154                                                                 $payment = "0.00000";
155                                                                 $VALID = true;
156                                                         }
157
158                                                         // Free memory
159                                                         SQL_FREERESULT($result);
160                                                         break;
161                                                 }
162
163                                                 if ($VALID)
164                                                 {
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                 LOAD_URL(URL."/modules.php?module=index&msg=".$msg);
206         }
207
208         require_once(PATH."inc/footer.php");
209 }
210  else
211 {
212         // You have to configure first!
213         LOAD_URL("install.php");
214 }
215 // Really all done here... ;-)
216 die();
217
218 //
219 ?>