001    /**
002     * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.journalcontentsearch.action;
016    
017    import com.liferay.portal.model.LayoutTypePortlet;
018    import com.liferay.portal.struts.PortletAction;
019    import com.liferay.portal.theme.ThemeDisplay;
020    import com.liferay.portal.util.PortalUtil;
021    import com.liferay.portal.util.WebKeys;
022    
023    import javax.portlet.PortletConfig;
024    import javax.portlet.RenderRequest;
025    import javax.portlet.RenderResponse;
026    
027    import org.apache.struts.action.ActionForm;
028    import org.apache.struts.action.ActionForward;
029    import org.apache.struts.action.ActionMapping;
030    
031    /**
032     * @author Alexander Chow
033     */
034    public class SearchAction extends PortletAction {
035    
036            @Override
037            public ActionForward render(
038                            ActionMapping actionMapping, ActionForm actionForm,
039                            PortletConfig portletConfig, RenderRequest renderRequest,
040                            RenderResponse renderResponse)
041                    throws Exception {
042    
043                    ThemeDisplay themeDisplay = (ThemeDisplay)renderRequest.getAttribute(
044                            WebKeys.THEME_DISPLAY);
045    
046                    LayoutTypePortlet layoutTypePortlet =
047                            themeDisplay.getLayoutTypePortlet();
048    
049                    String portletId = PortalUtil.getPortletId(renderRequest);
050    
051                    if (!layoutTypePortlet.hasPortletId(portletId)) {
052                            renderResponse.setTitle(themeDisplay.translate("search"));
053                    }
054    
055                    return actionMapping.findForward(
056                            "portlet.journal_content_search.search");
057            }
058    
059    }