HackMD/public/js/lib/common/login.js

93 lines
2.1 KiB
JavaScript
Raw Normal View History

2017-01-13 14:51:44 +00:00
import { serverurl } from '../config';
2016-10-05 02:58:05 +00:00
2017-01-05 08:48:23 +00:00
let checkAuth = false;
let profile = null;
let lastLoginState = getLoginState();
let lastUserId = getUserId();
let loginStateChangeEvent = null;
2016-10-05 02:58:05 +00:00
2017-01-05 08:48:23 +00:00
export function setloginStateChangeEvent(func) {
loginStateChangeEvent = func;
}
2016-10-05 02:58:05 +00:00
2017-01-05 08:48:23 +00:00
export function resetCheckAuth() {
2016-10-05 02:58:05 +00:00
checkAuth = false;
}
2017-01-05 08:48:23 +00:00
export function setLoginState(bool, id) {
2016-10-05 02:58:05 +00:00
Cookies.set('loginstate', bool, {
expires: 365
});
if (id) {
Cookies.set('userid', id, {
expires: 365
});
} else {
Cookies.remove('userid');
}
lastLoginState = bool;
lastUserId = id;
checkLoginStateChanged();
}
2017-01-05 08:48:23 +00:00
export function checkLoginStateChanged() {
2016-10-05 02:58:05 +00:00
if (getLoginState() != lastLoginState || getUserId() != lastUserId) {
2017-01-14 07:47:13 +00:00
if (loginStateChangeEvent) {
2016-10-05 02:58:05 +00:00
loginStateChangeEvent();
2017-01-05 08:48:23 +00:00
}
2016-10-05 02:58:05 +00:00
return true;
} else {
return false;
}
}
2017-01-05 08:48:23 +00:00
export function getLoginState() {
const state = Cookies.get('loginstate');
2016-10-05 02:58:05 +00:00
return state === "true" || state === true;
}
2017-01-05 08:48:23 +00:00
export function getUserId() {
2016-10-05 02:58:05 +00:00
return Cookies.get('userid');
}
2017-01-05 08:48:23 +00:00
export function clearLoginState() {
2016-10-05 02:58:05 +00:00
Cookies.remove('loginstate');
}
2017-01-05 08:48:23 +00:00
export function checkIfAuth(yesCallback, noCallback) {
const cookieLoginState = getLoginState();
2016-10-05 02:58:05 +00:00
if (checkLoginStateChanged())
checkAuth = false;
if (!checkAuth || typeof cookieLoginState == 'undefined') {
2017-01-05 08:48:23 +00:00
$.get(`${serverurl}/me`)
.done(data => {
2016-10-05 02:58:05 +00:00
if (data && data.status == 'ok') {
profile = data;
yesCallback(profile);
setLoginState(true, data.id);
} else {
noCallback();
setLoginState(false);
}
})
2017-01-05 08:48:23 +00:00
.fail(() => {
2016-10-05 02:58:05 +00:00
noCallback();
})
2017-01-05 08:48:23 +00:00
.always(() => {
2016-10-05 02:58:05 +00:00
checkAuth = true;
});
} else if (cookieLoginState) {
yesCallback(profile);
} else {
noCallback();
}
2016-10-09 13:34:40 +00:00
}
2017-01-05 08:48:23 +00:00
export default {
checkAuth,
profile,
lastLoginState,
lastUserId,
loginStateChangeEvent
2016-10-09 13:34:40 +00:00
};