
com.helger.photon.security.mgr.PhotonSecurityManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ph-oton-security Show documentation
Show all versions of ph-oton-security Show documentation
ph-oton security components
/**
* Copyright (C) 2014-2016 Philip Helger (www.helger.com)
* philip[at]helger[dot]com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.helger.photon.security.mgr;
/**
* Copyright (C) 2014-2015 Philip Helger (www.helger.com)
* philip[at]helger[dot]com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import javax.annotation.Nonnull;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.helger.commons.annotation.Nonempty;
import com.helger.commons.annotation.UsedViaReflection;
import com.helger.commons.exception.InitializationException;
import com.helger.commons.lang.ClassHelper;
import com.helger.commons.scope.IScope;
import com.helger.commons.scope.singleton.AbstractGlobalSingleton;
import com.helger.photon.basic.audit.AuditHelper;
import com.helger.photon.basic.audit.AuditManager;
import com.helger.photon.security.lock.DefaultLockManager;
import com.helger.photon.security.lock.ObjectLockManager;
import com.helger.photon.security.login.ELoginResult;
import com.helger.photon.security.login.IUserLoginCallback;
import com.helger.photon.security.login.LoggedInUserManager;
import com.helger.photon.security.login.LoginInfo;
import com.helger.photon.security.role.RoleManager;
import com.helger.photon.security.token.user.UserTokenManager;
import com.helger.photon.security.user.UserManager;
import com.helger.photon.security.usergroup.UserGroupManager;
/**
* The meta system manager encapsulates all managers that are located in this
* project. Currently the contained managers are:
*
* - {@link AuditManager}
*
*
* @author Philip Helger
*/
public final class PhotonSecurityManager extends AbstractGlobalSingleton
{
public static final String DIRECTORY_AUDITS = "audits/";
public static final String DIRECTORY_SECURITY = "security/";
public static final String FILENAME_USERS_XML = "users.xml";
public static final String FILENAME_ROLES_XML = "roles.xml";
public static final String FILENAME_USERGROUPS_XML = "usergroups.xml";
public static final String FILENAME_USERTOKENS_XML = "usertokens.xml";
private static final Logger s_aLogger = LoggerFactory.getLogger (PhotonSecurityManager.class);
private AuditManager m_aAuditMgr;
private UserManager m_aUserMgr;
private RoleManager m_aRoleMgr;
private UserGroupManager m_aUserGroupMgr;
private UserTokenManager m_aUserTokenMgr;
@Deprecated
@UsedViaReflection
public PhotonSecurityManager ()
{}
private void _initCallbacks ()
{
// Remember the last login date of the user
LoggedInUserManager.getInstance ().getUserLoginCallbacks ().addCallback (new IUserLoginCallback ()
{
@Override
public void onUserLogin (@Nonnull final LoginInfo aInfo)
{
m_aUserMgr.updateUserLastLogin (aInfo.getUserID ());
}
@Override
public void onUserLoginError (@Nonnull @Nonempty final String sUserID, @Nonnull final ELoginResult eLoginResult)
{
if (eLoginResult == ELoginResult.INVALID_PASSWORD)
{
// On invalid password, update consecutive failed login count
m_aUserMgr.updateUserLastFailedLogin (sUserID);
}
}
});
}
@Override
protected void onAfterInstantiation (@Nonnull final IScope aScope)
{
try
{
m_aAuditMgr = new AuditManager (DIRECTORY_AUDITS, LoggedInUserManager.getInstance ());
AuditHelper.setAuditor (m_aAuditMgr.getAuditor ());
AuditHelper.onAuditExecuteSuccess ("audit-initialized");
m_aUserMgr = new UserManager (DIRECTORY_SECURITY + FILENAME_USERS_XML);
m_aRoleMgr = new RoleManager (DIRECTORY_SECURITY + FILENAME_ROLES_XML);
m_aUserGroupMgr = new UserGroupManager (DIRECTORY_SECURITY + FILENAME_USERGROUPS_XML, m_aUserMgr, m_aRoleMgr);
// Must be after user manager
m_aUserTokenMgr = new UserTokenManager (DIRECTORY_SECURITY + FILENAME_USERTOKENS_XML);
// Init callbacks after all managers
_initCallbacks ();
s_aLogger.info (ClassHelper.getClassLocalName (this) + " was initialized");
}
catch (final Throwable t)
{
throw new InitializationException ("Failed to init " + ClassHelper.getClassLocalName (this), t);
}
}
@Override
protected void onBeforeDestroy (@Nonnull final IScope aScopeToBeDestroyed)
{
if (m_aAuditMgr != null)
{
/*
* Call here to ensure that the AuditManager is still present! Otherwise
* the destruction order of the singletons is relevant!
*/
AuditHelper.onAuditExecuteSuccess ("audit-shutdown");
}
}
@Override
protected void onDestroy (@Nonnull final IScope aScopeInDestruction)
{
if (m_aAuditMgr != null)
{
AuditHelper.setDefaultAuditor ();
m_aAuditMgr.stop ();
}
}
@Nonnull
public static PhotonSecurityManager getInstance ()
{
return getGlobalSingleton (PhotonSecurityManager.class);
}
@Nonnull
public static AuditManager getAuditMgr ()
{
return getInstance ().m_aAuditMgr;
}
@Nonnull
public static DefaultLockManager getLockMgr ()
{
return ObjectLockManager.getInstance ().getDefaultLockMgr ();
}
@Nonnull
public static RoleManager getRoleMgr ()
{
return getInstance ().m_aRoleMgr;
}
@Nonnull
public static UserManager getUserMgr ()
{
return getInstance ().m_aUserMgr;
}
@Nonnull
public static UserGroupManager getUserGroupMgr ()
{
return getInstance ().m_aUserGroupMgr;
}
@Nonnull
public static UserTokenManager getUserTokenMgr ()
{
return getInstance ().m_aUserTokenMgr;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy