/** * Copyright (C) 2009 eXo Platform SAS. * * This 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 software 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. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.exoplatform.portal.config; import org.exoplatform.container.PortalContainer; import org.exoplatform.container.component.RequestLifeCycle; import org.exoplatform.services.organization.User; import org.exoplatform.services.organization.UserEventListener; import org.gatein.common.logging.Logger; import org.gatein.common.logging.LoggerFactory; /** * Created by The eXo Platform SAS May 29, 2007 */ public class UserPortalConfigListener extends UserEventListener { /** . */ private final Logger log = LoggerFactory.getLogger(UserPortalConfigListener.class); /** . */ private final UserPortalConfigService portalConfigService; public UserPortalConfigListener(UserPortalConfigService portalConfigService) { this.portalConfigService = portalConfigService; } public void preDelete(User user) throws Exception { if (portalConfigService.getDestroyUserPortal()) { String userName = user.getUserName(); // log.debug("About to destroy user site for user " + userName); RequestLifeCycle.begin(PortalContainer.getInstance()); try { portalConfigService.removeUserPortalConfig("user", userName); } finally { RequestLifeCycle.end(); } } } public void preSave(User user, boolean isNew) { if (portalConfigService.getCreateUserPortal()) { String userName = user.getUserName(); // Create the portal from the template log.debug("About to create user site for user " + userName); RequestLifeCycle.begin(PortalContainer.getInstance()); try { portalConfigService.createUserSite(userName); } catch (Exception e) { log.error("Could not create user site for user " + userName, e); } finally { RequestLifeCycle.end(); } } } }