25 lines
468 B
JavaScript
25 lines
468 B
JavaScript
function validate(onsuccess, onfailure) {
|
|
let authorized = true;
|
|
if ($.cookie("token") == null) {
|
|
authorized = false;
|
|
} else {
|
|
$.ajax({
|
|
url: "/token",
|
|
type: "POST",
|
|
contentType: "application/json",
|
|
data: `{"token":"${$.cookie("token")}"}`,
|
|
dataType: "json",
|
|
success: function (resp) {
|
|
authorized = resp.status;
|
|
},
|
|
failure: function (err) {
|
|
alert(err);
|
|
}
|
|
});
|
|
}
|
|
if (authorized) {
|
|
return onsuccess;
|
|
}
|
|
return onfailure;
|
|
}
|