New (template) wrapper function fixEmptyContentToDashes() introduced, EL rewrites:
[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' => '{--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` 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, $refid) = SQL_FETCHROW($result);
64
65                 // Fetch user data
66                 if (!fetchUserData($userid)) {
67                         // Not found, should not happen
68                         debug_report_bug(__FILE__, __LINE__, 'User account ' . $userid . ' not found.');
69                 } // END - if
70
71                 // Load all data and add points
72                 $content = getUserDataArray();
73
74                 // Unlock his account (but only when it is on UNCONFIRMED!)
75                 SQL_QUERY_ESC("UPDATE
76         `{?_MYSQL_PREFIX?}_user_data`
77 SET
78         `status`='CONFIRMED',
79         `ref_payout`={?ref_payout?},
80         `user_hash`=NULL
81 WHERE
82         `user_hash`='%s' AND
83         `status`='UNCONFIRMED'
84 LIMIT 1",
85                         array(getRequestParameter('hash')), __FILE__, __LINE__);
86                 if (SQL_AFFECTEDROWS() == 1) {
87                         // Send email if updated
88                         $message = loadEmailTemplate('confirm-member', $content, bigintval($userid));
89
90                         // And send him right away the confirmation mail
91                         sendEmail($email, '{--GUEST_THANX_CONFIRM--}', $message);
92
93                         // Maybe he got "referaled"?
94                         if (($refid > 0) && ($refid != $userid)) {
95                                 // Select the referal userid
96                                 if (fetchUserData($refid)) {
97                                         // Update ref counter...
98                                         updateReferalCounter($refid);
99
100                                         // Shall I 'pay' the referal points imidiately?
101                                         if (getConfig('ref_payout') == '0') {
102                                                 // Yes, 'pay' it now
103                                                 $locked = false;
104                                         } else {
105                                                 // No, 'pay' it later
106                                                 $locked = true;
107                                         }
108
109                                         // If version matches add ref bonus to refid's account
110                                         if ((isExtensionInstalledAndNewer('bonus', '0.4.4')) && (getConfig('bonus_active') == 'Y')) {
111                                                 // Add points (directly only!)
112                                                 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `bonus_ref`=`bonus_ref`+{?bonus_ref?} WHERE `userid`=%s LIMIT 1",
113                                                         array(bigintval($refid)), __FILE__, __LINE__);
114
115                                                 // Subtract points from system
116                                                 handleBonusPoints(getConfig('bonus_ref'));
117                                         } // END - if
118
119                                         // Add one-time referal bonus over referal system or directly
120                                         // @TODO Try to rewrite the following unset()
121                                         unset($GLOBALS['ref_level']);
122                                         addPointsThroughReferalSystem('referal_bonus', $refid, getConfig('points_ref'), true, bigintval($userid), $locked, getConfig('reg_points_mode'));
123                                 } // END - if
124                         } // END - if
125
126                         if (isExtensionActive('rallye')) {
127                                 // Add user to rallye (or not?)
128                                 addUserToReferalRallye(bigintval($userid));
129                         } // END - if
130
131                         // Account confirmed!
132                         if (isExtensionActive('lead')) {
133                                 // Set special lead cookie
134                                 setSession('lead_userid', bigintval($userid));
135
136                                 // Lead-Code mode enabled
137                                 redirectToUrl('lead-confirm.php');
138                         } else {
139                                 $content['message'] = '{--GUEST_CONFIRMED_DONE--}';
140                                 $content['userid']  = bigintval($userid);
141                         }
142                 } elseif (isExtensionActive('lead')) {
143                         // Set special lead cookie
144                         setSession('lead_userid', bigintval($userid));
145
146                         // Lead-Code mode enabled
147                         redirectToUrl('lead-confirm.php');
148                 } else {
149                         // Nobody was found unter this hash key... or our new member want's to confirm twice?
150                         $content['message'] = '{--GUEST_CONFIRMED_TWICE--}';
151                 }
152         } else {
153                 // Nobody was found unter this hash key... or our new member want's to confirm twice?
154                 $content['message'] = '{--GUEST_CONFIRMED_TWICE--}';
155         }
156
157         // Load template
158         loadTemplate('admin_settings_saved', false, $content['message']);
159 } elseif ((isFormSent()) && (isPostRequestParameterSet('email'))) {
160         // Confirmation link requested      0         1          2
161         if (fetchUserData(postRequestParameter('email'), 'email')) {
162                 // Email address found
163                 $content = getUserDataArray();
164
165                 // Detect status
166                 switch ($content['status']) {
167                         case 'UNCONFIRMED': // Account not confirmed
168                                 // Load email template
169                                 $message = loadEmailTemplate('guest_request_confirm', array('hash' => $content['user_hash']), $content['userid']);
170
171                                 // Send email
172                                 sendEmail(postRequestParameter('email'), '{--REQUEST_CONFIRM_LINK_SUBJECT--}', $message);
173
174                                 // And set message
175                                 $content['message'] = '{--CONFIRM_LINK_SENT--}';
176                                 break;
177
178                         case 'CONFIRMED': // Account already confirmed
179                                 $content['message'] = '{--LOGIN_ID_CONFIRMED--}';
180                                 break;
181
182                         case 'LOCKED': // Account is locked
183                                 $content['message'] = '{--LOGIN_ID_LOCKED--}';
184                                 break;
185                 } // END - switch
186         } else {
187                 // Email address not registered
188                 $content['message'] = '{--EMAIL_404--}';
189         }
190
191         // Load template
192         loadTemplate('admin_settings_saved', false, $content['message']);
193 } else {
194         // No hash found, the guest may want to enter his email address to re-get his confirmation link?
195         loadTemplate('guest_confirm_link');
196 }
197
198 // [EOF]
199 ?>