46 lines
1022 B
JavaScript
46 lines
1022 B
JavaScript
import { getMsauth, setMsauth } from "./storage";
|
||
import { URL_MICROSOFT_AUTH } from "../config";
|
||
import { fetchData } from "./fetch";
|
||
import { kissLog } from "./log";
|
||
|
||
const parseMSToken = (token) => {
|
||
try {
|
||
return JSON.parse(atob(token.split(".")[1])).exp;
|
||
} catch (err) {
|
||
kissLog(err, "parseMSToken");
|
||
}
|
||
return 0;
|
||
};
|
||
|
||
/**
|
||
* 闭包缓存token,减少对storage查询
|
||
* @returns
|
||
*/
|
||
const _msAuth = () => {
|
||
let { token, exp } = {};
|
||
|
||
return async () => {
|
||
// 查询内存缓存
|
||
const now = Date.now();
|
||
if (token && exp * 1000 > now + 1000) {
|
||
return [token, exp];
|
||
}
|
||
|
||
// 查询storage缓存
|
||
const res = await getMsauth();
|
||
token = res?.token;
|
||
exp = res?.exp;
|
||
if (token && exp * 1000 > now + 1000) {
|
||
return [token, exp];
|
||
}
|
||
|
||
// 缓存没有或失效,查询接口
|
||
token = await fetchData(URL_MICROSOFT_AUTH);
|
||
exp = parseMSToken(token);
|
||
await setMsauth({ token, exp });
|
||
return [token, exp];
|
||
};
|
||
};
|
||
|
||
export const msAuth = _msAuth();
|