/* Copyright 2011, 2012 predic8 GmbH, www.predic8.com Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package com.predic8.membrane.core.interceptor.formvalidation; import java.util.ArrayList; import java.util.List; import java.util.Map; import java.util.regex.Pattern; import javax.xml.stream.XMLStreamException; import javax.xml.stream.XMLStreamReader; import javax.xml.stream.XMLStreamWriter; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Required; import com.predic8.membrane.annot.MCAttribute; import com.predic8.membrane.annot.MCChildElement; import com.predic8.membrane.annot.MCElement; import com.predic8.membrane.core.config.AbstractXmlElement; import com.predic8.membrane.core.exchange.Exchange; import com.predic8.membrane.core.http.Response; import com.predic8.membrane.core.interceptor.AbstractInterceptor; import com.predic8.membrane.core.interceptor.Outcome; import com.predic8.membrane.core.util.URLParamUtil; /** * @description Using the formValidation interceptor you can validate the input of HTML forms. * @topic 4. Interceptors/Features */ @MCElement(name="formValidation") public class FormValidationInterceptor extends AbstractInterceptor { @MCElement(name="field", topLevel=false, id="formValidation-field") public static class Field extends AbstractXmlElement { public String name; public String regex; private Pattern pattern; public boolean matchesSubstring(String input) { return pattern.matcher(input).matches(); } @Override protected void parseAttributes(XMLStreamReader token) throws Exception { name = token.getAttributeValue("", "name"); setRegex(token.getAttributeValue("", "regex")); } @Override public void write(XMLStreamWriter out) throws XMLStreamException { out.writeStartElement("field"); out.writeAttribute("regex", regex); out.writeAttribute("name", name); out.writeEndElement(); } public String getName() { return name; } /** * @description Name of the form parameter. * @example age */ @Required @MCAttribute public void setName(String name) { this.name = name; } public String getRegex() { return regex; } /** * @description Java Regular expression * @example \d+ */ @Required @MCAttribute public void setRegex(String regex) { this.regex = regex; pattern = Pattern.compile(regex); } } private static Logger log = LoggerFactory.getLogger(FormValidationInterceptor.class .getName()); private List<Field> fields = new ArrayList<Field>(); public FormValidationInterceptor() { name = "FormValidation"; setFlow(Flow.Set.REQUEST); } @Override public Outcome handleRequest(Exchange exc) throws Exception { logMappings(); Map<String, String> propMap = URLParamUtil.getParams(router.getUriFactory(), exc); for (Field f : fields) { if ( !propMap.containsKey(f.name) ) continue; if ( !f.matchesSubstring(propMap.get(f.name)) ) { setErrorResponse(exc, propMap, f); return Outcome.ABORT; } } return Outcome.CONTINUE; } private void setErrorResponse(Exchange exc, Map<String, String> propMap, Field f) { exc.setResponse(Response.badRequest( "Parameter "+f.name+"="+propMap.get(f.name)+" didn't match "+f.regex+"").build()); } private void logMappings() { for (Field m : fields) { log.debug("[regex:"+m.regex+"],[name:"+m.name+"]"); } } public List<Field> getFields() { return fields; } /** * @description Specifies the name of the parameter and the regex to match against. */ @Required @MCChildElement public void setFields(List<Field> fields) { this.fields = fields; } }