Backport 1.5 refresh login & login

This commit is contained in:
2025-09-12 07:34:15 -07:00
parent 03243fcde7
commit 7eed767a41
3 changed files with 54 additions and 2 deletions

View File

@@ -0,0 +1,50 @@
<?php
$conn = newConnection();
$post = getPostData();
$username = $post['username'];
$password = $post['password'];
$currentHighScore = $post['currentHighScore'] ?? 0;
$loginType = $post['loginType'] ?? '0';
$stmt = $conn->prepare("SELECT * FROM users WHERE username = ?");
$stmt->bind_param("s", $username);
$stmt->execute();
$result = $stmt->get_result();
if ($result->num_rows === 0) {
exitWithMessage("-1");
}
$user = $result->fetch_assoc();
if (!password_verify($password, $user["password"])) {
exitWithMessage("-1");
}
$id = $user['id'];
$token = $user['token'];
$ip = getIPAddress();
$stmt = $conn->prepare("UPDATE users SET latest_ip = ?, token = ? WHERE id = ?");
$stmt->bind_param("ssi", $ip, $token, $id);
$stmt->execute();
if ($currentHighScore > $user['legacy_high_score']) {
$stmt = $conn->prepare("UPDATE users SET legacy_high_score = ? WHERE id = ?");
$stmt->bind_param("ii", $currentHighScore, $id);
$stmt->execute();
$user['legacy_high_score'] = $currentHighScore;
}
$savedata = json_decode($user['save_data'], true);
$birdColor = $savedata['settings']['colors']['icon'] ?? [255,255,255];
$overlayColor = $savedata['settings']['colors']['overlay'] ?? [255,255,255];
if ($loginType === "0") {
echo encrypt("1" . ":" . $token . ":" . $user['username'] . ":" . $id . ":" . $user['legacy_high_score'] . ":" . ($savedata['bird']['icon'] ?? 1) . ":" . ($savedata['bird']['overlay'] ?? 0) . ":0:0:0:0:0:" . ":" . $birdColor[0] . ":" . $birdColor[1] . ":" . $birdColor[2] . ":" . $overlayColor[0] . ":" . $overlayColor[1] . ":" . $overlayColor[2]);
} elseif ($loginType === "1") {
echo encrypt("1" . ":" . $token . ":" . $user['username'] . ":" . $id);
}
$stmt->close();
$conn->close();

View File

@@ -6,8 +6,6 @@ if (isAllowedDatabaseVersion(getClientVersion())) {
require __DIR__ . '/backported/1.3-beta2/getTopPlayers.php'; require __DIR__ . '/backported/1.3-beta2/getTopPlayers.php';
exit; exit;
} }
}
if (isAllowedDatabaseVersion(getClientVersion())) {
if (getClientVersion() == "1.5.0" || getClientVersion() == "1.5.1" || getClientVersion() == "1.5.2") { if (getClientVersion() == "1.5.0" || getClientVersion() == "1.5.1" || getClientVersion() == "1.5.2") {
require __DIR__ . '/backported/1.5/getTopPlayers.php'; require __DIR__ . '/backported/1.5/getTopPlayers.php';
exit; exit;

View File

@@ -12,6 +12,10 @@ if (isAllowedDatabaseVersion(getClientVersion())) {
require __DIR__ . '/backported/1.2-beta2/loginAccount.php'; require __DIR__ . '/backported/1.2-beta2/loginAccount.php';
exit; exit;
} }
if (getClientVersion() == "1.5.0" || getClientVersion() == "1.5.1" || getClientVersion() == "1.5.2") {
require __DIR__ . '/backported/1.5/loginAccount.php';
exit;
}
} }
checkClientDatabaseVersion(); checkClientDatabaseVersion();
$conn = newConnection(); $conn = newConnection();