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.
org.vfny.geoserver.action.data.StylesSelectAction Maven / Gradle / Ivy
/* Copyright (c) 2001 - 2007 TOPP - www.openplans.org. All rights reserved.
* This code is licensed under the GPL 2.0 license, availible at the root
* application directory.
*/
package org.vfny.geoserver.action.data;
import org.apache.struts.Globals;
import org.apache.struts.action.ActionError;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.util.MessageResources;
import org.vfny.geoserver.action.ConfigAction;
import org.vfny.geoserver.action.HTMLEncoder;
import org.vfny.geoserver.config.CoverageConfig;
import org.vfny.geoserver.config.CoverageStoreConfig;
import org.vfny.geoserver.config.DataConfig;
import org.vfny.geoserver.config.DataStoreConfig;
import org.vfny.geoserver.config.FeatureTypeConfig;
import org.vfny.geoserver.config.StyleConfig;
import org.vfny.geoserver.form.data.StylesSelectForm;
import org.vfny.geoserver.global.UserContainer;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
* Edit selected style
*
* @author jgarnett, Refractions Research, Inc.
* @author $Author: dmzwiers $ (last modification)
* @version $Id: StylesSelectAction.java 8470 2008-02-27 10:51:54Z aaime $
*/
public class StylesSelectAction extends ConfigAction {
public ActionForward execute(ActionMapping mapping, ActionForm form, UserContainer user,
HttpServletRequest request, HttpServletResponse response)
throws IOException, ServletException {
final StylesSelectForm selectForm = (StylesSelectForm) form;
final String action = selectForm.getAction();
String styleId = selectForm.getSelectedStyle();
if (styleId.endsWith("*")) {
styleId = styleId.substring(0, styleId.lastIndexOf("*"));
}
Locale locale = (Locale) request.getLocale();
DataConfig config = getDataConfig();
MessageResources messages = getResources(request);
// Need locale wording for edit and delete
final String EDIT = HTMLEncoder.decode(messages.getMessage(locale, "label.edit"));
final String DELETE = HTMLEncoder.decode(messages.getMessage(locale, "label.delete"));
final String DEFAULT = HTMLEncoder.decode(messages.getMessage(locale, "label.default"));
StyleConfig style = config.getStyle(styleId);
if (style == null) {
ActionErrors errors = new ActionErrors();
errors.add("selectedStyle", new ActionError("error.style.invalid", styleId));
request.setAttribute(Globals.ERROR_KEY, errors);
return mapping.findForward("config.data.style");
}
// Something is selected lets do the requested action
//
if (action.equals(DELETE)) {
// check if the style has any users
List userNames = getStyleUsers(config, styleId);
if (userNames.size() > 0) {
doFileExistsError(styleId, userNames, request);
return mapping.findForward("config.data.style");
}
config.removeStyle(styleId);
getApplicationState().notifyConfigChanged();
selectForm.setSelectedStyle(null);
selectForm.reset(mapping, request);
return mapping.findForward("config.data.style");
}
if (action.equals(DEFAULT)) {
Map m = config.getStyles();
Iterator i = m.values().iterator();
while (i.hasNext()) {
StyleConfig sc = (StyleConfig) i.next();
if (sc.isDefault()) {
if ((sc.getId() != null) && !sc.getId().equals(styleId)) {
sc.setDefault(false);
getApplicationState().notifyConfigChanged();
}
} else {
if ((sc.getId() != null) && sc.getId().equals(styleId)) {
sc.setDefault(true);
getApplicationState().notifyConfigChanged();
}
}
}
selectForm.setSelectedStyle(null);
selectForm.reset(mapping, request);
return mapping.findForward("config.data.style");
}
if (action.equals(EDIT)) {
user.setStyle(new StyleConfig(style));
return mapping.findForward("config.data.style.editor");
}
ActionErrors errors = new ActionErrors();
errors.add("submit", new ActionError("error.action.invalid", action));
request.setAttribute(Globals.ERROR_KEY, errors);
return mapping.findForward("config.data.style");
}
/**
* Returns a list of strings, with the name of the layers using the style as the default one
* @param config
* @param styleId
* @return
*/
private List getStyleUsers(DataConfig config, String styleId) {
List results = new ArrayList();
for (Iterator it = config.getFeaturesTypes().values().iterator(); it.hasNext();) {
FeatureTypeConfig ft = (FeatureTypeConfig) it.next();
if (styleId.equals(ft.getDefaultStyle()) || ft.getStyles().contains(styleId)) {
DataStoreConfig ds = config.getDataStore(ft.getDataStoreId());
// misconfigured data stores are not included int the map, ouff...
if (ds != null) {
results.add(ds.getNameSpaceId() + ":" + ft.getName());
} else {
results.add(ft.getName());
}
}
}
for (Iterator it = config.getCoverages().values().iterator(); it.hasNext();) {
CoverageConfig cc = (CoverageConfig) it.next();
if (styleId.equals(cc.getDefaultStyle()) || cc.getStyles().contains(styleId)) {
CoverageStoreConfig cs = config.getDataFormat(cc.getFormatId());
results.add(cs.getNameSpaceId() + ":" + cc.getName());
}
}
return results;
}
/*
* reports an error for an attempt to upload an sld file that is already
* in the system.*/
private void doFileExistsError(String styleId, List styleUsers, HttpServletRequest request) {
StringBuffer sb = new StringBuffer();
for (Iterator it = styleUsers.iterator(); it.hasNext();) {
String user = (String) it.next();
sb.append(user);
if (it.hasNext()) {
sb.append(", ");
}
}
ActionErrors errors = new ActionErrors();
errors.add(ActionErrors.GLOBAL_ERROR,
new ActionError("error.style.sldInUse", new String[] { styleId, sb.toString() }));
saveErrors(request, errors);
}
}