📄 cmssearchindexsourceaddlist.java
字号:
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);
}
}
}
/**
* @see org.opencms.workplace.list.A_CmsListDialog#getListItems()
*/
protected List getListItems() {
List result = new ArrayList();
// get content
// cannot use the returned map: unmodifyable
List allSources = new LinkedList(OpenCms.getSearchManager().getSearchIndexSources().values());
allSources.removeAll(searchIndexSources());
Iterator itSources = allSources.iterator();
CmsSearchIndexSource source;
while (itSources.hasNext()) {
source = (CmsSearchIndexSource)itSources.next();
CmsListItem item = getList().newItem(source.getName());
item.set(LIST_COLUMN_NAME, source.getName());
item.set(LIST_COLUMN_INDEXER, source.getIndexer().getClass().getName());
result.add(item);
}
return result;
}
/**
* @see org.opencms.workplace.CmsWorkplace#initMessages()
*/
protected void initMessages() {
// add specific dialog resource bundle
addMessages(Messages.get().getBundleName());
// add default resource bundles
super.initMessages();
}
/**
* @see org.opencms.workplace.list.A_CmsListDialog#initWorkplaceRequestValues(org.opencms.workplace.CmsWorkplaceSettings, javax.servlet.http.HttpServletRequest)
*/
protected void initWorkplaceRequestValues(CmsWorkplaceSettings settings, HttpServletRequest request) {
super.initWorkplaceRequestValues(settings, request);
}
/**
* @see org.opencms.workplace.list.A_CmsListDialog#setColumns(org.opencms.workplace.list.CmsListMetadata)
*/
protected void setColumns(CmsListMetadata metadata) {
// create dummy column for icon
CmsListColumnDefinition editCol = new CmsListColumnDefinition(LIST_COLUMN_ICON);
editCol.setName(Messages.get().container(Messages.GUI_LIST_INDEXSOURCE_COL_ICON_NAME_0));
editCol.setHelpText(Messages.get().container(Messages.GUI_LIST_INDEXSOURCE_COL_ICON_NAME_HELP_0));
editCol.setWidth("5");
editCol.setAlign(CmsListColumnAlignEnum.ALIGN_LEFT);
editCol.setSorteable(false);
// add dummy icon
CmsListDirectAction editAction = new CmsListDirectAction(LIST_ACTION_NONE);
editAction.setName(Messages.get().container(Messages.GUI_LIST_INDEXSOURCE_COL_ICON_NAME_0));
editAction.setHelpText(Messages.get().container(Messages.GUI_LIST_INDEXSOURCE_COL_ICON_NAME_HELP_0));
editAction.setIconPath(CmsSearchIndexList.LIST_ICON_INDEXSOURCE);
// disable!
editAction.setEnabled(false);
editCol.addDirectAction(editAction);
// add it to the list definition
metadata.addColumn(editCol);
// add column for add action
CmsListColumnDefinition addCol = new CmsListColumnDefinition(LIST_COLUMN_ADDSOURCE);
addCol.setName(Messages.get().container(Messages.GUI_LIST_INDEXSOURCE_COL_ADDSOURCE_NAME_0));
addCol.setHelpText(Messages.get().container(Messages.GUI_LIST_INDEXSOURCE_COL_ADDSOURCE_NAME_HELP_0));
addCol.setWidth("5");
addCol.setAlign(CmsListColumnAlignEnum.ALIGN_LEFT);
addCol.setSorteable(false);
// add add action
CmsListDirectAction addAction = new CmsListDirectAction(LIST_ACTION_ADDSOURCE);
addAction.setName(Messages.get().container(Messages.GUI_LIST_INDEXSOURCE_COL_ADDSOURCE_NAME_0));
addAction.setHelpText(Messages.get().container(Messages.GUI_LIST_SEARCHINDEX_ACTION_ADDSOURCE_NAME_0));
addAction.setIconPath(ICON_ADD);
addCol.addDirectAction(addAction);
// add it to the list definition
metadata.addColumn(addCol);
// add column for name
CmsListColumnDefinition nameCol = new CmsListColumnDefinition(LIST_COLUMN_NAME);
nameCol.setAlign(CmsListColumnAlignEnum.ALIGN_LEFT);
nameCol.setName(Messages.get().container(Messages.GUI_LIST_SEARCHINDEX_COL_NAME_0));
nameCol.setWidth("55%");
// add second add action, see how action id has to be different....
CmsListDefaultAction addAction2 = new CmsListDefaultAction(LIST_COLUMN_ADDSOURCE2);
addAction2.setName(Messages.get().container(Messages.GUI_LIST_INDEXSOURCE_COL_ADDSOURCE_NAME_0));
addAction2.setHelpText(Messages.get().container(Messages.GUI_LIST_SEARCHINDEX_ACTION_ADDSOURCE_NAME_0));
nameCol.addDefaultAction(addAction2);
metadata.addColumn(nameCol);
// add column for analyzer
CmsListColumnDefinition analyzerCol = new CmsListColumnDefinition(LIST_COLUMN_INDEXER);
analyzerCol.setAlign(CmsListColumnAlignEnum.ALIGN_LEFT);
analyzerCol.setName(Messages.get().container(Messages.GUI_LIST_INDEXSOURCE_COL_INDEXER_0));
analyzerCol.setWidth("30%");
metadata.addColumn(analyzerCol);
}
/**
* @see org.opencms.workplace.list.A_CmsListDialog#setIndependentActions(org.opencms.workplace.list.CmsListMetadata)
*/
protected void setIndependentActions(CmsListMetadata metadata) {
// add document types of index source detail help
CmsListItemDetails doctypeDetails = new CmsListItemDetails(LIST_DETAIL_DOCTYPES);
doctypeDetails.setAtColumn(LIST_COLUMN_NAME);
doctypeDetails.setVisible(false);
doctypeDetails.setShowActionName(Messages.get().container(Messages.GUI_LIST_INDEXSOURCE_DETAIL_DOCTYPE_NAME_0));
doctypeDetails.setShowActionHelpText(Messages.get().container(
Messages.GUI_LIST_INDEXSOURCE_DETAIL_DOCTYPE_SHOW_HELP_0));
doctypeDetails.setHideActionName(Messages.get().container(Messages.GUI_LIST_INDEXSOURCE_DETAIL_DOCTYPE_NAME_0));
doctypeDetails.setHideActionHelpText(Messages.get().container(
Messages.GUI_LIST_INDEXSOURCE_DETAIL_DOCTYPE_HIDE_HELP_0));
doctypeDetails.setName(Messages.get().container(Messages.GUI_LIST_INDEXSOURCE_DETAIL_DOCTYPE_NAME_0));
doctypeDetails.setFormatter(new CmsListItemDetailsFormatter(Messages.get().container(
Messages.GUI_LIST_INDEXSOURCE_DETAIL_DOCTYPE_NAME_0)));
metadata.addItemDetails(doctypeDetails);
// add resources of index source detail help
CmsListItemDetails resourceDetails = new CmsListItemDetails(LIST_DETAIL_RESOURCES);
resourceDetails.setAtColumn(LIST_COLUMN_NAME);
resourceDetails.setVisible(false);
resourceDetails.setShowActionName(Messages.get().container(Messages.GUI_LIST_INDEXSOURCE_DETAIL_RESOURCE_NAME_0));
resourceDetails.setShowActionHelpText(Messages.get().container(
Messages.GUI_LIST_INDEXSOURCE_DETAIL_RESOURCE_SHOW_HELP_0));
resourceDetails.setHideActionName(Messages.get().container(Messages.GUI_LIST_INDEXSOURCE_DETAIL_RESOURCE_NAME_0));
resourceDetails.setHideActionHelpText(Messages.get().container(
Messages.GUI_LIST_INDEXSOURCE_DETAIL_RESOURCE_HIDE_HELP_0));
resourceDetails.setName(Messages.get().container(Messages.GUI_LIST_INDEXSOURCE_DETAIL_RESOURCE_NAME_0));
resourceDetails.setFormatter(new CmsListItemDetailsFormatter(Messages.get().container(
Messages.GUI_LIST_INDEXSOURCE_DETAIL_RESOURCE_NAME_0)));
metadata.addItemDetails(resourceDetails);
}
/**
* @see org.opencms.workplace.list.A_CmsListDialog#setMultiActions(org.opencms.workplace.list.CmsListMetadata)
*/
protected void setMultiActions(CmsListMetadata metadata) {
// add add multi action
CmsListMultiAction addMultiAction = new CmsListMultiAction(LIST_MACTION_ADDSOURCE);
addMultiAction.setName(Messages.get().container(Messages.GUI_LIST_SEARCHINDEX_MACTION_ADDSOURCE_NAME_0));
addMultiAction.setHelpText(Messages.get().container(Messages.GUI_LIST_SEARCHINDEX_MACTION_ADDSOURCE_NAME_HELP_0));
addMultiAction.setIconPath(ICON_MULTI_ADD);
metadata.addMultiAction(addMultiAction);
}
/**
* @see org.opencms.workplace.list.A_CmsListDialog#validateParamaters()
*/
protected void validateParamaters() throws Exception {
// test the needed parameters
if (getParamIndexName() == null) {
throw new CmsIllegalStateException(Messages.get().container(
Messages.ERR_SEARCHINDEX_EDIT_MISSING_PARAM_1,
A_CmsEditSearchIndexDialog.PARAM_INDEXNAME));
}
}
/**
* Writes the updated search configuration back to the XML
* configuration file and refreshes the complete list.<p>
*
* @param refresh if true, the list items are refreshed
*/
protected void writeConfiguration(boolean refresh) {
// update the XML configuration
OpenCms.writeConfiguration(CmsSearchConfiguration.class);
if (refresh) {
refreshList();
}
}
/**
* Fills details about document types of the index source into the given item. <p>
*
* @param item the list item to fill
* @param detailId the id for the detail to fill
*
*/
private void fillDetailDocTypes(CmsListItem item, String detailId) {
CmsSearchManager searchManager = OpenCms.getSearchManager();
StringBuffer html = new StringBuffer();
// search for the corresponding CmsSearchIndexSource:
String idxSourceName = (String)item.get(LIST_COLUMN_NAME);
CmsSearchIndexSource idxSource = searchManager.getIndexSource(idxSourceName);
// get the index sources doc types
List docTypes = idxSource.getDocumentTypes();
// output of found index sources
Iterator itDocTypes = docTypes.iterator();
CmsSearchDocumentType docType;
html.append("<ul>\n");
while (itDocTypes.hasNext()) {
// get the instance (instead of plain name) for more detail in future...
docType = searchManager.getDocumentTypeConfig(itDocTypes.next().toString());
// harden against unconfigured doctypes that are refferred to by indexsource nodes
if (docType != null) {
html.append(" <li>\n").append(" ").append(docType.getName()).append("\n");
html.append(" </li>");
}
}
html.append("</ul>\n");
item.set(detailId, html.toString());
}
/**
* Fills details about resource paths of the index source into the given item. <p>
*
* @param item the list item to fill
* @param detailId the id for the detail to fill
*
*/
private void fillDetailResources(CmsListItem item, String detailId) {
CmsSearchManager searchManager = OpenCms.getSearchManager();
StringBuffer html = new StringBuffer();
// search for the corresponding CmsSearchIndexSource:
String idxSourceName = (String)item.get(LIST_COLUMN_NAME);
CmsSearchIndexSource idxSource = searchManager.getIndexSource(idxSourceName);
// get the index sources resource strings
List resources = idxSource.getResourcesNames();
// output of found index sources
Iterator itResources = resources.iterator();
html.append("<ul>\n");
while (itResources.hasNext()) {
html.append(" <li>\n").append(" ").append(itResources.next().toString()).append("\n");
html.append(" </li>");
}
html.append("</ul>\n");
item.set(detailId, html.toString());
}
/**
* Returns the available search indexes of this installation.
*
* @return the available search indexes of this installation
*/
private List searchIndexSources() {
CmsSearchManager manager = OpenCms.getSearchManager();
CmsSearchIndex index = manager.getIndex(getParamIndexName());
List sources = index.getSources();
return sources;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -