/** * Licensed to Apereo under one or more contributor license agreements. See the NOTICE file * distributed with this work for additional information regarding copyright ownership. Apereo * licenses this file to you 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 the * following location: * * <p>http://www.apache.org/licenses/LICENSE-2.0 * * <p>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 org.apereo.portal.url.processing; import java.util.Enumeration; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apereo.portal.IUserPreferencesManager; import org.apereo.portal.layout.IStylesheetUserPreferencesService; import org.apereo.portal.layout.IStylesheetUserPreferencesService.PreferencesScope; import org.apereo.portal.layout.IUserLayout; import org.apereo.portal.layout.IUserLayoutManager; import org.apereo.portal.layout.TransientUserLayoutManagerWrapper; import org.apereo.portal.portlet.om.IPortletEntity; import org.apereo.portal.portlet.om.IPortletWindow; import org.apereo.portal.portlet.om.IPortletWindowId; import org.apereo.portal.portlet.registry.IPortletWindowRegistry; import org.apereo.portal.url.IPortalRequestInfo; import org.apereo.portal.url.IPortletRequestInfo; import org.apereo.portal.url.IUrlSyntaxProvider; import org.apereo.portal.url.UrlState; import org.apereo.portal.user.IUserInstance; import org.apereo.portal.user.IUserInstanceManager; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; /** * This helper class processes HttpServletRequests for parameters relating to user layout actions, * propagating appropriate events to the user's layout manager, preferences, and channel manager. * * <p>This class results from factoring the processUserLayoutParameters method out of UserInstance * in an effort to make UserInstance smaller and more literate. */ @Service("userLayoutRequestParameterProcessor") public class UserLayoutParameterProcessor implements IRequestParameterProcessor { protected final Logger logger = LoggerFactory.getLogger(getClass()); private IUserInstanceManager userInstanceManager; private IUrlSyntaxProvider urlSyntaxProvider; private IPortletWindowRegistry portletWindowRegistry; private IStylesheetUserPreferencesService stylesheetUserPreferencesService; @Autowired public void setStylesheetUserPreferencesService( IStylesheetUserPreferencesService stylesheetUserPreferencesService) { this.stylesheetUserPreferencesService = stylesheetUserPreferencesService; } @Autowired public void setUserInstanceManager(IUserInstanceManager userInstanceManager) { this.userInstanceManager = userInstanceManager; } @Autowired public void setUrlSyntaxProvider(IUrlSyntaxProvider urlSyntaxProvider) { this.urlSyntaxProvider = urlSyntaxProvider; } @Autowired public void setPortletWindowRegistry(IPortletWindowRegistry portletWindowRegistry) { this.portletWindowRegistry = portletWindowRegistry; } @Override public boolean processParameters(HttpServletRequest request, HttpServletResponse response) { final IPortalRequestInfo portalRequestInfo = this.urlSyntaxProvider.getPortalRequestInfo(request); final IUserInstance userInstance = this.userInstanceManager.getUserInstance(request); final IUserPreferencesManager preferencesManager = userInstance.getPreferencesManager(); final IUserLayoutManager userLayoutManager = preferencesManager.getUserLayoutManager(); final String tabId = portalRequestInfo.getTargetedLayoutNodeId(); if (tabId != null) { this.stylesheetUserPreferencesService.setStylesheetParameter( request, PreferencesScope.STRUCTURE, "focusedTabID", tabId); } // If the layout manager is a transient layout manager, reset the focusedId. This addresses the use case of a // user focusing on a transient portlet (one not on their layout), then doing something like clicking on // another tab. If we didn't reset the focused ID the layout processing will again create a transient folder // and portlet node even though the current URL doesn't specify focusing on a portlet. If the URL does focus // on a portlet, it will get overwritten with the new value below. if (userLayoutManager instanceof TransientUserLayoutManagerWrapper) { final TransientUserLayoutManagerWrapper transientUserLayoutManagerWrapper = (TransientUserLayoutManagerWrapper) userLayoutManager; transientUserLayoutManagerWrapper.setFocusedId(null); } final UrlState urlState = portalRequestInfo.getUrlState(); switch (urlState) { case DETACHED: this.stylesheetUserPreferencesService.setStylesheetParameter( request, PreferencesScope.STRUCTURE, "detached", Boolean.TRUE.toString()); case MAX: { final IPortletRequestInfo portletRequestInfo = portalRequestInfo.getTargetedPortletRequestInfo(); if (portletRequestInfo != null) { final IPortletWindowId targetWindowId = portletRequestInfo.getPortletWindowId(); final IPortletWindow portletWindow = this.portletWindowRegistry.getPortletWindow( request, targetWindowId); final IPortletEntity portletEntity = portletWindow.getPortletEntity(); final String channelSubscribeId = portletEntity.getLayoutNodeId(); this.stylesheetUserPreferencesService.setStylesheetParameter( request, PreferencesScope.STRUCTURE, "userLayoutRoot", channelSubscribeId); if (userLayoutManager instanceof TransientUserLayoutManagerWrapper) { // get wrapper implementation for focusing final TransientUserLayoutManagerWrapper transientUserLayoutManagerWrapper = (TransientUserLayoutManagerWrapper) userLayoutManager; // .. and now set it as the focused id transientUserLayoutManagerWrapper.setFocusedId(channelSubscribeId); } //If portletRequestInfo was null just fall through to NORMAL state break; } } case NORMAL: default: { this.stylesheetUserPreferencesService.setStylesheetParameter( request, PreferencesScope.STRUCTURE, "userLayoutRoot", IUserLayout.ROOT_NODE_NAME); break; } } return true; } protected String findTabIndex(IUserLayoutManager userLayoutManager, String tabId) { final String rootFolderId = userLayoutManager.getRootFolderId(); final Enumeration<String> rootsChildren = userLayoutManager.getChildIds(rootFolderId); int tabIndex = 0; for (String topNodeId = rootsChildren.nextElement(); rootsChildren.hasMoreElements(); topNodeId = rootsChildren.nextElement()) { tabIndex++; if (tabId.equals(topNodeId)) { return Integer.toString(tabIndex); } } return "none"; } }