/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.portal.security.ldap.internal.model.listener; import com.liferay.portal.kernel.log.Log; import com.liferay.portal.kernel.log.LogFactoryUtil; import com.liferay.portal.kernel.model.BaseModelListener; import com.liferay.portal.kernel.model.ModelListener; import com.liferay.portal.kernel.model.User; import com.liferay.portal.kernel.model.UserGroup; import com.liferay.portal.security.exportimport.UserExporter; import com.liferay.portal.security.exportimport.UserOperation; import com.liferay.portal.security.ldap.internal.UserImportTransactionThreadLocal; import org.osgi.service.component.annotations.Component; import org.osgi.service.component.annotations.Reference; import org.osgi.service.component.annotations.ReferencePolicyOption; /** * @author Marcellus Tavares */ @Component(immediate = true, service = ModelListener.class) public class UserGroupModelListener extends BaseModelListener<UserGroup> { @Override public void onAfterAddAssociation( Object userGroupId, String associationClassName, Object associationClassPK) { try { if (associationClassName.equals(User.class.getName())) { exportToLDAP( (Long)associationClassPK, (Long)userGroupId, UserOperation.ADD); } } catch (Exception e) { _log.error( "Unable to export user group with user ID " + associationClassPK + " to LDAP on after add association", e); } } @Override public void onAfterRemoveAssociation( Object userGroupId, String associationClassName, Object associationClassPK) { try { if (associationClassName.equals(User.class.getName())) { exportToLDAP( (Long)associationClassPK, (Long)userGroupId, UserOperation.REMOVE); } } catch (Exception e) { _log.error( "Unable to export user group with user ID " + associationClassPK + " to LDAP on after remove association", e); } } protected void exportToLDAP( long userId, long userGroupId, UserOperation userOperation) throws Exception { if (UserImportTransactionThreadLocal.isOriginatesFromImport()) { return; } _userExporter.exportUser(userId, userGroupId, userOperation); if (_log.isDebugEnabled()) { if (_log.isDebugEnabled()) { _log.debug( "Exporting user " + userId + " to user group " + userGroupId + " with user operation " + userOperation.name()); } } } private static final Log _log = LogFactoryUtil.getLog( UserGroupModelListener.class); @Reference(policyOption = ReferencePolicyOption.GREEDY) private UserExporter _userExporter; }