no module fix
[mailer.git] / 0.2.1 / 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, "register"));
55         }
56
57         // Add header
58         require_once(PATH."inc/header.php");
59
60         // Secure all data
61         $url_uid = "0"; $url_bid = "0"; $url_mid = "0";
62         if (!empty($_GET['uid']))     $url_uid = bigintval($_GET['uid']);
63         if (!empty($_GET['mailid']))  $url_mid = bigintval($_GET['mailid']);
64         if (!empty($_GET['bonusid'])) $url_bid = bigintval($_GET['bonusid']);
65
66         // 01        1        12            3    32           21    1     2      2     10
67         if (($url_uid) > 0 && (($url_mid > 0) || ($url_bid > 0)) && (count($FATAL) == 0))
68         {
69                 // Maybe he wants to confirm an email?
70                 if ($url_mid > 0)
71                 {
72                         // Normal-Mails
73                         $result = SQL_QUERY_ESC("SELECT link_type FROM "._MYSQL_PREFIX."_user_links WHERE stats_id=%d AND userid=%d LIMIT 1",
74                          array($url_mid, $url_uid), __FILE__, __LINE__);
75                         $TYPE = "mailid"; $DATA = $url_mid;
76                 }
77                  elseif ($url_bid > 0)
78                 {
79                         // Bonus-Mail
80                         $result = SQL_QUERY_ESC("SELECT link_type FROM "._MYSQL_PREFIX."_user_links WHERE bonus_id=%d AND userid=%d LIMIT 1",
81                          array($url_bid, $url_uid), __FILE__, __LINE__);
82                         $TYPE = "bonusid"; $DATA = $url_bid;
83                 }
84                  else
85                 {
86                         // Problem: No ID entered
87                         LOAD_URL("index.php");
88                 }
89                 if (SQL_NUMROWS($result) == 1)
90                 {
91                         list($ltype) = SQL_FETCHROW($result);
92                         SQL_FREERESULT($result);
93                         switch ($ltype)
94                         {
95                         case "NORMAL":
96                                 // Is the stats ID valid?
97                                 $result = SQL_QUERY_ESC("SELECT pool_id, url FROM "._MYSQL_PREFIX."_user_stats WHERE id=%d LIMIT 1",
98                                  array($url_mid), __FILE__, __LINE__);
99                                 break;
100
101                         case "BONUS":
102                                 // Bonus-Mails
103                                 $result = SQL_QUERY_ESC("SELECT id, url FROM "._MYSQL_PREFIX."_bonus WHERE id=%d LIMIT 1",
104                                  array($url_bid), __FILE__, __LINE__);
105                                 break;
106                         }
107
108                         if (SQL_NUMROWS($result) == 1)
109                         {
110                                 // Load data
111                                 list($pool, $URL) = SQL_FETCHROW($result);
112                                 SQL_FREERESULT($result);
113
114                                 // Is the user's ID unlocked?
115                                 $result = SQL_QUERY_ESC("SELECT status, sex, surname, family FROM "._MYSQL_PREFIX."_user_data WHERE userid=%d LIMIT 1",
116                                  array($url_uid), __FILE__, __LINE__);
117                                 if (SQL_NUMROWS($result) == 1)
118                                 {
119                                         list($status, $sex, $sname, $fname) = SQL_FETCHROW($result);
120                                         SQL_FREERESULT($result);
121                                         if ($status == "CONFIRMED")
122                                         {
123                                                 // User has confirmed his account so we can procede...
124                                                 switch ($ltype)
125                                                 {
126                                                 case "NORMAL":
127                                                         $result = SQL_QUERY_ESC("SELECT payment_id FROM "._MYSQL_PREFIX."_user_stats WHERE pool_id=%d LIMIT 1",
128                                                          array(bigintval($pool)), __FILE__, __LINE__);
129                                                         if (SQL_NUMROWS($result) == 1)
130                                                         {
131                                                                 list($pay) = SQL_FETCHROW($result);
132                                                                 $time      = GET_PAY_POINTS($pay, "time");
133                                                                 $payment   = GET_PAY_POINTS($pay, "payment");
134                                                                 $VALID     = true;
135                                                         }
136
137                                                         // Free memory
138                                                         SQL_FREERESULT($result);
139                                                         break;
140
141                                                 case "BONUS":
142                                                         $result = SQL_QUERY_ESC("SELECT points, time FROM "._MYSQL_PREFIX."_bonus WHERE id=%d LIMIT 1",
143                                                          array($url_bid), __FILE__, __LINE__);
144                                                         if (SQL_NUMROWS($result) == 1)
145                                                         {
146                                                                 list($points, $time) = SQL_FETCHROW($result);
147                                                                 $payment = "0.00000";
148                                                                 $VALID = true;
149                                                         }
150
151                                                         // Free memory
152                                                         SQL_FREERESULT($result);
153                                                         break;
154                                                 }
155
156                                                 if ($VALID)
157                                                 {
158                                                         // If time is zero seconds we have a sponsor mail. 1 Second shall be set to avoid problems
159                                                         if (($time == "0") && ($payment > 0)) { $URL = URL; $time = "1"; }
160                                                         if (($time > 0) && (($payment > 0) || ($points > 0)))
161                                                         {
162                                                                 // He can confirm this mail!
163                                                                 // Export data into constants for the template
164                                                                 define('_UID_VALUE' , $url_uid);
165                                                                 define('_TYPE_VALUE', $TYPE);
166                                                                 define('_DATA_VALUE', $DATA);
167                                                                 define('_URL_VALUE' , DEREFERER($URL));
168
169                                                                 // Load template
170                                                                 LOAD_TEMPLATE("mailid_frames");
171                                                         }
172                                                          else
173                                                         {
174                                                                 $msg = CODE_DATA_INVALID;
175                                                         }
176                                                 }
177                                                  else
178                                                 {
179                                                         $msg = CODE_POSSIBLE_INVALID;
180                                                 }
181                                         }
182                                          else
183                                         {
184                                                 $msg = CODE_ACCOUNT_LOCKED;
185                                         }
186                                 }
187                                  else
188                                 {
189                                         SQL_FREERESULT($result);
190                                         $msg = CODE_USER_404;
191                                 }
192                         }
193                          else
194                         {
195                                 SQL_FREERESULT($result);
196                                 $msg = CODE_STATS_404;
197                         }
198                 }
199                  else
200                 {
201                         SQL_FREERESULT($result);
202                         $msg = CODE_ALREADY_CONFIRMED;
203                 }
204         }
205          else
206         {
207                 // Nothing entered
208                 $msg = CODE_ERROR_MAILID;
209         }
210         if (!empty($msg))
211         {
212                 LOAD_URL(URL."/modules.php?module=index&msg=".$msg);
213         }
214
215         require_once(PATH."inc/footer.php");
216 }
217  else
218 {
219         // You have to configure first!
220         LOAD_URL("install.php");
221 }
222 // Really all done here... ;-)
223 die();
224
225 //
226 ?>