/******************************************************************************* * Copyright (c) 2010 Philipp Kursawe. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Philipp Kursawe (phil.kursawe@gmail.com) - initial API and implementation ******************************************************************************/ package copyto.target.http.core.internal.responses; import java.io.IOException; import java.io.InputStreamReader; import java.net.URL; import java.util.Map; import org.apache.commons.httpclient.HttpMethod; import org.eclipse.core.runtime.IAdapterManager; import org.eclipse.core.runtime.Platform; import org.mortbay.util.ajax.JSON; import copyto.target.http.core.ResponseHandler; import copyto.target.http.core.internal.json.MapResponse; import copyto.target.http.core.internal.json.Response; /** * This tries to convert the JSON result into an URL by asking for an adapter * that can adapt {@link Response} to {@link URL}. * * @author <a href="mailto:phil.kursawe@gmail.com">Philipp Kursawe</a> * */ public class JsonResponseHandler implements ResponseHandler { private final IAdapterManager adapterManager = Platform.getAdapterManager(); public URL getLocation(final HttpMethod method) throws Exception { if (200 == method.getStatusCode()) { final Object result = JSON.parse(new InputStreamReader(method .getResponseBodyAsStream()), true); if (result != null) { Response response = null; if (result instanceof Map<?, ?>) { response = new MapResponse() { public Map<?, ?> getMap() { return (Map<?, ?>) result; } }; } if (response != null) { final URL url = (URL) this.adapterManager.loadAdapter( response, URL.class.getName()); if (url != null) { return url; } } } } throw new IOException("Response was not a proper JSON response"); //$NON-NLS-1$ } }