📄 cmssearchindexsourcecontrollist.java
字号:
/*
* File : $Source: /usr/local/cvs/opencms/src-modules/org/opencms/workplace/tools/searchindex/CmsSearchIndexSourceControlList.java,v $
* Date : $Date: 2006/03/27 14:52:21 $
* Version: $Revision: 1.2 $
*
* This library is part of OpenCms -
* the Open Source Content Mananagement System
*
* Copyright (c) 2005 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.workplace.tools.searchindex;
import org.opencms.configuration.CmsSearchConfiguration;
import org.opencms.i18n.CmsMessageContainer;
import org.opencms.jsp.CmsJspActionElement;
import org.opencms.main.CmsLog;
import org.opencms.main.OpenCms;
import org.opencms.search.CmsSearchDocumentType;
import org.opencms.search.CmsSearchIndexSource;
import org.opencms.search.CmsSearchManager;
import org.opencms.workplace.list.A_CmsListDialog;
import org.opencms.workplace.list.CmsListColumnAlignEnum;
import org.opencms.workplace.list.CmsListColumnDefinition;
import org.opencms.workplace.list.CmsListDefaultAction;
import org.opencms.workplace.list.CmsListDirectAction;
import org.opencms.workplace.list.CmsListItem;
import org.opencms.workplace.list.CmsListItemDetails;
import org.opencms.workplace.list.CmsListItemDetailsFormatter;
import org.opencms.workplace.list.CmsListMetadata;
import org.opencms.workplace.list.CmsListMultiAction;
import org.opencms.workplace.list.CmsListOrderEnum;
import org.opencms.workplace.tools.CmsToolDialog;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.jsp.PageContext;
import org.apache.commons.logging.Log;
/**
* A list that displays information about the <code>{@link org.opencms.search.CmsSearchIndexSource}</code>
* that are members of the <code>{@link org.opencms.search.CmsSearchIndex}</code>
* in the current request scope (param "searchindex").<p>
*
* Unlike <code>{@link org.opencms.workplace.tools.searchindex.CmsSearchIndexSourceList}</code>
* this list is stand-alone displayable (not to embed in another dialog) and
* offers single actions within the rows related to the current selected indexsource
* which has to be found by the <b>request parameter <code></code></b>.
*
* @author Achim Westermann
*
* @version $Revision: 1.2 $
*
* @since 6.0.0
*/
public class CmsSearchIndexSourceControlList extends A_CmsListDialog {
/** list action dummy id constant. */
public static final String LIST_ACTION_DELETE = "ade";
/** list action dummy id constant. */
public static final String LIST_ACTION_DOCUMENTS = "ado";
/** list action dummy id constant. */
public static final String LIST_ACTION_EDIT = "ae";
/** list action dummy id constant. */
public static final String LIST_ACTION_OVERVIEW_INDEXSOURCE = "aois";
/**
* List action dummy id constant. <p>
*
* This is meant to be used for the same action as
* <code>{@link #LIST_ACTION_OVERVIEW_INDEXSOURCE}</code> but has to be used if
* within one list two columns shall trigger the same action...<p>
**/
public static final String LIST_ACTION_OVERVIEW_INDEXSOURCE2 = "aois2";
/** list action dummy id constant. */
public static final String LIST_ACTION_RESOURCES = "ar";
/** list column id constant. */
public static final String LIST_COLUMN_DELETE = "cde";
/** list item detail id constant. */
public static final String LIST_COLUMN_DOCUMENTS = "cdo";
/** list column id constant. */
public static final String LIST_COLUMN_EDIT = "ce";
/** list column id constant. */
public static final String LIST_COLUMN_INDEXER = "ca";
/** list column id constant. */
public static final String LIST_COLUMN_NAME = "cn";
/** list column id constant. */
public static final String LIST_COLUMN_RESOURCES = "cr";
/** list item detail id constant. */
public static final String LIST_DETAIL_DOCTYPES = "dd";
/** list item detail id constant. */
public static final String LIST_DETAIL_RESOURCES = "dr";
/** list id constant. */
public static final String LIST_ID = "lssisc";
/** list action id constant. */
public static final String LIST_MACTION_DELETESOURCE = "mad";
/** The list icon for a folder resource of a indexsource-documenttype. **/
protected static final String ICON_FOLDER = "tools/searchindex/icons/small/indexsource-resources.png";
/** The log object for this class. */
private static final Log LOG = CmsLog.getLog(CmsSearchIndexSourceControlList.class);
/**
* Public constructor.<p>
*
* @param jsp an initialized JSP action element
*/
public CmsSearchIndexSourceControlList(CmsJspActionElement jsp) {
this(jsp, LIST_ID, Messages.get().container(Messages.GUI_LIST_INDEXSOURCES_NAME_0));
}
/**
* Public constructor.<p>
*
* @param jsp an initialized JSP action element
* @param listId the id of the list
* @param listName the list name
*/
public CmsSearchIndexSourceControlList(CmsJspActionElement jsp, String listId, CmsMessageContainer listName) {
this(jsp, listId, listName, LIST_COLUMN_NAME, CmsListOrderEnum.ORDER_ASCENDING, null);
}
/**
* Public constructor.<p>
*
* @param jsp an initialized JSP action element
* @param listId the id of the displayed list
* @param listName the name of the list
* @param sortedColId the a priory sorted column
* @param sortOrder the order of the sorted column
* @param searchableColId the column to search into
*/
public CmsSearchIndexSourceControlList(
CmsJspActionElement jsp,
String listId,
CmsMessageContainer listName,
String sortedColId,
CmsListOrderEnum sortOrder,
String searchableColId) {
super(jsp, listId, listName, sortedColId, sortOrder, searchableColId);
}
/**
* Public constructor.<p>
*
* Public constructor with JSP variables.<p>
*
* @param context the JSP page context
* @param req the JSP request
* @param res the JSP response
*/
public CmsSearchIndexSourceControlList(PageContext context, HttpServletRequest req, HttpServletResponse res) {
this(new CmsJspActionElement(context, req, res));
}
/**
* @see org.opencms.workplace.list.A_CmsListDialog#executeListMultiActions()
*/
public void executeListMultiActions() {
CmsSearchManager searchManager = OpenCms.getSearchManager();
if (getParamListAction().equals(LIST_MACTION_DELETESOURCE)) {
// execute the delete multiaction
Iterator itItems = getSelectedItems().iterator();
CmsListItem listItem;
CmsSearchIndexSource idxsource;
while (itItems.hasNext()) {
listItem = (CmsListItem)itItems.next();
idxsource = searchManager.getIndexSource((String)listItem.get(LIST_COLUMN_NAME));
searchManager.removeSearchIndexSource(idxsource);
getList().removeItem(listItem.getId(), getLocale());
}
refreshList();
writeConfiguration(false);
}
listSave();
}
/**
* @throws ServletException
* @throws IOException
* @see org.opencms.workplace.list.A_CmsListDialog#executeListSingleActions()
*/
public void executeListSingleActions() throws IOException, ServletException {
String indexSource = getSelectedItem().getId();
Map params = new HashMap();
String action = getParamListAction();
if (action.equals(LIST_ACTION_EDIT)) {
// forward to the edit indexsource screen
params.put(A_CmsEditIndexSourceDialog.PARAM_INDEXSOURCE, indexSource);
params.put(PARAM_STYLE, CmsToolDialog.STYLE_NEW);
getToolManager().jspForwardTool(this, "/searchindex/indexsources/indexsource/edit", params);
} else if (action.equals(LIST_ACTION_DELETE)) {
// forward to the delete indexsource screen
params.put(A_CmsEditIndexSourceDialog.PARAM_INDEXSOURCE, indexSource);
params.put(PARAM_ACTION, DIALOG_INITIAL);
params.put(PARAM_STYLE, CmsToolDialog.STYLE_NEW);
getToolManager().jspForwardTool(this, "/searchindex/indexsources/indexsource/delete", params);
} else if (action.equals(LIST_ACTION_RESOURCES)) {
// forward to the assign resources to indexsource screen
params.put(A_CmsEditIndexSourceDialog.PARAM_INDEXSOURCE, indexSource);
params.put(PARAM_ACTION, DIALOG_INITIAL);
params.put(PARAM_STYLE, CmsToolDialog.STYLE_NEW);
getToolManager().jspForwardTool(this, "/searchindex/indexsources/indexsource/resources", params);
} else if (action.equals(LIST_ACTION_DOCUMENTS)) {
// forward to the assign document types to indexsource screen
params.put(A_CmsEditIndexSourceDialog.PARAM_INDEXSOURCE, indexSource);
params.put(PARAM_ACTION, DIALOG_INITIAL);
params.put(PARAM_STYLE, CmsToolDialog.STYLE_NEW);
getToolManager().jspForwardTool(this, "/searchindex/indexsources/indexsource/doctypes", params);
} else if (action.equals(LIST_ACTION_OVERVIEW_INDEXSOURCE)) {
// forward to the index overview screen
params.put(A_CmsEditIndexSourceDialog.PARAM_INDEXSOURCE, indexSource);
params.put(PARAM_ACTION, DIALOG_INITIAL);
params.put(PARAM_STYLE, CmsToolDialog.STYLE_NEW);
getToolManager().jspForwardTool(this, "/searchindex/indexsources/indexsource", params);
}
listSave();
}
/**
* @see org.opencms.workplace.list.A_CmsListDialog#fillDetails(java.lang.String)
*/
protected void fillDetails(String detailId) {
// get content
List items = getList().getAllContent();
Iterator itItems = items.iterator();
CmsListItem item;
if (detailId.equals(LIST_DETAIL_DOCTYPES)) {
while (itItems.hasNext()) {
item = (CmsListItem)itItems.next();
fillDetailDocTypes(item, detailId);
}
}
if (detailId.equals(LIST_DETAIL_RESOURCES)) {
while (itItems.hasNext()) {
item = (CmsListItem)itItems.next();
fillDetailResources(item, detailId);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -