HackMD/public/js/common.js

116 lines
2.8 KiB
JavaScript
Raw Normal View History

2017-01-05 08:48:23 +00:00
// import config from './config';
import {
domain, // domain name
urlpath, // sub url path, like: www.example.com/<urlpath>
debug,
GOOGLE_API_KEY,
GOOGLE_CLIENT_ID,
DROPBOX_APP_KEY
} from './config';
2016-10-05 02:58:05 +00:00
//common
2017-01-05 08:48:23 +00:00
export const port = window.location.port;
window.serverurl = `${window.location.protocol}//${domain ? domain : window.location.hostname}${port ? ':' + port : ''}${urlpath ? '/' + urlpath : ''}`;
export const noteid = urlpath ? window.location.pathname.slice(urlpath.length + 1, window.location.pathname.length).split('/')[1] : window.location.pathname.split('/')[1];
export const noteurl = `${serverurl}/${noteid}`;
export const version = '0.5.0';
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-05 08:48:23 +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 {
domain,
urlpath,
debug,
GOOGLE_API_KEY,
GOOGLE_CLIENT_ID,
DROPBOX_APP_KEY,
checkAuth,
profile,
lastLoginState,
lastUserId,
loginStateChangeEvent
2016-10-09 13:34:40 +00:00
};