gonito-frontend/src/services/KeyCloakService.js

54 lines
1.2 KiB
JavaScript

import Keycloak from 'keycloak-js';
const _kc = new Keycloak({
url: 'http://0.0.0.0:8080/',
realm: 'test',
clientId: 'test'
});
const initKeycloak = (onAuthenticatedCallback) => {
_kc.init({
onLoad: 'check-sso',
silentCheckSsoRedirectUri: window.location.origin + '/silent-check-sso.html',
pkceMethod: 'S256',
})
.then((authenticated) => {
if (!authenticated) {
console.log('user is not authenticated..!');
}
onAuthenticatedCallback();
})
.catch(console.error);
};
const doLogin = _kc.login;
const doLogout = _kc.logout;
const getToken = () => _kc.token;
const isLoggedIn = () => {
return _kc.authenticated;
};
const updateToken = (successCallback) =>
_kc.updateToken(5)
.then(successCallback)
.catch(doLogin);
const getUsername = () => _kc.tokenParsed?.preferred_username;
const hasRole = (roles) => roles.some((role) => _kc.hasRealmRole(role));
const KeyCloakService = {
initKeycloak,
doLogin,
doLogout,
isLoggedIn,
getToken,
updateToken,
getUsername,
hasRole,
};
export default KeyCloakService;