mirror of
https://github.com/gnh1201/welsonjs.git
synced 2024-11-26 23:41:42 +00:00
72 lines
2.3 KiB
JavaScript
72 lines
2.3 KiB
JavaScript
var FILE = require("lib/file");
|
|
var serverUrl = "http://96.30.198.29/";
|
|
|
|
$(document).ready(function() {
|
|
$(".show-logged").css("display", "none");
|
|
|
|
$("#loginform").ajaxForm({
|
|
success: function(res) {
|
|
if(res.success === false) {
|
|
console.log("로그인에 실패하였습니다. 다시 시도하여 주세요");
|
|
} else {
|
|
// 로그인 사용자의 토큰을 저장
|
|
FILE.writeFile("token.txt", res.data.token, "utf-8");
|
|
|
|
// 저장 여부 확인
|
|
var isTokenExists = FILE.fileExists("token.txt");
|
|
if(isTokenExists) {
|
|
// 성공하면 아이디 표시
|
|
$("#logged_username").text(res.data.username);
|
|
|
|
// 화면 전환
|
|
$(".show-no-logged").css("display", "none");
|
|
$(".show-logged").css("display", "");
|
|
} else {
|
|
console.log("저장공간이 충분한지 확인하여 주세요");
|
|
}
|
|
}
|
|
},
|
|
error: function(xhr, status, error) {
|
|
var errorMessage = xhr.status + ': ' + xhr.statusText;
|
|
alert('Error - ' + errorMessage);
|
|
}
|
|
});
|
|
|
|
// 기존 토큰 정보가 있는 경우
|
|
var isTokenExists = FILE.fileExists("token.txt");
|
|
if(isTokenExists) {
|
|
var token = FILE.readFile("token.txt", "utf-8");
|
|
$.get(serverUrl, {
|
|
route: "api.authenticate",
|
|
action: "checkToken",
|
|
token: token
|
|
}, function(res) {
|
|
// 토큰 확인에 성공하면 아이디 표시
|
|
$("#logged_username").text(res.data.username);
|
|
|
|
// 화면 전환
|
|
$(".show-no-logged").css("display", "none");
|
|
$(".show-logged").css("display", "");
|
|
});
|
|
}
|
|
|
|
// 닫기
|
|
$("a[href='#exit']").click(function() {
|
|
exit();
|
|
});
|
|
|
|
// 로그아웃
|
|
$("#btn_logout").click(function() {
|
|
// 토큰 파일 삭제
|
|
FILE.deleteFile("token.txt");
|
|
|
|
// todo: expire token in the database
|
|
|
|
// 화면 전환
|
|
$(".loginbox").css("display", "");
|
|
$(".logoutbox").css("display", "none");
|
|
|
|
console.log("로그아웃 되었습니다.");
|
|
});
|
|
});
|