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