2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 07/10/2004 *
4 * =================== Last change: 07/10/2004 *
6 * -------------------------------------------------------------------- *
7 * File : register_functions.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Special functions for register extension *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Spezielle Funktion fuer register-Erweiterung *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
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 *
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. *
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. *
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, *
38 ************************************************************************/
40 // Some security stuff...
41 if (!defined('__SECURITY')) {
46 function ifRequiredRegisterFieldsAreSet (&$array) {
47 // By default all is fine
49 foreach ($array as $key => $value) {
50 // Check all fields that must register
51 $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_must_register` WHERE `field_name`='%s' AND `field_required`='Y' LIMIT 1",
52 array($key), __FUNCTION__, __LINE__);
55 if (SQL_NUMROWS($result) == 1) {
56 // Check if extension country is not found (you have to enter the 2-chars long country code) or
57 // if extensions is present check if country code was selected
58 // 01 2 21 12 3 32 234 5 54 4 43 34 4 4 5 5432 2 3 3210
59 $country = ((!isExtensionActive('country')) || ((isExtensionActive('country')) && (((empty($value)) && ($key == 'cntry')) || (($key == 'country_code') && (!empty($value)))) && (!empty($array['country_code']))));
60 if ((empty($value)) && ($country === false)) {
61 // Required field not set
68 SQL_FREERESULT($result);
75 // Generates a 'category table' for the registration form
76 function registerGenerateCategoryTable ($mode, $return=false) {
79 // Guests are mostly not interested in how many members has
80 // choosen an individual category
81 $AND = "WHERE `visible`='Y' ";
83 // Admins are allowed to see every category...
84 if (isAdmin()) $AND = '';
86 // Look for categories
87 $result = SQL_QUERY("SELECT `id`, `cat`, `visible` FROM `{?_MYSQL_PREFIX?}_cats` ".$AND." ORDER BY `sort` ASC",
88 __FUNCTION__, __LINE__);
90 if (SQL_NUMROWS($result) > 0) {
91 // List alle visible modules (or all to the admin)
93 $OUT .= '<table border="0" cellspacing="0" cellpadding="0" width="100%">';
94 while ($content = SQL_FETCHARRAY($result)) {
95 // Prepare array for the template
98 'cat' => $content['cat'],
101 'id' => $content['id'],
105 if ((postRequestParameter('cat', $content['id']) == 'Y') || ((getConfig('register_default') == 'Y') && (!isPostRequestParameterSet('cat', $content['id'])))) {
106 $content['def_y'] = ' checked="checked"';
108 $content['def_n'] = ' checked="checked"';
111 // Load template and switch color
112 $OUT .= loadTemplate('guest_cat_row', true, $content);
118 SQL_FREERESULT($result);
120 // No categories setted up so far...
121 $OUT .= loadTemplate('admin_settings_saved', true, getMessage('NO_CATEGORIES_VISIBLE'));
124 if ($return === true) {
125 // Return generated HTML code
128 // Output directly (default)
133 // Outputs a 'failed message'
134 function registerOutputFailedMessage ($messageId, $extra='') {
135 if (empty($messageId)) {
136 outputHtml('<div class="register_failed">' . $extra . '</div>');
138 outputHtml('<div class="register_failed">{--' . $messageId . '--}' . $extra . '</div>');
142 // Run a filter for must-fillout fields
143 function FILTER_REGISTER_MUST_FILLOUT ($content) {
144 // Get all fields for output
145 $result = SQL_QUERY("SELECT `field_name`, `field_required` FROM `{?_MYSQL_PREFIX?}_must_register` ORDER BY `id` ASC",
146 __FUNCTION__, __LINE__);
148 // Walk through all entries
149 while ($row = SQL_FETCHARRAY($result)) {
150 // Must the user fill out this element?
152 if ($row['field_required'] == 'Y') $value = '<span class="guest_failed">(*)</span>';
155 $content['must_fillout_'.strtolower($row['field_name']).''] = $value;
159 SQL_FREERESULT($result);
165 // Checks wether the registration data is complete
166 function isRegistrationDataComplete () {
168 $GLOBALS['registration_ip_timeout'] = false;
169 $GLOBALS['registration_short_password'] = false;
170 $GLOBALS['register_selected_cats'] = '0';
175 // First we only check the submitted data then we continue... :)
177 // Did he agree to our Terms Of Usage?
178 if (postRequestParameter('agree') != 'Y') {
179 setPostRequestParameter('agree', '!');
183 // Did he enter a valid email address? (we really don't care about
184 // that, he has to click on a confirmation link :P )
185 if ((!isPostRequestParameterSet('email')) || (!isEmailValid(postRequestParameter('email')))) {
186 setPostRequestParameter('email', '!');
190 // And what about surname and family's name?
191 if (!isPostRequestParameterSet('surname')) {
192 setPostRequestParameter('surname', '!');
195 if (!isPostRequestParameterSet('family')) {
196 setPostRequestParameter('family', '!');
200 // Get temporary array for modification
201 $postArray = postRequestArray();
203 // Check for required fields
204 $isOkay = ($isOkay && ifRequiredRegisterFieldsAreSet($postArray));
206 // Set it back in request
207 setPostRequestArray($postArray);
209 // Did he enter his password twice?
210 if (((!isPostRequestParameterSet('pass1')) || (!isPostRequestParameterSet('pass2'))) || ((postRequestParameter('pass1') != postRequestParameter('pass2')) && (isPostRequestParameterSet('pass1')) && (isPostRequestParameterSet('pass2')))) {
211 if ((postRequestParameter('pass1') != postRequestParameter('pass2')) && (isPostRequestParameterSet('pass1')) && (isPostRequestParameterSet('pass2'))) {
212 setPostRequestParameter('pass1', '!');
213 setPostRequestParameter('pass2', '!');
215 if (!isPostRequestParameterSet('pass1')) { setPostRequestParameter('pass1', '!'); } else { setPostRequestParameter('pass1', ''); }
216 if (!isPostRequestParameterSet('pass2')) { setPostRequestParameter('pass2', '!'); } else { setPostRequestParameter('pass2', ''); }
221 // Is the password long enouth?
222 if ((strlen(postRequestParameter('pass1')) < getConfig('pass_len')) && ($isOkay === true)) {
223 $GLOBALS['registration_short_password'] = true;
227 // Do this check only when no admin is logged in
228 if (is_array(postRequestParameter('cat'))) {
229 // Only continue with array
230 foreach (postRequestParameter('cat') as $id => $answer) {
231 // Is this category choosen?
232 if ($answer == 'Y') {
233 $GLOBALS['register_selected_cats']++;
238 // Enougth categories selected?
239 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'isOkay='.intval($isOkay).',selected='.$GLOBALS['register_selected_cats'].'/'.getConfig('least_cats'));
240 $isOkay = (($isOkay) && ($GLOBALS['register_selected_cats'] >= getConfig('least_cats')));
242 if ((postRequestParameter('email') != '!') && (getConfig('check_double_email') == 'Y')) {
243 // Does the email address already exists in our database?
244 if ((!isAdmin()) && (isEmailTaken(postRequestParameter('email')))) {
245 setPostRequestParameter('email', '?');
250 // Check for IP timeout?
251 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'isOkay='.intval($isOkay));
252 if ((!isAdmin()) && (getConfig('ip_timeout') > 0)) {
253 // Check his IP number
254 $GLOBALS['registration_ip_timeout'] = (countSumTotalData(detectRemoteAddr() , 'user_data', 'userid', 'REMOTE_ADDR', true, " AND ((UNIX_TIMESTAMP() - `joined`) < {?ip_timeout?} OR (UNIX_TIMESTAMP() - `last_update`) < {?ip_timeout?}) LIMIT 1") == 1);
255 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'isOkay='.intval($isOkay).',timeout='.intval($GLOBALS['registration_ip_timeout']));
256 $isOkay = (($isOkay) && (!$GLOBALS['registration_ip_timeout']));
260 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'isOkay='.intval($isOkay));
264 // Do the registration
265 function doRegistration () {
266 // Prepapre month and day of birth
267 if (strlen(postRequestParameter('day')) == 1) setPostRequestParameter('day' , '0' . postRequestParameter('day'));
268 if (strlen(postRequestParameter('month')) == 1) setPostRequestParameter('month', '0' . postRequestParameter('month'));
271 // ... confirmed, ...
272 $confirmedUsers = countSumTotalData('CONFIRMED' , 'user_data', 'userid', 'status', true);
273 // ... unconfirmed ...
274 $unconfirmedUsers = countSumTotalData('UNCONFIRMED', 'user_data', 'userid', 'status', true);
275 // ... and locked users!
276 $lockedUsers = countSumTotalData('LOCKED' , 'user_data', 'userid', 'status', true);
278 // Generate hash which will be inserted into confirmation mail
279 $hash = generateHash(sha1(
280 $confirmedUsers . getConfig('ENCRYPT_SEPERATOR') .
281 $unconfirmedUsers . getConfig('ENCRYPT_SEPERATOR') .
282 $lockedUsers . getConfig('ENCRYPT_SEPERATOR') .
283 postRequestParameter('month') . '-' .
284 postRequestParameter('day') . '-' .
285 postRequestParameter('year') . getConfig('ENCRYPT_SEPERATOR') .
286 detectServerName() . getConfig('ENCRYPT_SEPERATOR') .
287 detectRemoteAddr() . getConfig('ENCRYPT_SEPERATOR') .
288 detectUserAgent() . '/' .
289 getConfig('SITE_KEY') . '/' .
290 getConfig('DATE_KEY') . '/' .
291 getConfig('CACHE_BUSTER')
294 // Old way with enterable two-char-code
295 $countryRow = '`country`';
296 $countryData = substr(postRequestParameter('cntry'), 0, 2);
298 // Add design when extension sql_patches is v0.2.7 or greater
299 // @TODO Rewrite these all to a single filter
300 $GLOBALS['register_sql_columns'] = '';
301 $GLOBALS['register_sql_data'] = '';
302 if (isExtensionInstalledAndNewer('theme', '0.0.8')) {
303 // Okay, add design here
304 $GLOBALS['register_sql_columns'] = ', `curr_theme`';
305 $GLOBALS['register_sql_data'] = ", '" . getCurrentTheme() . "'";
308 // Check if I shall disable sending mail to newly registered members out about active/begging rallye
310 // First comes first: begging rallye
311 if (isExtensionInstalledAndNewer('beg', '0.2.8')) {
312 // Okay, shall I disable now?
313 if (getConfig('beg_new_member_notify') != 'Y') {
314 $GLOBALS['register_sql_columns'] .= ', `beg_rallye_notify`, `beg_rallye_enable_notify`';
315 $GLOBALS['register_sql_data'] .= ', UNIX_TIMESTAMP(), UNIX_TIMESTAMP()';
319 // Second: active rallye
320 if (isExtensionInstalledAndNewer('bonus', '0.9.2')) {
321 // Okay, shall I disable now?
322 if (getConfig('bonus_new_member_notify') != 'Y') {
323 $GLOBALS['register_sql_columns'] .= ', `bonus_rallye_notify`, `bonus_rallye_enable_notify`';
324 $GLOBALS['register_sql_data'] .= ', UNIX_TIMESTAMP(), UNIX_TIMESTAMP()';
328 // Write user data to table
329 if (isExtensionActive('country')) {
330 // Save with new selectable country code
331 $countryRow = '`country_code`';
332 $countryData = bigintval(postRequestParameter('country_code'));
335 //////////////////////////////
336 // Create user's account... //
337 //////////////////////////////
339 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_user_data` (gender, surname, family, street_nr,%s, zip, city, email, birth_day, birth_month, birth_year, password, max_mails, receive_mails, refid, status, user_hash, REMOTE_ADDR, joined, last_update".$GLOBALS['register_sql_columns'].")
340 VALUES ('%s','%s','%s','%s','%s',%s,'%s','%s',%s, %s,%s,'%s',%s, %s,'%s','UNCONFIRMED','%s','%s', UNIX_TIMESTAMP(), UNIX_TIMESTAMP()".$GLOBALS['register_sql_data'].")",
343 substr(postRequestParameter('gender'), 0, 1),
344 postRequestParameter('surname'),
345 postRequestParameter('family'),
346 postRequestParameter('street_nr'),
348 bigintval(postRequestParameter('zip')),
349 postRequestParameter('city'),
350 postRequestParameter('email'),
351 bigintval(postRequestParameter('day')),
352 bigintval(postRequestParameter('month')),
353 bigintval(postRequestParameter('year')),
354 generateHash(postRequestParameter('pass1')),
355 bigintval(postRequestParameter('max_mails')),
356 bigintval(postRequestParameter('max_mails')),
357 bigintval(postRequestParameter('refid')),
360 ), __FUNCTION__, __LINE__);
363 $userid = bigintval(SQL_INSERTID());
366 if ($userid == '0') {
367 // Something bad happened!
368 loadTemplate('admin_settings_saved', false, getMessage('USER_NOT_REGISTERED'));
374 // Is the refback extension there?
375 // @TODO Rewrite this to a filter
376 if (isExtensionActive('refback')) {
377 // Update refback table
378 updateRefbackTable($userid);
381 // Write his welcome-points
382 // @TODO Rewrite this whole if() block to addPointsThroughReferalSystem(). This will also make following if() block obsolete
383 // @TODO Wether the registration bonus should only be added to user directly or through referal system should be configurable
384 $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_user_points` WHERE `userid`=%s AND `ref_depth`=0 LIMIT 1",
385 array($userid), __FUNCTION__, __LINE__);
386 if (SQL_HASZERONUMS($result)) {
387 // Add only when the line was not found (maybe some more secure?)
390 // Pay him later. First he has to confirm some mails!
391 if (getConfig('ref_payout') > 0) $locked = 'locked_points';
393 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_user_points` (`userid`, `ref_depth`, `%s`) VALUES (%s,0,'{?points_register?}')",
394 array($locked, $userid), __FUNCTION__, __LINE__);
396 // Update mediadata as well
397 if ((isExtensionInstalledAndNewer('mediadata', '0.0.4')) && ($locked == 'points')) {
399 updateMediadataEntry(array('total_points'), 'add', getConfig('points_register'));
404 if ((is_array(postRequestParameter('cat'))) && (count(postRequestParameter('cat')))) {
405 foreach (postRequestParameter('cat') as $cat => $joined) {
406 if ($joined == 'Y') {
407 // Insert category entry
408 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_user_cats` (`userid`, `cat_id`) VALUES (%s, %s)",
409 array($userid, bigintval($cat)), __FUNCTION__, __LINE__);
414 // ... rewrite a zero referal id to the main title
415 if (postRequestParameter('refid') == '0') setPostRequestParameter('refid', getConfig('MAIN_TITLE'));
418 if (isPostRequestParameterSet('zip')) {
419 // Prepare data array for the email template
420 // Start with the gender...
424 'gender' => translateGender(postRequestParameter('gender')),
425 'surname' => SQL_ESCAPE(postRequestParameter('surname')),
426 'family' => SQL_ESCAPE(postRequestParameter('family')),
427 'email' => SQL_ESCAPE(postRequestParameter('email')),
428 'street' => SQL_ESCAPE(postRequestParameter('street_nr')),
429 'city' => SQL_ESCAPE(postRequestParameter('city')),
430 'zip' => bigintval(postRequestParameter('zip')),
431 'country' => $countryData,
432 'refid' => SQL_ESCAPE(postRequestParameter('refid')),
433 'pass' => SQL_ESCAPE(postRequestParameter('pass1')),
436 // No ZIP code entered
440 'gender' => translateGender(postRequestParameter('gender')),
441 'surname' => SQL_ESCAPE(postRequestParameter('surname')),
442 'family' => SQL_ESCAPE(postRequestParameter('family')),
443 'email' => SQL_ESCAPE(postRequestParameter('email')),
444 'street' => SQL_ESCAPE(postRequestParameter('street_nr')),
445 'city' => SQL_ESCAPE(postRequestParameter('city')),
447 'country' => $countryData,
448 'refid' => SQL_ESCAPE(postRequestParameter('refid')),
449 'pass' => SQL_ESCAPE(postRequestParameter('pass1')),
453 // Continue with birthday...
454 switch (getLanguage()) {
456 $content['birthday'] = bigintval(postRequestParameter('day')) . '.' . bigintval(postRequestParameter('month')) . '.' . bigintval(postRequestParameter('year'));
460 $content['birthday'] = bigintval(postRequestParameter('month')) . '/' . bigintval(postRequestParameter('day')) . '/' . bigintval(postRequestParameter('year'));
464 // Display information to the user that he got mail and send it away
465 $messageGuest = loadEmailTemplate('register-member', $content, $userid);
467 // Send mail to user (confirmation link!)
468 $email = $content['email'];
469 sendEmail($content['email'], getMessage('GUEST_SUBJECT_CONFIRM_LINK'), $messageGuest);
470 $content['email'] = $email;
472 // Send mail to admin
473 sendAdminNotification(getMessage('ADMIN_SUBJECT_NEW_ACCOUNT'), 'register-admin', $content, $userid);