Even more rewrites/fixes from EL branch (please report any broken part after you...
[mailer.git] / inc / modules / guest / what-confirm.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 10/13/2003 *
4  * ===================                          Last change: 08/23/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-confirm.php                                 *
8  * -------------------------------------------------------------------- *
9  * Short description : Stuff around the confirmation link               *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Alles um den Bestaetigungslink                   *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if (!defined('__SECURITY')) {
42         die();
43 } // END - if
44
45 // Add description as navigation point
46 addMenuDescription('guest', __FILE__);
47
48 // Init content
49 $content = array(
50         'message' => getMessage('GUEST_CONFIRMED_FAILED'),
51         'userid'  => 0,
52 );
53
54 if (isGetRequestParameterSet('hash')) {
55         // Initialize the user id
56         $userid = '0';
57
58         // Search for an unconfirmed or confirmed account
59         $result = SQL_QUERY_ESC("SELECT `userid`, `email`, `refid`,`gender` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `user_hash`='%s' AND (`status`='UNCONFIRMED' OR `status`='CONFIRMED') LIMIT 1",
60                 array(getRequestParameter('hash')), __FILE__, __LINE__);
61         if (SQL_NUMROWS($result) == 1) {
62                 // Ok, he want's to confirm now so we load some data
63                 list($userid, $email, $rid, $gender) = SQL_FETCHROW($result);
64
65                 // Fetch user data
66                 if (!fetchUserData($userid)) {
67                         // Not found, should not happen
68                         debug_report_bug('User account ' . $userid . ' not found.');
69                 } // END - if
70
71                 // Load all data and add points
72                 $content = getUserDataArray();
73                 $content['gender'] = translateGender($content['gender']);
74                 $content['points'] = getConfig('points_register');
75
76                 // Unlock his account (but only when it is on UNCONFIRMED!)
77                 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `status`='CONFIRMED', ref_payout={?ref_payout?}, `user_hash`=NULL WHERE `user_hash`='%s' AND `status`='UNCONFIRMED' LIMIT 1",
78                         array(getRequestParameter('hash')), __FILE__, __LINE__);
79                 if (SQL_AFFECTEDROWS() == 1) {
80                         // Send email if updated
81                         $message = loadEmailTemplate('confirm-member', $content, bigintval($userid));
82
83                         // And send him right away the confirmation mail
84                         sendEmail($email, getMessage('GUEST_THANX_CONFIRM'), $message);
85
86                         // Maybe he got "referaled"?
87                         if (($rid > 0) && ($rid != $userid)) {
88                                 // Select the referal userid
89                                 if (fetchUserData($rid)) {
90                                         // Update ref counter...
91                                         updateReferalCounter($rid);
92
93                                         // Shall I 'pay' the referal points imidiately?
94                                         if (getConfig('ref_payout') == '0') {
95                                                 // Yes, 'pay' it now
96                                                 $locked = false;
97                                         } else {
98                                                 // No, 'pay' it later
99                                                 $locked = true;
100                                         }
101
102                                         // If version matches add ref bonus to refid's account
103                                         if ((isExtensionInstalledAndNewer('bonus', '0.4.4')) && (getConfig('bonus_active') == 'Y')) {
104                                                 // Add points (directly only!)
105                                                 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `bonus_ref`=`bonus_ref`+{?bonus_ref?} WHERE `userid`=%s LIMIT 1",
106                                                         array(bigintval($rid)), __FILE__, __LINE__);
107
108                                                 // Subtract points from system
109                                                 handleBonusPoints(getConfig('bonus_ref'));
110                                         } // END - if
111
112                                         // Add one-time referal bonus over referal system or directly
113                                         // @TODO Try to rewrite the following unset()
114                                         unset($GLOBALS['ref_level']);
115                                         addPointsThroughReferalSystem('referal_bonus', $rid, getConfig('points_ref'), true, bigintval($userid), $locked, getConfig('reg_points_mode'));
116                                 } // END - if
117                         } // END - if
118
119                         if (isExtensionActive('rallye')) {
120                                 // Add user to rallye (or not?)
121                                 addUserToReferalRallye(bigintval($userid));
122                         } // END - if
123
124                         // Account confirmed!
125                         if (isExtensionActive('lead')) {
126                                 // Set special lead cookie
127                                 setSession('lead_userid', bigintval($userid));
128
129                                 // Lead-Code mode enabled
130                                 redirectToUrl('lead-confirm.php');
131                         } else {
132                                 $content['message'] = getMessage('GUEST_CONFIRMED_DONE');
133                                 $content['userid']  = bigintval($userid);
134                         }
135                 } elseif (isExtensionActive('lead')) {
136                         // Set special lead cookie
137                         setSession('lead_userid', bigintval($userid));
138
139                         // Lead-Code mode enabled
140                         redirectToUrl('lead-confirm.php');
141                 } else {
142                         // Nobody was found unter this hash key... or our new member want's to confirm twice?
143                         $content['message'] = getMessage('GUEST_CONFIRMED_TWICE');
144                 }
145         } else {
146                 // Nobody was found unter this hash key... or our new member want's to confirm twice?
147                 $content['message'] = getMessage('GUEST_CONFIRMED_TWICE');
148         }
149
150         // Load template
151         loadTemplate('admin_settings_saved', false, $content['message']);
152 } elseif ((isFormSent()) && (isPostRequestParameterSet('email'))) {
153         // Confirmation link requested      0         1          2
154         if (fetchUserData(postRequestParameter('email'), 'email')) {
155                 // Email address found
156                 $content = getUserDataArray();
157
158                 // Detect status
159                 switch ($content['status']) {
160                         case 'UNCONFIRMED': // Account not confirmed
161                                 // Load email template
162                                 $message = loadEmailTemplate('guest_request_confirm', array('hash' => $content['user_hash']), $content['userid']);
163
164                                 // Send email
165                                 sendEmail(postRequestParameter('email'), getMessage('REQUEST_CONFIRM_LINK_SUBJ'), $message);
166
167                                 // And set message
168                                 $content['message'] = getMessage('CONFIRM_LINK_SENT');
169                                 break;
170
171                         case 'CONFIRMED': // Account already confirmed
172                                 $content['message'] = getMessage('LOGIN_ID_CONFIRMED');
173                                 break;
174
175                         case 'LOCKED': // Account is locked
176                                 $content['message'] = getMessage('LOGIN_ID_LOCKED');
177                                 break;
178                 } // END - switch
179         } else {
180                 // Email address not registered
181                 $content['message'] = getMessage('EMAIL_404');
182         }
183
184         // Load template
185         loadTemplate('admin_settings_saved', false, $content['message']);
186 } else {
187         // No hash found, the guest may want to enter his email address to re-get his confirmation link?
188         loadTemplate('guest_confirm_link');
189 }
190
191 // [EOF]
192 ?>