2c54be85be
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
39 lines
1.3 KiB
TypeScript
39 lines
1.3 KiB
TypeScript
import { CoreApi, SessionUser } from "@goauthentik/api";
|
|
import { activateLocale } from "../interfaces/locale";
|
|
import { DEFAULT_CONFIG } from "./Config";
|
|
|
|
let globalMePromise: Promise<SessionUser>;
|
|
export function me(): Promise<SessionUser> {
|
|
if (!globalMePromise) {
|
|
globalMePromise = new CoreApi(DEFAULT_CONFIG).coreUsersMeRetrieve().then((user) => {
|
|
if (!user.user.settings || !("locale" in user.user.settings)) {
|
|
return user;
|
|
}
|
|
const locale = user.user.settings.locale;
|
|
if (locale && locale !== "") {
|
|
console.debug(`authentik/locale: Activating user's configured locale '${locale}'`);
|
|
activateLocale(locale);
|
|
}
|
|
return user;
|
|
}).catch((ex) => {
|
|
const defaultUser: SessionUser = {
|
|
user: {
|
|
pk: -1,
|
|
isSuperuser: false,
|
|
isActive: true,
|
|
groups: [],
|
|
avatar: "",
|
|
uid: "",
|
|
username: "",
|
|
name: ""
|
|
}
|
|
};
|
|
if (ex.status === 401 || ex.status === 403) {
|
|
window.location.assign("/");
|
|
}
|
|
return defaultUser;
|
|
});
|
|
}
|
|
return globalMePromise;
|
|
}
|