Lock reason now saved in DB, deleted accounts shall be locked for re-registering...
[mailer.git] / inc / modules / guest / what-register.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 10/10/2003 *
4  * ===============                              Last change: 11/26/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-register.php                                *
8  * -------------------------------------------------------------------- *
9  * Short description : Registration form                                *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Anmeldeformular                                  *
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 // Some security stuff...
35 if (!defined('__SECURITY')) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 } elseif ((!EXT_IS_ACTIVE("register"))) {
39         if (IS_ADMIN()) {
40                 ADD_FATAL(sprintf(EXTENSION_PROBLEM_NOT_INSTALLED, "register"));
41         } else {
42                 ADD_FATAL(EXTENSION_PROBLEM_EXT_INACTIVE, "register");
43         }
44         return;
45 }
46
47 // Add description as navigation point
48 ADD_DESCR("guest", __FILE__);
49
50 global $_CONFIG, $DATA;
51
52 // Initialize variables
53 $FAILED = false; $SHORT_PASS = false; $cats = 0; $IP_TIMEOUT = false;
54 if (!isset($_POST['ok']))          unset($_POST['ok']);
55 if (empty($_POST['agree']))        $_POST['agree']        = "";
56 if (empty($_POST['addy']))         $_POST['addy']         = "";
57 if (empty($_POST['surname']))      $_POST['surname']      = "";
58 if (empty($_POST['family_name']))  $_POST['family_name']  = "";
59 if (empty($_POST['pass1']))        $_POST['pass1']        = "";
60 if (empty($_POST['pass2']))        $_POST['pass2']        = "";
61 if (empty($_POST['day']))          $_POST['day']          = "";
62 if (empty($_POST['month']))        $_POST['month']        = "";
63 if (empty($_POST['year']))         $_POST['year']         = "";
64 if (empty($_POST['max_mails']))    $_POST['max_mails']    = "";
65 if (empty($_POST['street_nr']))    $_POST['street_nr']    = "";
66 if (empty($_POST['zip']))          $_POST['zip']          = "";
67 if (empty($_POST['city']))         $_POST['city']         = "";
68 if (empty($_POST['cntry']))        $_POST['cntry']        = "";
69 if (empty($_POST['country_code'])) $_POST['country_code'] = "1";
70
71 // Default refid is zero
72 $_POST['refid'] = 0;
73 if ($GLOBALS['refid'] > 0) {
74         // Test if the refid is valid
75         $result = SQL_QUERY_ESC("SELECT userid FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
76                 array(bigintval($GLOBALS['refid'])), __FILE__, __LINE__);
77
78         // Userid found?
79         //* DEBUG: */ die("refid={$GLOBALS['refid']}/numRows=".SQL_NUMROWS($result)."");
80         if (SQL_NUMROWS($result) == 0) {
81                 // Not found so we set your refid!
82                 $_POST['refid'] = $_CONFIG['def_refid'];
83                 set_session('refid', $_CONFIG['def_refid']);
84         } else {
85                 // Use the refid here
86                 $_POST['refid'] = $GLOBALS['refid'];
87         }
88 } // END - if
89
90 if (isset($_POST['ok'])) {
91         // First we only check the submitted data then we continue... :)
92         //
93         // Did he agree to our Terms Of Usage?
94         if ($_POST['agree'] != "Y") {
95                 $_POST['agree'] = "!";
96                 $FAILED = true;
97         }
98
99         // Did he enter a valid email address? (we really don't care about
100         // that, he has to click on a confirmation link :P )
101         if ((empty($_POST['addy'])) || (!VALIDATE_EMAIL($_POST['addy']))) {
102                 $_POST['addy'] = "!";
103                 $FAILED = true;
104         }
105
106         // And what about surname and family's name?
107         if (empty($_POST['surname'])) {
108                 $_POST['surname'] = "!";
109                 $FAILED = true;
110         }
111         if (empty($_POST['family_name'])) {
112                 $_POST['family_name'] = "!";
113                 $FAILED = true;
114         }
115
116         // Check for required fields
117         if (!$FAILED) $FAILED = REGISTER_CHECK_REQUIRED_FIELDS($_POST);
118
119         // Did he enter his password twice?
120         if (((empty($_POST['pass1'])) || (empty($_POST['pass2']))) || (($_POST['pass1'] != $_POST['pass2']) && (!empty($_POST['pass1'])) && (!empty($_POST['pass2']))))
121         {
122                 if (($_POST['pass1'] != $_POST['pass2']) && (!empty($_POST['pass1'])) && (!empty($_POST['pass2'])))
123                 {
124                         $_POST['pass1'] = "!";
125                         $_POST['pass2'] = "!";
126                 }
127                  else
128                 {
129                         if (empty($_POST['pass1'])) { $_POST['pass1'] = "!"; } else { $_POST['pass1'] = ""; }
130                         if (empty($_POST['pass2'])) { $_POST['pass2'] = "!"; } else { $_POST['pass2'] = ""; }
131                 }
132                 $FAILED = true;
133         }
134         // Is the password long enouth?
135         if ((strlen($_POST['pass1']) < $_CONFIG['pass_len']) && (!$FAILED) && (!IS_ADMIN()))
136         {
137                 $SHORT_PASS = true;
138                 $FAILED = true;
139         }
140         // Did he select enougth categories?
141         if (!IS_ADMIN())
142         {
143                 // Do this check only when no admin is logged in
144                 foreach ($_POST['cat'] as $id => $answer)
145                 {
146                         if ($answer == "Y") $cats++;
147                 }
148                 if ($cats < $_CONFIG['least_cats'])
149                 {
150                         // ... nope!
151                         $FAILED = true;
152                 }
153         }
154         if (($_POST['addy'] != "!") && ($_CONFIG['check_double_email'] == "Y") && (!IS_ADMIN()))
155         {
156                 // Does the email address already exists in our database?
157                 $CHK = SEARCH_EMAIL_USERTAB($_POST['addy']);
158                 if ($CHK) { $_POST['addy'] = "?"; $FAILED = true; }
159         }
160
161         // Check his IP number
162         $result = SQL_QUERY_ESC("SELECT joined, last_update FROM "._MYSQL_PREFIX."_user_data WHERE REMOTE_ADDR='%s' AND (joined > (UNIX_TIMESTAMP() - %s) OR last_update > (UNIX_TIMESTAMP() - %s)) LIMIT 1",
163          array(GET_REMOTE_ADDR(), $_CONFIG['ip_timeout'], $_CONFIG['ip_timeout']), __FILE__, __LINE__);
164         if ((SQL_NUMROWS($result) == 1) && (!IS_ADMIN()))
165         {
166                 // Same IP in timeout range and different email address entered... Eat this, faker! ;-)
167                 // But admins are allowed to fake their own exchange service.
168                 $IP_TIMEOUT = true;
169                 $FAILED = true;
170         }
171
172         // Free memory
173         SQL_FREERESULT($result);
174 }
175
176 if ((isset($_POST['ok'])) && (!$FAILED)) {
177         // Prepapre month and day of birth
178         if (strlen($_POST['day'])   == 1) $_POST['day']   = "0".$_POST['day'];
179         if (strlen($_POST['month']) == 1) $_POST['month'] = "0".$_POST['month'];
180
181         // Get total ...
182         // ... confirmed, ...
183         $confirmedUsers   = GET_TOTAL_DATA("CONFIRMED", "user_data", "userid", "status", true);
184         // ... unconfirmed ...
185         $unconfirmedUsers = GET_TOTAL_DATA("UNCONFIRMED", "user_data", "userid", "status", true);
186         // ... and locked users!
187         $lockedUsers      = GET_TOTAL_DATA("LOCKED", "user_data", "userid", "status", true);
188
189         // Generate hash which will be inserted into confirmation mail
190         $hash = generateHash(sha1($confirmedUsers.":".$unconfirmedUsers.":".$lockedUsers.":".$_POST['month']."-".$_POST['day']."-".$_POST['year'].":".getenv('SERVER_NAME').":".GET_REMOTE_ADDR().":".GET_USER_AGENT()."/".SITE_KEY."/".DATE_KEY."/".RAND_NUMBER));
191
192         // Add design when extension sql_patches is v0.2.7 or greater
193         $ADD1 = ""; $ADD2 = "";
194         if (GET_EXT_VERSION("sql_patches") >= "0.2.7") {
195                 // Okay, add design here
196                 $ADD1 = ", curr_theme";
197                 $ADD2 = ", '".GET_CURR_THEME()."'";
198         } // END - if
199
200         // Check if I shall disable sending mail to newly registered members out about active/begging rallye
201         //
202         // First comes first: begging rallye
203         if (GET_EXT_VERSION("beg") >= "0.1.7") {
204                 // Okay, shall I disable now?
205                 if ($_CONFIG['beg_new_mem_notify'] == "N") {
206                         $ADD1 .= ", beg_ral_notify, beg_ral_en_notify";
207                         $ADD2 .= ", UNIX_TIMESTAMP(), UNIX_TIMESTAMP()";
208                 } // END - if
209         } // END - if
210
211         // Second: active rallye
212         if (GET_EXT_VERSION("bonus") >= "0.7.7") {
213                 // Okay, shall I disable now?
214                 if ($_CONFIG['bonus_new_mem_notify'] == "N") {
215                         $ADD1 .= ", bonus_ral_notify, bonus_ral_en_notify";
216                         $ADD2 .= ", UNIX_TIMESTAMP(), UNIX_TIMESTAMP()";
217                 } // END - if
218         } // END - if
219
220         // Write user data to table
221         if (EXT_IS_ACTIVE("country")) {
222                 // Save with new selectable country code
223                 $countryRow = "country_code";
224                 $countryData = bigintval($_POST['country_code']);
225         } else {
226                 // Old way with enterable two-char-code
227                 $countryRow = "country";
228                 $countryData = substr($_POST['cntry'], 0, 2);
229         }
230
231         //////////////////////////////
232         // Create user's account... //
233         //////////////////////////////
234         //
235         $result = 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".$ADD1.")
236 VALUES ('%s','%s','%s','%s','%s',%s,'%s','%s',%s, %s,%s,'%s',%s, %s,'%s','UNCONFIRMED','%s','%s', UNIX_TIMESTAMP(), UNIX_TIMESTAMP()".$ADD2.")",
237         array(
238                 $countryRow,
239                 substr($_POST['gender'], 0, 1),
240                 $_POST['surname'],
241                 $_POST['family_name'],
242                 $_POST['street_nr'],
243                 $countryData,
244                 bigintval($_POST['zip']),
245                 $_POST['city'],
246                 $_POST['addy'],
247                 bigintval($_POST['day']),
248                 bigintval($_POST['month']),
249                 bigintval($_POST['year']),
250                 generateHash($_POST['pass1']),
251                 bigintval($_POST['max_mails']),
252                 bigintval($_POST['max_mails']),
253                 bigintval($_POST['refid']),
254                 $hash,
255                 GET_REMOTE_ADDR(),
256         ), __FILE__, __LINE__);
257
258         // Get his userid
259         $userid = SQL_INSERTID();
260
261         // Did this work?
262         if ($userid == 0) {
263                 // Something bad happened!
264                 LOAD_TEMPLATE("admin_settings_saved", false, USER_NOT_REGISTERED);
265                 return;
266         } // END - if
267
268         // Is the refback extension there?
269         if (EXT_IS_ACTIVE("refback")) {
270                 // Update refback table
271                 UPDATE_REFBACK_TABLE($userid);
272         } // END - if
273
274         // Write his welcome-points
275         $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_user_points WHERE userid=%s AND ref_depth=0 LIMIT 1",
276          array(bigintval($userid)), __FILE__, __LINE__);
277         if (SQL_NUMROWS($result) == 0) {
278                 // Add only when the line was not found (maybe some more secure?)
279                 $locked = "points";
280                 if ($_CONFIG['ref_payout'] > 0) $locked = "locked_points"; // Pay him later. First he has to confirm some mails!
281                 $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_user_points (userid, ref_depth, ".$locked.") VALUES (%s,0,'%s')",
282                  array(bigintval($userid), $_CONFIG['points_register']), __FILE__, __LINE__);
283
284                 // Update mediadata as well
285                 if ((GET_EXT_VERSION("mediadata") >= "0.0.4") && ($locked == "points")) {
286                         // Update database
287                         MEDIA_UPDATE_ENTRY(array("total_points"), "add", $_CONFIG['points_register']);
288                 } // END - if
289         } // END - if
290
291         // Write catgories
292         if ((is_array($_POST['cat'])) && (count($_POST['cat']))) {
293                 foreach ($_POST['cat'] as $cat => $joined) {
294                         if ($joined == "Y") {
295                                 // Insert category entry
296                                 $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_user_cats (userid, cat_id) VALUES (%s, %s)",
297                                  array(bigintval($userid), bigintval($cat)), __FILE__, __LINE__);
298                         } // END - if
299                 } // END - foreach
300         } // END - if
301
302         // Rewrite gender
303         $gender = TRANSLATE_GENDER($_POST['gender']);
304
305         // ... rewrite a zero referal ID to the main title
306         if ($_POST['refid'] == "0") $_POST['refid'] = MAIN_TITLE;
307
308         // Prepare data array for the email template
309         // Start with the gender...
310         $DATA = array(
311                 'hash'    => $hash,
312                 'uid'     => $userid,
313                 'gender'  => $gender,
314                 'surname' => SQL_ESCAPE($_POST['surname']),
315                 'family'  => SQL_ESCAPE($_POST['family_name']),
316                 'email'   => SQL_ESCAPE($_POST['addy']),
317                 'street'  => SQL_ESCAPE($_POST['street_nr']),
318                 'city'    => SQL_ESCAPE($_POST['city']),
319                 'zip'     => bigintval($_POST['zip']),
320                 'country' => $countryData,
321                 'refid'   => SQL_ESCAPE($_POST['refid']),
322                 'pass'    => SQL_ESCAPE($_POST['pass1']),
323         );
324
325         // Continue with birthday...
326         switch (GET_LANGUAGE())
327         {
328         case "de":
329                 $DATA['birthday'] = bigintval($_POST['day']).".".bigintval($_POST['month']).".".bigintval($_POST['year']);
330                 break;
331
332         default:
333                 $DATA['birthday'] = bigintval($_POST['month'])."/".bigintval($_POST['day'])."/".bigintval($_POST['year']);
334                 break;
335         }
336
337         // Display information to the user that he got mail and send it away
338         $msg_guest = LOAD_EMAIL_TEMPLATE("register-member", $DATA, $userid);
339
340         // Send mail to user (confirmation link!)
341         $EMAIL = $DATA['email'];
342         SEND_EMAIL ($DATA['email'], GUEST_CONFIRM_LINK, $msg_guest);
343         $DATA['email'] = $EMAIL;
344
345         // Send mail to admin
346         SEND_ADMIN_NOTIFICATION(ADMIN_NEW_ACCOUNT, "register-admin", $DATA, $userid);
347
348         // Output success registration
349         LOAD_TEMPLATE("admin_settings_saved", false, REGISTRATION_DONE);
350 } else {
351         if ($_POST['agree'] == "!") {
352                 OUTPUT_HTML("<STRONG><SPAN class=\"register_failed\">".HAVE_TO_AGREE."</SPAN></STRONG><br /><br />");
353         } // END - if
354
355         if ($_POST['addy'] == "!") {
356                 OUTPUT_HTML("<STRONG><SPAN class=\"register_failed\">".ENTER_EMAIL."</SPAN></STRONG><br /><br />");
357                 $_POST['addy'] = "";
358         } elseif ($_POST['addy'] == "?") {
359                 OUTPUT_HTML("<STRONG><SPAN class=\"register_failed\">".EMAIL_ALREADY_DB."</SPAN></STRONG><br /><br />");
360                 $_POST['addy'] = "";
361         }
362
363         if ($_POST['surname'] == "!") {
364                 OUTPUT_HTML("<STRONG><SPAN class=\"register_failed\">".ENTER_SURNAME."</SPAN></STRONG><br /><br />");
365                 $_POST['surname'] = "";
366         } // END - if
367
368         if ($_POST['family_name'] == "!") {
369                 OUTPUT_HTML("<STRONG><SPAN class=\"register_failed\">".ENTER_FAMILY."</SPAN></STRONG><br /><br />");
370                 $_POST['family_name'] = "";
371         } // END - if
372
373         if (($_POST['pass1'] == "!") && ($_POST['pass2'] == "!")) {
374                 OUTPUT_HTML("<STRONG><SPAN class=\"register_failed\">".ENTER_BOTH_PASSWORDS."</SPAN></STRONG><br /><br />");
375         } elseif ($_POST['pass1'] == "!") {
376                 OUTPUT_HTML("<STRONG><SPAN class=\"register_failed\">".ENTER_PASS1."</SPAN></STRONG><br /><br />");
377         } elseif ($_POST['pass2'] == "!") {
378                 OUTPUT_HTML("<STRONG><SPAN class=\"register_failed\">".ENTER_PASS2."</SPAN></STRONG><br /><br />");
379         }
380
381         if ($SHORT_PASS) {
382                 OUTPUT_HTML("<STRONG><SPAN class=\"register_failed\">".SHORT_PASS.": ".$_CONFIG['pass_len']."</SPAN></STRONG><br /><br />");
383         } // END - if
384
385         if ($IP_TIMEOUT) {
386                 OUTPUT_HTML("<STRONG><SPAN class=\"register_failed\">".REMOTE_ADDR_TIMEOUT."</SPAN></STRONG><br /><br />");
387         } // END - if
388
389         if ((!empty($cats)) && ($cats < $_CONFIG['least_cats'])) {
390                 OUTPUT_HTML("<STRONG><SPAN class=\"register_failed\">".CATS_LEAST.": ".$_CONFIG['least_cats']."</SPAN></STRONG><br /><br />");
391         } // END - if
392
393         // Generate birthday selection
394         switch (GET_LANGUAGE())
395         {
396         case "de": // German date format
397                 define('BIRTHDAY_SELECTION', ADD_SELECTION("day", $_POST['day']).ADD_SELECTION("month", $_POST['month']).ADD_SELECTION("year", $_POST['year']));
398                 break;
399
400         default: // Default is the US date format... :)
401                 break;
402         }
403
404         // Adds a table for the guests with all visible categories
405         define('CATEGORY_SELECTION', REGISTER_ADD_CATEGORY_TABLE("guest", true));
406
407         // Adds maximum receiveable mails list... :)
408         define('MAX_RECEIVE_LIST', ADD_MAX_RECEIVE_LIST("guest", "", true));
409
410         // Shall I display the refid or shall I make it editable?
411         if ($_CONFIG['display_refid'] == "Y") {
412                 // Load "hide" form template
413                 define('REFID_CONTENT', LOAD_TEMPLATE("guest_register_refid_hide", true, $GLOBALS['refid']));
414         } else {
415                 // Load template to enter it
416                 define('REFID_CONTENT', LOAD_TEMPLATE("guest_register_refid", true, $GLOBALS['refid']));
417         }
418
419         // You may want to modify the register_header.tpl.xx file and not this script when you add your scripts etc. :-)
420         define('REGISTER_HEADER_CONTENT', LOAD_TEMPLATE("register_header", true));
421
422         // Please select at least x categories
423         define('LEAST_CATS_VALUE', $_CONFIG['least_cats']);
424
425         // Other values
426         define('__SURNAME', SQL_ESCAPE($_POST['surname']));
427         define('__FAMILY',  SQL_ESCAPE($_POST['family_name']));
428         define('__STREET',  SQL_ESCAPE($_POST['street_nr']));
429         define('__COUNTRY', SQL_ESCAPE($_POST['cntry']));
430         define('__ZIP',     bigintval($_POST['zip']));
431         define('__CITY',    SQL_ESCAPE($_POST['city']));
432         define('__ADDY',    SQL_ESCAPE($_POST['addy']));
433
434         // Shall I add a counrty selection box or the old input box?
435         if (EXT_IS_ACTIVE("country")) {
436                 // New variant, good!
437                 $OUT  = "<SELECT name=\"country_code\" class=\"guest_select\" size=\"1\">\n";
438                 $whereStatement = "WHERE is_active='Y'";
439                 if (IS_ADMIN()) $whereStatement = "";
440                 $OUT .= ADD_OPTION_LINES("countries", "id", "descr", $_POST['country_code'], "code", $whereStatement);
441                 $OUT .= "</SELECT>";
442                 define('__COUNTRY_CONTENT', $OUT);
443         } else {
444                 // Old out-dated variant
445                 define('__COUNTRY_CONTENT', "<INPUT type=\"text\" name=\"cntry\" class=\"guest_normal\" size=\"2\" maxlength=\"3\" value=\"".__COUNTRY."\">");
446         }
447
448         // Set MUST_??? constants
449         if ((EXT_IS_ACTIVE("register")) && (GET_EXT_VERSION("register") > "0.0")) REGISTER_FILL_MUST_CONSTANTS();
450
451         // Display registration form
452         LOAD_TEMPLATE("guest_register");
453 }
454
455 //
456 ?>