Fix: experience maestro account, experience_player_account
This commit is contained in:
@@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
function loadMaestroTestAccountInfo() {
|
function loadMaestroTestAccountInfo() {
|
||||||
sendRequestServer( //url, sendParams, onSuccess, onFail, isDebugMode);
|
sendRequestServer( //url, sendParams, onSuccess, onFail, isDebugMode);
|
||||||
"./../server/maestro/maestro_test_account.php",
|
"./../server/player/player_experience_account.php",
|
||||||
"",
|
"",
|
||||||
|
|
||||||
(jsonData) => {
|
(jsonData) => {
|
||||||
@@ -34,6 +34,7 @@
|
|||||||
sessionStorage.setItem("maestroID", maestroID);
|
sessionStorage.setItem("maestroID", maestroID);
|
||||||
sessionStorage.setItem("playerID", playerID);
|
sessionStorage.setItem("playerID", playerID);
|
||||||
sessionStorage.setItem("playerName", playerName);
|
sessionStorage.setItem("playerName", playerName);
|
||||||
|
|
||||||
location.href = "./../client/menu_app.html";
|
location.href = "./../client/menu_app.html";
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
@@ -14,9 +14,9 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
||||||
function loadMaestroTestAccountInfo() {
|
function loadMaestroExperienceAccount() {
|
||||||
sendRequestServer( //url, sendParams, onSuccess, onFail, isDebugMode);
|
sendRequestServer( //url, sendParams, onSuccess, onFail, isDebugMode);
|
||||||
"./../server/maestro/maestro_test_account.php",
|
"./../server/maestro/maestro_experience_account.php",
|
||||||
"",
|
"",
|
||||||
|
|
||||||
(jsonData) => {
|
(jsonData) => {
|
||||||
@@ -31,6 +31,8 @@ function loadMaestroTestAccountInfo() {
|
|||||||
sessionStorage.setItem("maestroID", maestroID);
|
sessionStorage.setItem("maestroID", maestroID);
|
||||||
sessionStorage.setItem("playerID", playerID);
|
sessionStorage.setItem("playerID", playerID);
|
||||||
sessionStorage.setItem("playerName", playerName);
|
sessionStorage.setItem("playerName", playerName);
|
||||||
|
|
||||||
|
location.href = "./../maestro/main_menu.html";
|
||||||
},
|
},
|
||||||
|
|
||||||
(errorMessage, errorCode) => {
|
(errorMessage, errorCode) => {
|
||||||
@@ -44,8 +46,7 @@ function loadMaestroTestAccountInfo() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function experienceMaestro() {
|
function experienceMaestro() {
|
||||||
loadMaestroTestAccountInfo();
|
loadMaestroExperienceAccount();
|
||||||
location.href = "./../maestro/main_menu.html";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
+24
-12
@@ -5,50 +5,58 @@ include "./../lib/send_reply_json.php";
|
|||||||
include "./../setup/connect_db.php";
|
include "./../setup/connect_db.php";
|
||||||
|
|
||||||
|
|
||||||
$maestro_test_account_id = get_maestro_test_account_id("test");
|
$maestro_experience_id = get_maestro_experience_id("test");
|
||||||
if($maestro_test_account_id === null) {
|
if($maestro_experience_id === null) {
|
||||||
set_error_message("등록된 마에스트로 관리자 계정이 없습니다. (".$maestro_test_account_id.")");
|
set_error_message("등록된 마에스트로 관리자 계정이 없습니다. (".$maestro_experience_id.")");
|
||||||
send_result_fail();
|
send_result_fail();
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
$maestro_test_player_id = get_maestro_test_player_id($maestro_test_account_id);
|
$maestro_test_player_id = get_maestro_test_player_id($maestro_experience_id);
|
||||||
if($maestro_test_player_id === null) {
|
if($maestro_test_player_id === null) {
|
||||||
set_error_message("등록된 마에스트로 관리자 계정이 없습니다. (".$maestro_test_account_id.")");
|
set_error_message("등록된 마에스트로 관리자 계정이 없습니다. (".$maestro_experience_id.")");
|
||||||
send_result_fail();
|
send_result_fail();
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
$maestro_test_player_name = get_maestro_test_player_name($maestro_test_player_id);
|
$maestro_test_player_name = get_maestro_test_player_name($maestro_test_player_id);
|
||||||
|
|
||||||
set_data("maestroID", $maestro_test_account_id);
|
set_data("maestroID", $maestro_experience_id);
|
||||||
set_data("playerID", $maestro_test_player_id);
|
set_data("playerID", $maestro_test_player_id);
|
||||||
set_data("playerName", $maestro_test_player_name);
|
set_data("playerName", $maestro_test_player_name);
|
||||||
send_result_success();
|
send_result_success();
|
||||||
exit;
|
exit;
|
||||||
|
|
||||||
|
|
||||||
function get_maestro_test_account_id($maestro_name) {
|
function get_maestro_experience_id($maestro_name) {
|
||||||
global $db_conn;
|
global $db_conn;
|
||||||
|
|
||||||
$query = "SELECT MaestroID FROM moty_maestro WHERE Name=?";
|
$query = "
|
||||||
|
SELECT MaestroID
|
||||||
|
FROM moty_maestro
|
||||||
|
WHERE Name = ?
|
||||||
|
";
|
||||||
$stmt = $db_conn->prepare($query);
|
$stmt = $db_conn->prepare($query);
|
||||||
$stmt->bind_param("s", $maestro_name);
|
$stmt->bind_param("s", $maestro_name);
|
||||||
$stmt->execute();
|
$stmt->execute();
|
||||||
$stmt->bind_result($maestro_test_account_id);
|
$stmt->bind_result($maestro_experience_id);
|
||||||
// while($stmt->fetch()) {
|
// while($stmt->fetch()) {
|
||||||
// ;
|
// ;
|
||||||
// }
|
// }
|
||||||
$stmt->fetch();
|
$stmt->fetch();
|
||||||
$stmt->close();
|
$stmt->close();
|
||||||
|
|
||||||
return $maestro_test_account_id;
|
return $maestro_experience_id;
|
||||||
}
|
}
|
||||||
|
|
||||||
function get_maestro_test_player_id($maestro_id) {
|
function get_maestro_test_player_id($maestro_id) {
|
||||||
global $db_conn;
|
global $db_conn;
|
||||||
|
|
||||||
$query = "SELECT MaestroTestID FROM moty_maestro WHERE MaestroID=?";
|
$query = "
|
||||||
|
SELECT MaestroTestID
|
||||||
|
FROM moty_maestro
|
||||||
|
WHERE MaestroID = ?
|
||||||
|
";
|
||||||
$stmt = $db_conn->prepare($query);
|
$stmt = $db_conn->prepare($query);
|
||||||
$stmt->bind_param("i", $maestro_id);
|
$stmt->bind_param("i", $maestro_id);
|
||||||
$stmt->execute();
|
$stmt->execute();
|
||||||
@@ -65,7 +73,11 @@ function get_maestro_test_player_id($maestro_id) {
|
|||||||
function get_maestro_test_player_name($player_id) {
|
function get_maestro_test_player_name($player_id) {
|
||||||
global $db_conn;
|
global $db_conn;
|
||||||
|
|
||||||
$query = "SELECT Name FROM moty_player WHERE PlayerID=?";
|
$query = "
|
||||||
|
SELECT Name
|
||||||
|
FROM moty_player
|
||||||
|
WHERE PlayerID = ?
|
||||||
|
";
|
||||||
$stmt = $db_conn->prepare($query);
|
$stmt = $db_conn->prepare($query);
|
||||||
$stmt->bind_param("i", $player_id);
|
$stmt->bind_param("i", $player_id);
|
||||||
$stmt->execute();
|
$stmt->execute();
|
||||||
@@ -0,0 +1,43 @@
|
|||||||
|
<?php
|
||||||
|
header("Content-Type: application/json");
|
||||||
|
|
||||||
|
include "./../lib/send_reply_json.php";
|
||||||
|
include "./../setup/connect_db.php";
|
||||||
|
|
||||||
|
|
||||||
|
$maestro_experience_id = get_maestro_experience_id("test");
|
||||||
|
if($maestro_experience_id === null) {
|
||||||
|
set_error_message("등록된 마에스트로 관리자 계정이 없습니다. (".$maestro_experience_id.")");
|
||||||
|
send_result_fail();
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
set_data("maestroID", $maestro_experience_id);
|
||||||
|
set_data("playerID", -1);
|
||||||
|
set_data("playerName", "TestPlayer");
|
||||||
|
send_result_success();
|
||||||
|
exit;
|
||||||
|
|
||||||
|
|
||||||
|
function get_maestro_experience_id($maestro_name) {
|
||||||
|
global $db_conn;
|
||||||
|
|
||||||
|
$query = "
|
||||||
|
SELECT MaestroID
|
||||||
|
FROM moty_maestro
|
||||||
|
WHERE Name = ?
|
||||||
|
";
|
||||||
|
$stmt = $db_conn->prepare($query);
|
||||||
|
$stmt->bind_param("s", $maestro_name);
|
||||||
|
$stmt->execute();
|
||||||
|
$stmt->bind_result($maestro_experience_id);
|
||||||
|
// while($stmt->fetch()) {
|
||||||
|
// ;
|
||||||
|
// }
|
||||||
|
$stmt->fetch();
|
||||||
|
$stmt->close();
|
||||||
|
|
||||||
|
return $maestro_experience_id;
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
Reference in New Issue
Block a user