All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
net.anotheria.anosite.gen.assitedata.action.ExportNaviItemsAction Maven / Gradle / Ivy
/**
********************************************************************************
*** ExportNaviItemsAction.java ***
*** generated by AnoSiteGenerator (ASG), Version: 3.2.2 ***
*** Copyright (C) 2005 - 2023 Anotheria.net, www.anotheria.net ***
*** All Rights Reserved. ***
********************************************************************************
*** Don't edit this code, if you aren't sure ***
*** that you do exactly know what you are doing! ***
*** It's better to invest time in the generator, as into the generated code. ***
********************************************************************************
*/
package net.anotheria.anosite.gen.assitedata.action;
import java.util.List;
import java.util.ArrayList;
import net.anotheria.asg.util.filter.DocumentFilter;
import net.anotheria.util.xml.XMLNode;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import net.anotheria.maf.action.ActionCommand;
import net.anotheria.maf.action.ActionMapping;
import net.anotheria.anosite.gen.assitedata.data.NaviItem;
import net.anotheria.anosite.gen.assitedata.data.NaviItemSortType;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.slf4j.MarkerFactory;
import net.anotheria.util.sorter.Sorter;
import net.anotheria.util.sorter.QuickSorter;
import net.anotheria.anosite.gen.assitedata.bean.NaviItemListItemBeanSortType;
public class ExportNaviItemsAction extends BaseNaviItemAction{
public static final String SA_SORT_TYPE = SA_SORT_TYPE_PREFIX+"NaviItem";
public static final String SA_FILTER = SA_FILTER_PREFIX+"NaviItem";
private static final List ITEMS_ON_PAGE_SELECTOR = java.util.Arrays.asList(new String[]{"5","10","20","25","50","100","500","1000"});
private static final Logger log = LoggerFactory.getLogger(ExportNaviItemsAction.class);
private Sorter sorter;
private DocumentFilter nameFilterAZ;
private DocumentFilter AnyFilterMissingTranslation;
public ExportNaviItemsAction(){
super();
sorter = new QuickSorter();
try{
nameFilterAZ = (DocumentFilter) Class.forName("net.anotheria.asg.util.filter.AZDocumentFilter").newInstance();
AnyFilterMissingTranslation = (DocumentFilter) Class.forName("net.anotheria.asg.util.filter.MissingAnyTranslationFilter").newInstance();
} catch(Exception e){
log.error(MarkerFactory.getMarker("FATAL"), "Couldn't instantiate filter:", e);
}
}
public ActionCommand anoDocExecute(ActionMapping mapping, HttpServletRequest req, HttpServletResponse res) throws Exception{
String filterParameter0 = "";
try{
filterParameter0 = getStringParameter(req, "pFilter0");
addBeanToSession(req, SA_FILTER+"0", filterParameter0);
}catch(Exception ignored){
// no filter parameter given, tring to check in the session.
filterParameter0 = (String)getBeanFromSession(req, SA_FILTER+"0");
if (filterParameter0==null)
filterParameter0 = "";
}
req.setAttribute("currentFilterParameter0", filterParameter0);
String filterParameter1 = "";
try{
filterParameter1 = getStringParameter(req, "pFilter1");
addBeanToSession(req, SA_FILTER+"1", filterParameter1);
}catch(Exception ignored){
// no filter parameter given, tring to check in the session.
filterParameter1 = (String)getBeanFromSession(req, SA_FILTER+"1");
if (filterParameter1==null)
filterParameter1 = "";
}
req.setAttribute("currentFilterParameter1", filterParameter1);
int sortMethod = NaviItemListItemBeanSortType.SORT_BY_DEFAULT;
boolean sortOrder = NaviItemListItemBeanSortType.ASC;
boolean sortParamSet = false;
try{
sortMethod = getIntParameter(req, PARAM_SORT_TYPE);
sortParamSet = true;
}catch(Exception ignored){}
try{
String sortMethodName = getStringParameter(req, PARAM_SORT_TYPE_NAME);
sortMethod = NaviItemListItemBeanSortType.name2method(sortMethodName);
sortParamSet = true;
}catch(Exception ignored){}
try{
sortOrder = getStringParameter(req, PARAM_SORT_ORDER).equals("ASC") ?
NaviItemListItemBeanSortType.ASC : NaviItemListItemBeanSortType.DESC;
}catch(Exception ignored){}
NaviItemListItemBeanSortType sessionSortType = null;
NaviItemSortType sortType = null;
if (sortParamSet){
sessionSortType = new NaviItemListItemBeanSortType(sortMethod, sortOrder);
sortType = new NaviItemSortType(sortMethod, sortOrder);
addBeanToSession(req, SA_SORT_TYPE, sessionSortType);
}else{
sessionSortType = (NaviItemListItemBeanSortType)getBeanFromSession(req, SA_SORT_TYPE);
sortType = sessionSortType == null ? new NaviItemSortType(sortMethod, sortOrder) : new NaviItemSortType(sessionSortType.getSortBy(), sessionSortType.getSortOrder());
sessionSortType = sessionSortType == null ? new NaviItemListItemBeanSortType(sortMethod, sortOrder) : sessionSortType;
}
req.setAttribute("currentSortCode", sessionSortType.getMethodAndOrderCode());
List _unfiltered_naviitems = getASSiteDataService().getNaviItems();
List naviitems = new ArrayList();
for (NaviItem element : _unfiltered_naviitems ){
boolean mayPass = true;
mayPass = mayPass && (nameFilterAZ.mayPass( element, "name", filterParameter0));
mayPass = mayPass && (AnyFilterMissingTranslation.mayPass( element, "Any", filterParameter1));
if (mayPass)
naviitems.add(element);
}
naviitems = sorter.sort(naviitems, sortType);
addBeanToRequest(req, "naviitems", naviitems);
XMLNode beans = getASSiteDataService().exportNaviItemsToXML(naviitems);
/**
* for XML node - page
*/
addBeanToRequest(req, "naviitemsXML", beans);
/**
* for CSV - page
*/
addBeanToRequest(req, "naviitemsCSV", naviitems);
addBeanToRequest(req, "nameFilterAZ", nameFilterAZ.getTriggerer(""));
addBeanToRequest(req, "AnyFilterMissingTranslation", AnyFilterMissingTranslation.getTriggerer(""));
return mapping.success();
}
}