/* * 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.tags; import java.io.IOException; import java.io.InputStream; import java.lang.annotation.Annotation; import java.lang.reflect.Type; 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.ObjectFactory; import org.xwiki.rest.model.jaxb.Tag; import org.xwiki.rest.model.jaxb.Tags; /** * @version $Id: 03c17f215720eea5f6d7ec0f60ae5336a213cc1a $ */ @Component @Named("org.xwiki.rest.internal.representations.tags.FormUrlEncodedTagsReader") @Provider @Consumes(MediaType.APPLICATION_FORM_URLENCODED) @Singleton public class FormUrlEncodedTagsReader implements MessageBodyReader<Tags>, XWikiRestComponent { private static final String TAGS_FIELD_NAME = "tags"; private static final String TAG_FIELD_NAME = "tag"; @Override public boolean isReadable(Class< ? > type, Type genericType, Annotation[] annotations, MediaType mediaType) { return Tags.class.isAssignableFrom(type); } @Override public Tags readFrom(Class<Tags> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String, String> httpHeaders, InputStream entityStream) throws IOException, WebApplicationException { ObjectFactory objectFactory = new ObjectFactory(); Tags tags = objectFactory.createTags(); 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()) { String text = httpServletRequest.getParameter(TAGS_FIELD_NAME); if (text != null) { String[] tagNames = text.split(" |,|\\|"); for (String tagName : tagNames) { Tag tag = objectFactory.createTag(); tag.setName(tagName); tags.getTags().add(tag); } } String[] tagNames = httpServletRequest.getParameterValues(TAG_FIELD_NAME); if (tagNames != null) { for (String tagName : tagNames) { Tag tag = objectFactory.createTag(); tag.setName(tagName); tags.getTags().add(tag); } } } else { String text = form.getFirstValue(TAGS_FIELD_NAME); if (text != null) { String[] tagNames = text.split(" |,|\\|"); for (String tagName : tagNames) { Tag tag = objectFactory.createTag(); tag.setName(tagName); tags.getTags().add(tag); } } for (String tagName : form.getValuesArray(TAG_FIELD_NAME)) { Tag tag = objectFactory.createTag(); tag.setName(tagName); tags.getTags().add(tag); } } return tags; } }