001    /**
002     * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portal.events;
016    
017    import com.liferay.portal.kernel.events.SessionAction;
018    import com.liferay.portal.kernel.log.Log;
019    import com.liferay.portal.kernel.log.LogFactoryUtil;
020    import com.liferay.portal.kernel.notifications.ChannelException;
021    import com.liferay.portal.kernel.notifications.ChannelHubManagerUtil;
022    import com.liferay.portal.kernel.util.WebKeys;
023    import com.liferay.portal.model.User;
024    import com.liferay.portal.service.UserLocalServiceUtil;
025    
026    import javax.servlet.http.HttpSession;
027    
028    /**
029     * @author Edward Han
030     * @author Brian Wing Shun Chan
031     * @author Shuyang Zhou
032     */
033    public class ChannelSessionDestroyAction extends SessionAction {
034    
035            @Override
036            public void run(HttpSession session) {
037                    User user = null;
038    
039                    try {
040                            user = (User)session.getAttribute(WebKeys.USER);
041                    }
042                    catch (IllegalStateException ise) {
043                            return;
044                    }
045    
046                    try {
047                            if (user == null) {
048                                    Long userId = (Long)session.getAttribute(WebKeys.USER_ID);
049    
050                                    if (userId != null) {
051                                            user = UserLocalServiceUtil.getUser(userId);
052                                    }
053                            }
054    
055                            if ((user == null) || user.isDefaultUser()) {
056                                    return;
057                            }
058    
059                            if (_log.isDebugEnabled()) {
060                                    _log.debug("Destroying channel " + user.getUserId());
061                            }
062    
063                            try {
064                                    ChannelHubManagerUtil.destroyChannel(
065                                            user.getCompanyId(), user.getUserId());
066                            }
067                            catch (ChannelException ce) {
068                                    if (_log.isDebugEnabled()) {
069                                            _log.debug(
070                                                    "User channel " + user.getUserId() +
071                                                            " is already unregistered",
072                                                    ce);
073                                    }
074                            }
075                    }
076                    catch (Exception e) {
077                            _log.error(e, e);
078                    }
079            }
080    
081            private static Log _log = LogFactoryUtil.getLog(
082                    ChannelSessionDestroyAction.class);
083    
084    }