X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fjavascript%2Fweb%2FWebResource.java;h=c6cd0de288c7aa4894288f2cf0cb1f5b7655d9fd;hb=69b246bd6330f05271ca15a440c8442b03b7db6c;hp=299c727c9cdf41fb54d95b572301a39f5b735800;hpb=5a256ef0ca648a8f4722da20475cbd01655d9de4;p=jalview.git diff --git a/src/jalview/javascript/web/WebResource.java b/src/jalview/javascript/web/WebResource.java index 299c727..c6cd0de 100644 --- a/src/jalview/javascript/web/WebResource.java +++ b/src/jalview/javascript/web/WebResource.java @@ -1,26 +1,50 @@ +/* + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors + * + * This file is part of Jalview. + * + * Jalview is free software: you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * Jalview 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Jalview. If not, see . + * The Jalview Authors are detailed in the 'AUTHORS' file. + */ package jalview.javascript.web; +import jalview.util.Platform; + +import java.net.MalformedURLException; import java.net.URI; import java.net.URISyntaxException; +import java.net.URL; +/* + * A JavaScript-only proxy for com.sun.jersey.api.client.WebResource + * + */ public class WebResource { private String endpoint, params = ""; - - public WebResource(String endpoint) { + + public WebResource(String endpoint) + { this.endpoint = endpoint; } - public WebResource queryParam(String key, String value) { - params += (params == "" ? "?" : "&") + key + "="; - /** - * @j2sNative - * value = encodeURIComonent(value); - */ - params += value; + params += (params == "" ? "?" : "&") + key + "=" + + Platform.encodeURI(value); return this; } @@ -36,33 +60,40 @@ public class WebResource } } - public Builder accept(String encoding) + public Builder accept(String... encoding) { - return new Builder(getURI(), encoding); + return new Builder(getURI(), encoding); } - - - public static class Builder { - private URI uri; - private String encoding; - public Builder(URI uri, String encoding) + public static class Builder + { + private URI uri; + + private String[] encoding; + + public Builder(URI uri, String... encoding) { - this.uri = uri; - this.encoding = encoding; // application/json - - // TODO Auto-generated constructor stub + this.uri = uri; + this.encoding = encoding; // application/json } - public ClientResponse get(Class c) { - String data = uri.toString(); - // c will be ClientResponse - data = /** @j2sNative swingjs.JSUtil.getFileAsString$S(data) || */ null; - return new ClientResponse(data, encoding); + /** + * Get the response + * + * @param c + * must be ClientResponse + * @return + */ + public ClientResponse get(Class c) + { + try + { + return new ClientResponse(new URL(uri.toString()), encoding); + } catch (MalformedURLException e) + { + return null; } + } } - - - }