/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * 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. */ package com.liferay.wiki.web.internal.item.selector.view.display.context; import com.liferay.item.selector.ItemSelectorReturnTypeResolver; import com.liferay.item.selector.ItemSelectorReturnTypeResolverHandler; import com.liferay.portal.kernel.exception.PortalException; import com.liferay.portal.kernel.portlet.LiferayPortletResponse; import com.liferay.portal.kernel.portlet.PortletURLUtil; import com.liferay.portal.kernel.repository.model.FileEntry; import com.liferay.wiki.constants.WikiPortletKeys; import com.liferay.wiki.item.selector.criterion.WikiAttachmentItemSelectorCriterion; import com.liferay.wiki.model.WikiPage; import com.liferay.wiki.service.WikiPageLocalServiceUtil; import com.liferay.wiki.web.internal.item.selector.view.WikiAttachmentItemSelectorView; import java.util.Locale; import javax.portlet.ActionRequest; import javax.portlet.PortletException; import javax.portlet.PortletURL; import javax.servlet.http.HttpServletRequest; /** * @author Roberto Díaz */ public class WikiAttachmentItemSelectorViewDisplayContext { public WikiAttachmentItemSelectorViewDisplayContext( WikiAttachmentItemSelectorCriterion wikiAttachmentItemSelectorCriterion, WikiAttachmentItemSelectorView wikiAttachmentItemSelectorView, ItemSelectorReturnTypeResolverHandler itemSelectorReturnTypeResolverHandler, String itemSelectedEventName, boolean search, PortletURL portletURL) { _wikiAttachmentItemSelectorCriterion = wikiAttachmentItemSelectorCriterion; _wikiAttachmentItemSelectorView = wikiAttachmentItemSelectorView; _itemSelectorReturnTypeResolverHandler = itemSelectorReturnTypeResolverHandler; _itemSelectedEventName = itemSelectedEventName; _search = search; _portletURL = portletURL; } public String getItemSelectedEventName() { return _itemSelectedEventName; } public ItemSelectorReturnTypeResolver getItemSelectorReturnTypeResolver() { return _itemSelectorReturnTypeResolverHandler. getItemSelectorReturnTypeResolver( _wikiAttachmentItemSelectorCriterion, _wikiAttachmentItemSelectorView, FileEntry.class); } public String[] getMimeTypes() { return _wikiAttachmentItemSelectorCriterion.getMimeTypes(); } public PortletURL getPortletURL( HttpServletRequest request, LiferayPortletResponse liferayPortletResponse) throws PortletException { PortletURL portletURL = PortletURLUtil.clone( _portletURL, liferayPortletResponse); portletURL.setParameter( "selectedTab", String.valueOf(getTitle(request.getLocale()))); return portletURL; } public String getTitle(Locale locale) { return _wikiAttachmentItemSelectorView.getTitle(locale); } public PortletURL getUploadURL( LiferayPortletResponse liferayPortletResponse) { PortletURL portletURL = liferayPortletResponse.createActionURL( WikiPortletKeys.WIKI); portletURL.setParameter( ActionRequest.ACTION_NAME, "/wiki/upload_page_attachment"); portletURL.setParameter( "resourcePrimKey", String.valueOf( _wikiAttachmentItemSelectorCriterion.getWikiPageResourceId())); return portletURL; } public WikiAttachmentItemSelectorCriterion getWikiAttachmentItemSelectorCriterion() { return _wikiAttachmentItemSelectorCriterion; } public WikiPage getWikiPage() throws PortalException { return WikiPageLocalServiceUtil.getPage( _wikiAttachmentItemSelectorCriterion.getWikiPageResourceId()); } public boolean isSearch() { return _search; } private final String _itemSelectedEventName; private final ItemSelectorReturnTypeResolverHandler _itemSelectorReturnTypeResolverHandler; private final PortletURL _portletURL; private final boolean _search; private final WikiAttachmentItemSelectorCriterion _wikiAttachmentItemSelectorCriterion; private final WikiAttachmentItemSelectorView _wikiAttachmentItemSelectorView; }