Usernames: remove spaces and convert to lowercase
This commit is contained in:
parent
0565418731
commit
3eb726b594
@ -10,7 +10,7 @@ if (is_empty($VARS['pass'])) {
|
|||||||
sendError("Missing password.", true);
|
sendError("Missing password.", true);
|
||||||
}
|
}
|
||||||
|
|
||||||
$VARS['user'] = str_replace(" ", "", $VARS['user']);
|
$VARS['user'] = strtolower(str_replace(" ", "", $VARS['user']));
|
||||||
|
|
||||||
/* Insert code to check login here, it should return "OK" or an error string */
|
/* Insert code to check login here, it should return "OK" or an error string */
|
||||||
/* ------------------------------- */
|
/* ------------------------------- */
|
||||||
|
@ -1,36 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
require 'required.php';
|
|
||||||
|
|
||||||
if (is_empty($VARS['user'])) {
|
|
||||||
sendError("Missing data.", true);
|
|
||||||
}
|
|
||||||
|
|
||||||
$guid = file_get_contents("https://sso.netsyms.com/api/getguid.php?user=" . $VARS['user']);
|
|
||||||
|
|
||||||
if (is_empty($guid)) {
|
|
||||||
sendError("Account does not exist.", true);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($database->has('players', ['uuid' => $guid])) {
|
|
||||||
sendOK();
|
|
||||||
} else {
|
|
||||||
$database->insert('players', ['uuid' => $guid, 'level' => 1.0, 'energy' => 100, 'maxenergy' => 100, '#lastping' => 'NOW()', 'nickname' => $VARS['user']]);
|
|
||||||
sendOK("Successfully synced Netsyms account to TerranQuest.");
|
|
||||||
ini_set("sendmail_from", "sso@netsyms.com");
|
|
||||||
|
|
||||||
$message = "This is just a quick message confirming that you have successfully linked TerranQuest to your Netsyms Technologies account. \n\n";
|
|
||||||
$message .= "If you have any questions or need assistance with anything, email admin@netsyms.com and we will be happy to assist you. \n\n";
|
|
||||||
$message .= "Have a nice day, " . $VARS['user'] . ". We hope you continue to use our services.";
|
|
||||||
$message .= "\n\n--------\nNetsyms Technologies\n\nThis is an automated email. Do not reply to it.";
|
|
||||||
|
|
||||||
$headers = "From: Account System <sso@netsyms.com>";
|
|
||||||
|
|
||||||
$email = file_get_contents("https://sso.netsyms.com/api/getemail.php?user=" . $VARS['user']);
|
|
||||||
|
|
||||||
mail($email, "Account Update", $message, $headers);
|
|
||||||
}
|
|
||||||
// Setup the session
|
|
||||||
$_SESSION['username'] = $VARS['user'];
|
|
||||||
$_SESSION['guid'] = $_SESSION['uuid'] = $guid;
|
|
||||||
$_SESSION['loggedin'] = true;
|
|
Reference in New Issue
Block a user