2017-01-05 03:48:23 -05: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-04 22:58:05 -04:00
|
|
|
|
|
|
|
//common
|
2017-01-05 03:48:23 -05: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-04 22:58:05 -04:00
|
|
|
|
2017-01-05 03:48:23 -05:00
|
|
|
let checkAuth = false;
|
|
|
|
let profile = null;
|
|
|
|
let lastLoginState = getLoginState();
|
|
|
|
let lastUserId = getUserId();
|
|
|
|
let loginStateChangeEvent = null;
|
2016-10-04 22:58:05 -04:00
|
|
|
|
2017-01-05 03:48:23 -05:00
|
|
|
export function setloginStateChangeEvent(func) {
|
|
|
|
loginStateChangeEvent = func;
|
|
|
|
}
|
2016-10-04 22:58:05 -04:00
|
|
|
|
2017-01-05 03:48:23 -05:00
|
|
|
export function resetCheckAuth() {
|
2016-10-04 22:58:05 -04:00
|
|
|
checkAuth = false;
|
|
|
|
}
|
|
|
|
|
2017-01-05 03:48:23 -05:00
|
|
|
export function setLoginState(bool, id) {
|
2016-10-04 22:58:05 -04: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 03:48:23 -05:00
|
|
|
export function checkLoginStateChanged() {
|
2016-10-04 22:58:05 -04:00
|
|
|
if (getLoginState() != lastLoginState || getUserId() != lastUserId) {
|
2017-01-05 03:48:23 -05:00
|
|
|
if(loginStateChangeEvent) {
|
2016-10-04 22:58:05 -04:00
|
|
|
loginStateChangeEvent();
|
2017-01-05 03:48:23 -05:00
|
|
|
}
|
2016-10-04 22:58:05 -04:00
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-05 03:48:23 -05:00
|
|
|
export function getLoginState() {
|
|
|
|
const state = Cookies.get('loginstate');
|
2016-10-04 22:58:05 -04:00
|
|
|
return state === "true" || state === true;
|
|
|
|
}
|
|
|
|
|
2017-01-05 03:48:23 -05:00
|
|
|
export function getUserId() {
|
2016-10-04 22:58:05 -04:00
|
|
|
return Cookies.get('userid');
|
|
|
|
}
|
|
|
|
|
2017-01-05 03:48:23 -05:00
|
|
|
export function clearLoginState() {
|
2016-10-04 22:58:05 -04:00
|
|
|
Cookies.remove('loginstate');
|
|
|
|
}
|
|
|
|
|
2017-01-05 03:48:23 -05:00
|
|
|
export function checkIfAuth(yesCallback, noCallback) {
|
|
|
|
const cookieLoginState = getLoginState();
|
2016-10-04 22:58:05 -04:00
|
|
|
if (checkLoginStateChanged())
|
|
|
|
checkAuth = false;
|
|
|
|
if (!checkAuth || typeof cookieLoginState == 'undefined') {
|
2017-01-05 03:48:23 -05:00
|
|
|
$.get(`${serverurl}/me`)
|
|
|
|
.done(data => {
|
2016-10-04 22:58:05 -04:00
|
|
|
if (data && data.status == 'ok') {
|
|
|
|
profile = data;
|
|
|
|
yesCallback(profile);
|
|
|
|
setLoginState(true, data.id);
|
|
|
|
} else {
|
|
|
|
noCallback();
|
|
|
|
setLoginState(false);
|
|
|
|
}
|
|
|
|
})
|
2017-01-05 03:48:23 -05:00
|
|
|
.fail(() => {
|
2016-10-04 22:58:05 -04:00
|
|
|
noCallback();
|
|
|
|
})
|
2017-01-05 03:48:23 -05:00
|
|
|
.always(() => {
|
2016-10-04 22:58:05 -04:00
|
|
|
checkAuth = true;
|
|
|
|
});
|
|
|
|
} else if (cookieLoginState) {
|
|
|
|
yesCallback(profile);
|
|
|
|
} else {
|
|
|
|
noCallback();
|
|
|
|
}
|
2016-10-09 09:34:40 -04:00
|
|
|
}
|
|
|
|
|
2017-01-05 03:48:23 -05:00
|
|
|
export default {
|
|
|
|
domain,
|
|
|
|
urlpath,
|
|
|
|
debug,
|
|
|
|
GOOGLE_API_KEY,
|
|
|
|
GOOGLE_CLIENT_ID,
|
|
|
|
DROPBOX_APP_KEY,
|
|
|
|
checkAuth,
|
|
|
|
profile,
|
|
|
|
lastLoginState,
|
|
|
|
lastUserId,
|
|
|
|
loginStateChangeEvent
|
2016-10-09 09:34:40 -04:00
|
|
|
};
|