/* * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.xwiki.rest.internal.representations.objects; import java.io.IOException; import java.io.InputStream; import java.lang.annotation.Annotation; import java.lang.reflect.Type; import java.util.Enumeration; import javax.inject.Named; import javax.inject.Singleton; import javax.servlet.http.HttpServletRequest; import javax.ws.rs.Consumes; import javax.ws.rs.WebApplicationException; import javax.ws.rs.core.MediaType; import javax.ws.rs.core.MultivaluedMap; import javax.ws.rs.ext.MessageBodyReader; import javax.ws.rs.ext.Provider; import org.restlet.Context; import org.restlet.data.Form; import org.restlet.representation.InputRepresentation; import org.restlet.representation.Representation; import org.xwiki.component.annotation.Component; import org.xwiki.rest.Constants; import org.xwiki.rest.XWikiRestComponent; import org.xwiki.rest.model.jaxb.Object; import org.xwiki.rest.model.jaxb.ObjectFactory; import org.xwiki.rest.model.jaxb.Property; /** * @version $Id: eb221430a3d9481e0ee54b8035a42c9036f32849 $ */ @Component @Named("org.xwiki.rest.internal.representations.objects.FormUrlEncodedObjectReader") @Provider @Consumes(MediaType.APPLICATION_FORM_URLENCODED) @Singleton public class FormUrlEncodedObjectReader implements MessageBodyReader<Object>, XWikiRestComponent { private static final String CLASSNAME_FIELD_NAME = "className"; private static final String PROPERTY_PREFIX = "property#"; @Override public boolean isReadable(Class< ? > type, Type genericType, Annotation[] annotations, MediaType mediaType) { return Object.class.isAssignableFrom(type); } @Override public Object readFrom(Class<Object> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String, String> httpHeaders, InputStream entityStream) throws IOException, WebApplicationException { ObjectFactory objectFactory = new ObjectFactory(); Object object = objectFactory.createObject(); HttpServletRequest httpServletRequest = (HttpServletRequest) Context.getCurrent().getAttributes().get(Constants.HTTP_REQUEST); Representation representation = new InputRepresentation(entityStream, org.restlet.data.MediaType.APPLICATION_WWW_FORM); Form form = new Form(representation); /* * If the form is empty then it might have happened that some filter has invalidated the entity stream. Try to * read data using getParameter() */ if (form.getNames().isEmpty()) { object.setClassName(httpServletRequest.getParameter(CLASSNAME_FIELD_NAME)); Enumeration enumeration = httpServletRequest.getParameterNames(); while (enumeration.hasMoreElements()) { String name = (String) enumeration.nextElement(); if (name.startsWith(PROPERTY_PREFIX)) { Property property = objectFactory.createProperty(); property.setName(name.replace(PROPERTY_PREFIX, "")); property.setValue(httpServletRequest.getParameter(name)); object.getProperties().add(property); } } } else { object.setClassName(form.getFirstValue(CLASSNAME_FIELD_NAME)); for (String name : form.getNames()) { if (name.startsWith(PROPERTY_PREFIX)) { Property property = objectFactory.createProperty(); property.setName(name.replace(PROPERTY_PREFIX, "")); property.setValue(form.getFirstValue(name)); object.getProperties().add(property); } } } return object; } }