c1ab5c5556
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> #770
22 lines
662 B
TypeScript
22 lines
662 B
TypeScript
import { CoreApi, SessionUser } from "authentik-api";
|
|
import { DEFAULT_CONFIG } from "./Config";
|
|
|
|
let globalMePromise: Promise<SessionUser>;
|
|
export function me(): Promise<SessionUser> {
|
|
if (!globalMePromise) {
|
|
globalMePromise = new CoreApi(DEFAULT_CONFIG).coreUsersMe().catch((ex) => {
|
|
const defaultUser: SessionUser = {
|
|
user: {
|
|
username: "",
|
|
name: ""
|
|
}
|
|
};
|
|
if (ex.status === 401 || ex.status === 403) {
|
|
window.location.assign("/");
|
|
}
|
|
return defaultUser;
|
|
});
|
|
}
|
|
return globalMePromise;
|
|
}
|