* @author Slawkens * @copyright 2017 MyAAC * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Create Account'; if($config['account_country']) require(SYSTEM . 'countries.conf.php'); if($logged) { echo 'Please logout before attempting to create a new account.'; return; } $errors = array(); $save = isset($_POST['save']) && $_POST['save'] == 1; if($save) { if(USE_ACCOUNT_NAME) { $account_name = $_POST['account']; } else $account_id = $_POST['account']; $email = $_POST['email']; $password = $_POST['password']; $password2 = $_POST['password2']; // account if(isset($account_id)) { if(!Validator::accountId($account_id)) $errors['account'] = Validator::getLastError(); } else if(!Validator::accountName($account_name)) $errors['account'] = Validator::getLastError(); // email if(!Validator::email($email)) $errors['email'] = Validator::getLastError(); // country $country = ''; if($config['account_country']) { $country = $_POST['country']; if(!isset($country)) $errors['country'] = 'Country is not set.'; elseif(!isset($config['countries'][$country])) $errors['country'] = 'Country is invalid.'; } if($config['recaptcha_enabled']) { if(isset($_POST['g-recaptcha-response']) && !empty($_POST['g-recaptcha-response'])) { $verifyResponse = file_get_contents('https://www.google.com/recaptcha/api/siteverify?secret='.$config['recaptcha_secret_key'].'&response='.$_POST['g-recaptcha-response']); $responseData = json_decode($verifyResponse); if(!$responseData->success) $errors['verification'] = "Please confirm that you're not a robot."; } else $errors['verification'] = "Please confirm that you're not a robot."; } // password if(empty($password)) { $errors['password'] = 'Please enter the password for your new account.'; } elseif($password != $password2) { $errors['password'] = 'Passwords are not the same.'; } else if(!Validator::password($password)) { $errors['password'] = Validator::getLastError(); } // check if account name is not equal to password if(USE_ACCOUNT_NAME && strtoupper($account_name) == strtoupper($password)) { $errors['password'] = 'Password may not be the same as account name.'; } if(empty($errors)) { if($config['account_mail_unique']) { $test_email_account = new OTS_Account(); $test_email_account->findByEmail($email); if($test_email_account->isLoaded()) $errors['email'] = 'Account with this e-mail address already exist.'; } $account_db = new OTS_Account(); if(USE_ACCOUNT_NAME) $account_db->find($account_name); else $account_db->load($account_id); if($account_db->isLoaded()) { if(USE_ACCOUNT_NAME) $errors['account'] = 'Account with this name already exist.'; else $errors['account'] = 'Account with this id already exist.'; } } if(!isset($_POST['accept_rules']) || $_POST['accept_rules'] != 'true') $errors['accept_rules'] = 'You have to agree to the ' . $config['lua']['serverName'] . ' Rules in order to create an account!'; if(empty($errors)) { $new_account = new OTS_Account(); if(USE_ACCOUNT_NAME) $new_account->create($account_name); else $new_account->create(NULL, $account_id); $config_salt_enabled = $db->hasColumn('accounts', 'salt'); if($config_salt_enabled) { $salt = generateRandomString(10, false, true, true); $password = $salt . $password; } $new_account->setPassword(encrypt($password)); $new_account->setEMail($email); $new_account->unblock(); $new_account->save(); if($config_salt_enabled) $new_account->setCustomField('salt', $salt); $new_account->setCustomField('created', time()); $new_account->logAction('Account created.'); if($config['account_country']) { $new_account->setCustomField('country', $country); } if($config['account_premium_days'] && $config['account_premium_days'] > 0) { if($db->hasColumn('accounts', 'premend')) { // othire $new_account->setCustomField('premend', time() + $config['account_premium_days'] * 86400); } else { // rest $new_account->setCustomField('premdays', $config['account_premium_days']); $new_account->setCustomField('lastday', time()); } } if($config['account_premium_points']) { $new_account->setCustomField('premium_points', $config['account_premium_points']); } $tmp_account = (USE_ACCOUNT_NAME ? $account_name : $account_id); if($config['mail_enabled'] && $config['account_mail_verify']) { $hash = md5(generateRandomString(16, true, true) . $email); $new_account->setCustomField('email_hash', $hash); $verify_url = getLink('account/confirm_email/' . $hash); $body_html = $twig->render('mail.account.verify.html.twig', array( 'account' => $tmp_account, 'verify_url' => generateLink($verify_url, $verify_url, true) )); if(_mail($email, 'New account on ' . $config['lua']['serverName'], $body_html)) { echo $twig->render('account.created.verify.html.twig', array( 'account' => $tmp_account )); } else { error('An error occorred while sending email! Account not created. Try again. Error:
' . $mailer->ErrorInfo . '
More info in system/logs/error.log'); log_append('error.log', '[createaccount.php] An error occorred while sending email: ' . $mailer->ErrorInfo . '. Error: ' . print_r(error_get_last(), true)); $new_account->delete(); } } else { echo $twig->render('account.created.html.twig', array( 'account' => $tmp_account )); if($config['mail_enabled'] && $config['account_welcome_mail']) { $mailBody = $twig->render('account.welcome_mail.html.twig', array( 'account' => $tmp_account )); if(_mail($email, 'Your account on ' . $config['lua']['serverName'], $mailBody)) echo '
These informations were send on email address ' . $email . '.'; else { error('An error occorred while sending email (' . $email . ')! Error:
' . $mailer->ErrorInfo . '
More info in system/logs/error.log'); log_append('error.log', '[createaccount.php] An error occorred while sending email: ' . $mailer->ErrorInfo . '. Error: ' . print_r(error_get_last(), true)); } } } return; } } $country_recognized = null; if($config['account_country_recognize']) { $country_session = getSession('country'); if($country_session !== false) { // get from session $country_recognized = $country_session; } else { $info = json_decode(@file_get_contents('http://ipinfo.io/' . $_SERVER['REMOTE_ADDR'] . '/geo'), true); if(isset($info['country'])) { $country_recognized = strtolower($info['country']); setSession('country', $country_recognized); } } } if(!empty($errors)) echo $twig->render('error_box.html.twig', array('errors' => $errors)); if($config['account_country']) { $countries = array(); foreach (array('pl', 'se', 'br', 'us', 'gb') as $c) $countries[$c] = $config['countries'][$c]; $countries['--'] = '----------'; foreach ($config['countries'] as $code => $c) $countries[$code] = $c; } echo $twig->render('account.create.js.html.twig'); echo $twig->render('account.create.html.twig', array( 'account' => isset($_POST['account']) ? $_POST['account'] : '', 'email' => isset($_POST['email']) ? $_POST['email'] : '', 'countries' => isset($countries) ? $countries : null, 'accept_rules' => isset($_POST['accept_rules']) ? $_POST['accept_rules'] : false, 'country_recognized' => $country_recognized, 'country' => isset($country) ? $country : null, 'errors' => $errors, 'save' => $save )); ?>