101 lines
3.4 KiB
PHP
101 lines
3.4 KiB
PHP
<?php
|
|
namespace Misuzu;
|
|
|
|
use Misuzu\Users\User;
|
|
use Misuzu\Users\UserCreationFailedException;
|
|
use Misuzu\Users\UserLoginAttempt;
|
|
use Misuzu\Users\UserRole;
|
|
use Misuzu\Users\UserSession;
|
|
use Misuzu\Users\UserWarning;
|
|
|
|
require_once '../../misuzu.php';
|
|
|
|
if(UserSession::hasCurrent()) {
|
|
url_redirect('index');
|
|
return;
|
|
}
|
|
|
|
$register = !empty($_POST['register']) && is_array($_POST['register']) ? $_POST['register'] : [];
|
|
$notices = [];
|
|
$ipAddress = $_SERVER['REMOTE_ADDR'];
|
|
$countryCode = $_SERVER['COUNTRY_CODE'] ?? 'XX';
|
|
$remainingAttempts = UserLoginAttempt::remaining($_SERVER['REMOTE_ADDR']);
|
|
$restricted = UserWarning::countByRemoteAddress($ipAddress) > 0 ? 'ban' : '';
|
|
|
|
while(!$restricted && !empty($register)) {
|
|
if(!CSRF::validateRequest()) {
|
|
$notices[] = 'Was unable to verify the request, please try again!';
|
|
break;
|
|
}
|
|
|
|
if($remainingAttempts < 1) {
|
|
$notices[] = "There are too many failed login attempts from your IP address, you may not create an account right now.";
|
|
break;
|
|
}
|
|
|
|
if(empty($register['username']) || empty($register['password']) || empty($register['email']) || empty($register['question'])
|
|
|| !is_string($register['username']) || !is_string($register['password']) || !is_string($register['email']) || !is_string($register['question'])) {
|
|
$notices[] = "You haven't filled in all fields.";
|
|
break;
|
|
}
|
|
|
|
$checkSpamBot = mb_strtolower($register['question']);
|
|
$spamBotValid = [
|
|
'21', 'twentyone', 'twenty-one', 'twenty one',
|
|
];
|
|
$spamBotHint = [
|
|
'19', 'nineteen', 'nine-teen', 'nine teen',
|
|
];
|
|
|
|
if(!in_array($checkSpamBot, $spamBotValid)) {
|
|
if(in_array($checkSpamBot, $spamBotHint))
|
|
$notices[] = '_play_hint';
|
|
|
|
$notices[] = 'Human only cool club, robots begone.';
|
|
break;
|
|
}
|
|
|
|
$usernameValidation = User::validateUsername($register['username']);
|
|
if($usernameValidation !== '')
|
|
$notices[] = User::usernameValidationErrorString($usernameValidation);
|
|
|
|
$emailValidation = User::validateEMailAddress($register['email']);
|
|
if($emailValidation !== '')
|
|
$notices[] = $emailValidation === 'in-use'
|
|
? 'This e-mail address has already been used!'
|
|
: 'The e-mail address you entered is invalid!';
|
|
|
|
if($register['password_confirm'] !== $register['password'])
|
|
$notices[] = 'The given passwords don\'t match.';
|
|
|
|
if(User::validatePassword($register['password']) !== '')
|
|
$notices[] = 'Your password is too weak!';
|
|
|
|
if(!empty($notices))
|
|
break;
|
|
|
|
try {
|
|
$createUser = User::create(
|
|
$register['username'],
|
|
$register['password'],
|
|
$register['email'],
|
|
$ipAddress,
|
|
$countryCode
|
|
);
|
|
} catch(UserCreationFailedException $ex) {
|
|
$notices[] = 'Something went wrong while creating your account, please alert an administrator or a developer about this!';
|
|
break;
|
|
}
|
|
|
|
$createUser->addRole(UserRole::byDefault());
|
|
|
|
url_redirect('auth-login-welcome', ['username' => $createUser->getUsername()]);
|
|
return;
|
|
}
|
|
|
|
Template::render('auth.register', [
|
|
'register_notices' => $notices,
|
|
'register_username' => !empty($register['username']) && is_string($register['username']) ? $register['username'] : '',
|
|
'register_email' => !empty($register['email']) && is_string($register['email']) ? $register['email'] : '',
|
|
'register_restricted' => $restricted,
|
|
]);
|