Project

General

Profile

1 1473 Luisehahne
<?php
2
/**
3
 *
4
 * @category        frontend
5
 * @package         account
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
8
 * @copyright       2009-2011, Website Baker Org. e.V.
9
 * @link			http://www.websitebaker2.org/
10
 * @license         http://www.gnu.org/licenses/gpl.html
11
 * @platform        WebsiteBaker 2.8.x
12
 * @requirements    PHP 5.2.2 and higher
13
 * @version         $Id$
14
 * @filesource		$HeadURL$
15
 * @lastmodified    $Date$
16
 *
17
 */
18
19
// Must include code to stop this file being access directly
20
if(defined('WB_PATH') == false) { die("Cannot access this file directly"); }
21
22 1508 Luisehahne
// require_once(WB_PATH.'/framework/class.wb.php');
23 1473 Luisehahne
$wb = new wb('Start', 'start', false, false);
24
25
// Get details entered
26
$groups_id = FRONTEND_SIGNUP;
27
$active = 1;
28
$username = strtolower(strip_tags($wb->get_post_escaped('username')));
29
$display_name = strip_tags($wb->get_post_escaped('display_name'));
30
$email = $wb->get_post('email');
31
32
// Create a javascript back link
33
$js_back = WB_URL.'/account/signup.php';
34
/*
35
if (!$wb->checkFTAN())
36
{
37
	$wb->print_error($MESSAGE['GENERIC_SECURITY_ACCESS'], $js_back, false);
38
	exit();
39
}
40
*/
41
// Check values
42
if($groups_id == "") {
43 1634 Luisehahne
	$wb->print_error($MESSAGE['USERS_NO_GROUP'], $js_back, false);
44 1473 Luisehahne
}
45 1635 Luisehahne
if(!preg_match('/^[a-z]{1}[a-z0-9_-]{2,}$/i', $username)) {
46 1473 Luisehahne
	$wb->print_error( $MESSAGE['USERS_NAME_INVALID_CHARS'].' / '.
47
	                  $MESSAGE['USERS_USERNAME_TOO_SHORT'], $js_back);
48
}
49
if($email != "") {
50
	if($wb->validate_email($email) == false) {
51 1634 Luisehahne
		$wb->print_error($MESSAGE['USERS_INVALID_EMAIL'], $js_back, false);
52 1473 Luisehahne
	}
53
} else {
54 1634 Luisehahne
	$wb->print_error($MESSAGE['SIGNUP_NO_EMAIL'], $js_back, false);
55 1473 Luisehahne
}
56
57
$email = $wb->add_slashes($email);
58 1634 Luisehahne
$search = array('{SERVER_EMAIL}');
59
$replace = array( SERVER_EMAIL);
60 1473 Luisehahne
// Captcha
61
if(ENABLED_CAPTCHA) {
62 1634 Luisehahne
	$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = str_replace($search,$replace,$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA']);
63 1473 Luisehahne
	if(isset($_POST['captcha']) AND $_POST['captcha'] != ''){
64
		// Check for a mismatch
65
		if(!isset($_POST['captcha']) OR !isset($_SESSION['captcha']) OR $_POST['captcha'] != $_SESSION['captcha']) {
66 1634 Luisehahne
			$wb->print_error($MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'], $js_back, false);
67 1473 Luisehahne
		}
68
	} else {
69 1634 Luisehahne
		$wb->print_error($MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'], $js_back, false);
70 1473 Luisehahne
	}
71
}
72
if(isset($_SESSION['captcha'])) { unset($_SESSION['captcha']); }
73
74
// Generate a random password then update the database with it
75
$new_pass = '';
76
$salt = "abchefghjkmnpqrstuvwxyz0123456789";
77
srand((double)microtime()*1000000);
78
$i = 0;
79
while ($i <= 7) {
80
	$num = rand() % 33;
81
	$tmp = substr($salt, $num, 1);
82
	$new_pass = $new_pass . $tmp;
83
	$i++;
84
}
85
$md5_password = md5($new_pass);
86
87
// Check if username already exists
88
$results = $database->query("SELECT user_id FROM ".TABLE_PREFIX."users WHERE username = '$username'");
89
if($results->numRows() > 0) {
90 1634 Luisehahne
	$wb->print_error($MESSAGE['USERS_USERNAME_TAKEN'], $js_back, false);
91 1473 Luisehahne
}
92
93
// Check if the email already exists
94
$results = $database->query("SELECT user_id FROM ".TABLE_PREFIX."users WHERE email = '".$wb->add_slashes($email)."'");
95
if($results->numRows() > 0) {
96 1634 Luisehahne
	if(isset($MESSAGE['USERS_EMAIL_TAKEN'])) {
97
		$wb->print_error($MESSAGE['USERS_EMAIL_TAKEN'], $js_back, false);
98 1473 Luisehahne
	} else {
99 1634 Luisehahne
		$wb->print_error($MESSAGE['USERS_INVALID_EMAIL'], $js_back, false);
100 1473 Luisehahne
	}
101
}
102
103
// MD5 supplied password
104
$md5_password = md5($new_pass);
105
106
// Inser the user into the database
107
$query = "INSERT INTO ".TABLE_PREFIX."users (group_id,groups_id,active,username,password,display_name,email) VALUES ('$groups_id', '$groups_id', '$active', '$username','$md5_password','$display_name','$email')";
108
$database->query($query);
109
110
if($database->is_error()) {
111
	// Error updating database
112
	$message = $database->get_error();
113
} else {
114
	// Setup email to send
115
	$mail_to = $email;
116 1635 Luisehahne
	$mail_subject = $MESSAGE['SIGNUP2_SUBJECT_LOGIN_INFO'];
117 1473 Luisehahne
118
	// Replace placeholders from language variable with values
119
	$search = array('{LOGIN_DISPLAY_NAME}', '{LOGIN_WEBSITE_TITLE}', '{LOGIN_NAME}', '{LOGIN_PASSWORD}');
120
	$replace = array($display_name, WEBSITE_TITLE, $username, $new_pass);
121 1634 Luisehahne
	$mail_message = str_replace($search, $replace, $MESSAGE['SIGNUP2_BODY_LOGIN_INFO']);
122 1473 Luisehahne
123
	// Try sending the email
124 1599 Luisehahne
	if($wb->mail(SERVER_EMAIL,$mail_to,$mail_subject,$mail_message)) {
125 1473 Luisehahne
		$display_form = false;
126 1634 Luisehahne
		$wb->print_success($MESSAGE['FORGOT_PASS_PASSWORD_RESET'], WB_URL.'/account/login.php' );
127 1473 Luisehahne
	} else {
128
		$database->query("DELETE FROM ".TABLE_PREFIX."users WHERE username = '$username'");
129 1634 Luisehahne
		$wb->print_error($MESSAGE['FORGOT_PASS_CANNOT_EMAIL'], $js_back, false);
130 1473 Luisehahne
	}
131
}