use of com.haulmont.cuba.security.global.UserSession in project cuba by cuba-platform.
the class PermissionTest method test.
@Test
public void test() throws LoginException {
LoginWorker lw = AppBeans.get(LoginWorker.NAME);
UserSession userSession = lw.login(USER_NAME, passwordEncryption.getPlainHash(USER_PASSW), Locale.getDefault());
assertNotNull(userSession);
boolean permitted = userSession.isPermitted(PermissionType.SCREEN, PERM_TARGET_SCREEN);
assertFalse(permitted);
permitted = userSession.isPermitted(PermissionType.SCREEN, "some action");
// permitted all if not explicitly denied
assertTrue(permitted);
permitted = userSession.isPermitted(PermissionType.ENTITY_ATTR, PERM_TARGET_ATTR);
// READ access permitted
assertTrue(permitted);
permitted = userSession.isPermitted(PermissionType.ENTITY_ATTR, PERM_TARGET_ATTR, 2);
// READ/WRITE access denied
assertFalse(permitted);
}
use of com.haulmont.cuba.security.global.UserSession in project cuba by cuba-platform.
the class ServerTokenStoreImpl method removeAccessTokenFromMemory.
protected void removeAccessTokenFromMemory(String tokenValue) {
RestUserSessionInfo sessionInfo;
lock.writeLock().lock();
try {
accessTokenValueToAccessTokenStore.remove(tokenValue);
accessTokenValueToAuthenticationStore.remove(tokenValue);
accessTokenValueToUserLoginStore.remove(tokenValue);
String authenticationKey = accessTokenValueToAuthenticationKeyStore.remove(tokenValue);
if (authenticationKey != null) {
authenticationToAccessTokenStore.remove(authenticationKey);
}
sessionInfo = accessTokenValueToSessionInfoStore.remove(tokenValue);
} finally {
lock.writeLock().unlock();
}
if (sessionInfo != null) {
try {
UserSession session = userSessions.get(sessionInfo.getId());
if (session != null) {
AppContext.setSecurityContext(new SecurityContext(session));
try {
authenticationManager.logout();
} finally {
AppContext.setSecurityContext(null);
}
}
} catch (NoUserSessionException ignored) {
}
}
}
use of com.haulmont.cuba.security.global.UserSession in project cuba by cuba-platform.
the class Authentication method begin.
/**
* Begin an authenticated code block.
* <br>
* If a valid current thread session exists, does nothing.
* Otherwise sets the current thread session, logging in if necessary.
* <br>
* Subsequent {@link #end()} method must be called in "finally" section.
*
* @param login user login. If null, a value of {@code cuba.jmxUserLogin} app property is used.
* @return new or cached instance of system user session
*/
public UserSession begin(@Nullable String login) {
if (cleanupCounter.get() == null) {
cleanupCounter.set(0);
}
// check if a current thread session exists, that is we got here from authenticated code
SecurityContext securityContext = AppContext.getSecurityContext();
if (securityContext != null) {
UserSession userSession = userSessions.getAndRefresh(securityContext.getSessionId());
if (userSession != null) {
log.trace("Already authenticated, do nothing");
cleanupCounter.set(cleanupCounter.get() + 1);
if (log.isTraceEnabled()) {
log.trace("New cleanup counter value: {}", cleanupCounter.get());
}
return userSession;
}
}
// no current thread session or it is expired - need to authenticate
if (StringUtils.isBlank(login)) {
login = getSystemLogin();
}
UserSession session = null;
log.trace("Authenticating as {}", login);
UUID sessionId = sessions.get(login);
if (sessionId != null) {
session = userSessions.getAndRefresh(sessionId);
}
if (session == null) {
// saved session doesn't exist or is expired
synchronized (this) {
// double check to prevent the same log in by subsequent threads
sessionId = sessions.get(login);
if (sessionId != null) {
session = userSessions.get(sessionId);
}
if (session == null) {
try {
session = authenticationManager.login(new SystemUserCredentials(login)).getSession();
session.setClientInfo("System authentication");
} catch (LoginException e) {
throw new RuntimeException("Unable to perform system login", e);
}
sessions.put(login, session.getId());
}
}
}
AppContext.setSecurityContext(new SecurityContext(session));
return session;
}
use of com.haulmont.cuba.security.global.UserSession in project cuba by cuba-platform.
the class LoginWorkerBean method getSystemSession.
@Override
public UserSession getSystemSession(String trustedClientPassword) throws LoginException {
if (!trustedLoginHandler.checkPassword(trustedClientPassword)) {
Locale locale = messages.getTools().getDefaultLocale();
throw new LoginException(messages.formatMessage(MSG_PACK, "LoginException.InvalidLoginOrPassword", locale, serverConfig.getJmxUserLogin()));
}
SecurityContext currentSecContext = AppContext.getSecurityContext();
UserSession userSession;
try {
// we need to reset security context to prevent reusing current session
AppContext.setSecurityContext(null);
userSession = authentication.begin();
authentication.end();
} finally {
AppContext.setSecurityContext(currentSecContext);
}
return userSession;
}
use of com.haulmont.cuba.security.global.UserSession in project cuba by cuba-platform.
the class TrustedClientServiceBean method getSystemSession.
@Nonnull
@Override
public UserSession getSystemSession(String trustedClientPassword) throws LoginException {
checkTrustedClientCredentials(trustedClientPassword);
return withSecurityContext(null, () -> {
UserSession userSession = authentication.begin();
authentication.end();
return userSession;
});
}
Aggregations