All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.anotheria.anosite.gen.assitedata.action.MultiOpPageTemplatesLocalizationsAction Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
/**
 ********************************************************************************
 *** MultiOpPageTemplatesLocalizationsAction.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 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.PageTemplateFactory;
import net.anotheria.anosite.gen.assitedata.data.PageTemplate;
import net.anotheria.anosite.gen.assitedata.bean.LocalizationsElementFB;
import net.anotheria.asg.util.bean.PopulateUtility;
import net.anotheria.anosite.gen.assitedata.bean.LocalizationsQuickAddFB;
import net.anotheria.anosite.gen.asresourcedata.data.LocalizationBundle;
import net.anotheria.anosite.gen.asresourcedata.data.LocalizationBundleSortType;
import net.anotheria.webutils.bean.LabelValueBean;
import net.anotheria.anodoc.data.NoSuchDocumentException;
import net.anotheria.util.StringUtils;
import net.anotheria.asg.exception.ASGRuntimeException;

public class MultiOpPageTemplatesLocalizationsAction extends BasePageTemplateAction{

	// Generated by: class net.anotheria.asg.generator.view.action.ModuleActionsGenerator.generateContainerMultiOpAction

	public ActionCommand anoDocExecute(ActionMapping mapping, HttpServletRequest req, HttpServletResponse res) throws Exception{
		String path = stripPath(mapping.getPath());
		if (path.equals("assitedataPageTemplateLocalizationsShow"))
			return assitedataPageTemplateLocalizationsShow(mapping, req, res);
		if (path.equals("assitedataPageTemplateLocalizationsAdd"))
			return assitedataPageTemplateLocalizationsAdd(mapping, req, res);
		if (path.equals("assitedataPageTemplateLocalizationsDelete"))
			return assitedataPageTemplateLocalizationsDelete(mapping, req, res);
		if (path.equals("assitedataPageTemplateLocalizationsMove"))
			return assitedataPageTemplateLocalizationsMove(mapping, req, res);
		if (path.equals("assitedataPageTemplateLocalizationsQuickAdd"))
			return assitedataPageTemplateLocalizationsQuickAdd(mapping, req, res);
		throw new IllegalArgumentException("Unknown path: "+path);
	}

	// Generated by: class net.anotheria.asg.generator.view.action.ModuleActionsGenerator.generateListShowActionMethod

	public ActionCommand assitedataPageTemplateLocalizationsShow(ActionMapping mapping, HttpServletRequest req, HttpServletResponse res) throws Exception{
		String id = getStringParameter(req, "ownerId");
		PageTemplate pagetemplate = getASSiteDataService().getPageTemplate(id);
		addBeanToRequest(req, "ownerId", id);
		checkPageTemplates(pagetemplate, req);

		LocalizationsElementFB form = new LocalizationsElementFB() ;
		form.setPosition(-1);
		form.setOwnerId(pagetemplate.getId());
		addBeanToRequest(req, "assitedataPageTemplateLocalizationsElementForm", form);

		LocalizationsQuickAddFB quickAddForm = new LocalizationsQuickAddFB() ;
		quickAddForm.setOwnerId(pagetemplate.getId());
		addBeanToRequest(req, "assitedataPageTemplateLocalizationsQuickAddForm", quickAddForm);


		//link localization to ASResourceData.LocalizationBundle
		List localizationbundles = getASResourceDataService().getLocalizationBundles(new LocalizationBundleSortType(LocalizationBundleSortType.SORT_BY_NAME));
		List localizationbundlesValues = new ArrayList(localizationbundles.size());
		for (int i=0; i beans = new ArrayList(size);
		for (int i=0; i targetList = pagetemplate.getLocalizations();
		String toSwap = targetList.remove(position);
		targetList.add(0, toSwap);
		pagetemplate.setLocalizations(targetList);
		getASSiteDataService().updatePageTemplate(pagetemplate);
	}

	private void moveDown(PageTemplate pagetemplate, int position) throws ASGRuntimeException {
		if (position targetList = pagetemplate.getLocalizations();
		String toSwap = targetList.remove(position);
		targetList.add(toSwap);
		pagetemplate.setLocalizations(targetList);
		getASSiteDataService().updatePageTemplate(pagetemplate);
	}

	// Generated by: class net.anotheria.asg.generator.view.action.ModuleActionsGenerator.generateListAddRowActionMethod

	public ActionCommand assitedataPageTemplateLocalizationsAdd(ActionMapping mapping, HttpServletRequest req, HttpServletResponse res) throws Exception{
		LocalizationsElementFB form = new LocalizationsElementFB();
		PopulateUtility.populate(form, req);
		String id = form.getOwnerId();
		PageTemplate pagetemplate;
		pagetemplate = getASSiteDataService().getPageTemplate(id);
		canUpdatePageTemplates(pagetemplate, req);
		checkPageTemplates(pagetemplate, req);
		pagetemplate.addLocalizationsElement(form.getLocalization());
		getASSiteDataService().updatePageTemplate(pagetemplate);
		return assitedataPageTemplateLocalizationsShow(mapping, req, res);
	}

	// Generated by: class net.anotheria.asg.generator.view.action.ModuleActionsGenerator.generateListQuickAddActionMethod

	public ActionCommand assitedataPageTemplateLocalizationsQuickAdd(ActionMapping mapping, HttpServletRequest req, HttpServletResponse res) throws Exception{
		LocalizationsQuickAddFB form = new LocalizationsQuickAddFB();
		PopulateUtility.populate(form, req);
		String id = form.getOwnerId();
		PageTemplate pagetemplate;
		pagetemplate = getASSiteDataService().getPageTemplate(id);
		canUpdatePageTemplates(pagetemplate, req);
		checkPageTemplates(pagetemplate, req);
		String paramIdsToAdd = form.getQuickAddIds();

		String idParameters[] = StringUtils.tokenize(paramIdsToAdd, ',');
		for (String anIdParam : idParameters){
			String ids[] = StringUtils.tokenize(anIdParam, '-');
			for (int i=Integer.parseInt(ids[0]); i<=Integer.parseInt(ids[ids.length-1]); i++){
				pagetemplate.addLocalizationsElement(""+i);
			}
		}
		getASSiteDataService().updatePageTemplate(pagetemplate);
		return assitedataPageTemplateLocalizationsShow(mapping, req, res);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy