/* * This library is part of OpenCms - * the Open Source Content Management System * * Copyright (c) Alkacon Software GmbH (http://www.alkacon.com) * * 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. * * For further information about Alkacon Software GmbH, please see the * company website: http://www.alkacon.com * * For further information about OpenCms, please see the * project website: http://www.opencms.org * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package org.opencms.ade.galleries; import org.opencms.ade.galleries.shared.CmsGalleryDataBean; import org.opencms.ade.galleries.shared.CmsGallerySearchBean; import org.opencms.ade.galleries.shared.CmsGallerySearchScope; import org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants; import org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants.GalleryMode; import org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants.GalleryTabId; import org.opencms.ade.galleries.shared.I_CmsGalleryProviderConstants.ReqParam; import org.opencms.ade.galleries.shared.rpc.I_CmsGalleryService; import org.opencms.ade.upload.CmsUploadActionElement; import org.opencms.gwt.CmsGwtActionElement; import org.opencms.jsp.CmsJspActionElement; import org.opencms.util.CmsStringUtil; import org.opencms.workplace.CmsWorkplace; import org.opencms.workplace.CmsWorkplaceManager; import org.opencms.workplace.tools.CmsToolDialog; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.jsp.PageContext; /** * Gallery action used to generate the gallery dialog.<p> * * see jsp file <tt>/system/modules/org.opencms.ade.galleries/testVfs.jsp</tt>.<p> * * @since 8.0.0 */ public class CmsGalleryActionElement extends CmsGwtActionElement { /** The module name. */ public static final String MODULE_NAME = "galleries"; /** The gallery mode. */ private GalleryMode m_galleryMode; /** * Constructor.<p> * * @param context the JSP page context object * @param req the JSP request * @param res the JSP response */ public CmsGalleryActionElement(PageContext context, HttpServletRequest req, HttpServletResponse res) { super(context, req, res); try { m_galleryMode = GalleryMode.valueOf(getRequest().getParameter(ReqParam.dialogmode.name()).trim()); } catch (Exception e) { m_galleryMode = GalleryMode.view; } // ensure workplace settings attribute is set if (req.getSession().getAttribute(CmsWorkplaceManager.SESSION_WORKPLACE_SETTINGS) == null) { // creating any instance of {@link org.opencms.workplace.CmsWorkplace} will do new CmsToolDialog(new CmsJspActionElement(context, req, res)); } } /** * @see org.opencms.gwt.CmsGwtActionElement#export() */ @Override public String export() throws Exception { return export(m_galleryMode); } /** * @see org.opencms.gwt.CmsGwtActionElement#exportAll() */ @Override public String exportAll() throws Exception { StringBuffer sb = new StringBuffer(); sb.append(super.export()); sb.append(export()); sb.append(exportCloseLink()); sb.append(new CmsUploadActionElement(getJspContext(), getRequest(), getResponse()).export()); sb.append(createNoCacheScript(MODULE_NAME)); return sb.toString(); } /** * Returns the serialized initial data for gallery dialog within the container-page editor.<p> * * @return the data * * @throws Exception if something goes wrong */ public String exportForContainerpage() throws Exception { return export(GalleryMode.ade); } /** * Returns the editor title.<p> * * @return the editor title */ public String getTitle() { return Messages.get().getBundle(getWorkplaceLocale()).key(Messages.GUI_GALLERIES_TITLE_0); } /** * Returns if the current gallery mode is the editor mode (used inside a rich text editor).<p> * * @return <code>true</code> if the gallery was opened from the editor */ public boolean isEditorMode() { return m_galleryMode == GalleryMode.editor; } /** * Returns if the current gallery mode is the widget mode (used within xml-content editor etc.).<p> * * @return <code>true</code> if the gallery was opened as a widget */ public boolean isWidgetMode() { return m_galleryMode == GalleryMode.widget; } /** * Returns the serialized initial data for gallery dialog depending on the given mode.<p> * * @param galleryMode the gallery mode * * @return the data * * @throws Exception if something goes wrong */ private String export(GalleryMode galleryMode) throws Exception { CmsGalleryService galleryService = CmsGalleryService.newInstance(getRequest(), galleryMode); CmsGalleryDataBean data = galleryService.getInitialSettings(); CmsGallerySearchBean search = null; if (GalleryTabId.cms_tab_results.equals(data.getStartTab())) { search = galleryService.getSearch(data); } if ((search != null) && (search.getScope() != null) && (search.getScope() != data.getScope())) { // default selected scope option should be the one for which the search has been actually performed data.setScope(search.getScope()); } else if ((search != null) && (search.getScope() == null)) { data.setScope(CmsGallerySearchScope.siteShared); } StringBuffer sb = new StringBuffer(); sb.append(ClientMessages.get().export(getRequest())); sb.append(CmsGalleryDataBean.DICT_NAME).append("='"); sb.append(serialize(I_CmsGalleryService.class.getMethod("getInitialSettings"), data)); sb.append("';"); sb.append(CmsGallerySearchBean.DICT_NAME).append("='").append( serialize(I_CmsGalleryService.class.getMethod("getSearch", CmsGalleryDataBean.class), search)); sb.append("';"); wrapScript(sb); return sb.toString(); } /** * Returns a javascript tag that contains a variable deceleration that has the close link as value.<p> * * @return a javascript tag that contains a variable deceleration that has the close link as value */ private String exportCloseLink() { String closeLink = null; if (getRequest().getAttribute(I_CmsGalleryProviderConstants.ATTR_CLOSE_LINK) != null) { closeLink = (String)getRequest().getAttribute(I_CmsGalleryProviderConstants.ATTR_CLOSE_LINK); } if (CmsStringUtil.isEmptyOrWhitespaceOnly(closeLink)) { closeLink = CmsWorkplace.FILE_EXPLORER_FILELIST; } StringBuffer sb = new StringBuffer(); // var closeLink = '/system/workplace/views/explorer/explorer_files.jsp'; sb.append("var ").append(I_CmsGalleryProviderConstants.ATTR_CLOSE_LINK).append(" = \'").append(closeLink).append( "\';"); wrapScript(sb); return sb.toString(); } }