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