Skip to content
Snippets Groups Projects
Commit a8b662f3 authored by piotr.kupczyk@id.ethz.ch's avatar piotr.kupczyk@id.ethz.ch
Browse files

Merge branch 'master' of sissource.ethz.ch:sispub/openbis into master

parents d7be6db8 7da37a47
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
...@@ -111,7 +111,7 @@ public final class AfsClient implements PublicAPI ...@@ -111,7 +111,7 @@ public final class AfsClient implements PublicAPI
public @NonNull Boolean isSessionValid() throws Exception public @NonNull Boolean isSessionValid() throws Exception
{ {
validateSessionToken(); validateSessionToken();
return request("GET", "isSessionValid", Boolean.class,Map.of()); return request("GET", "isSessionValid", Boolean.class, Map.of());
} }
@Override @Override
...@@ -146,11 +146,12 @@ public final class AfsClient implements PublicAPI ...@@ -146,11 +146,12 @@ public final class AfsClient implements PublicAPI
@Override @Override
public @NonNull Boolean write(@NonNull final String owner, @NonNull final String source, public @NonNull Boolean write(@NonNull final String owner, @NonNull final String source,
@NonNull final Long offset, @NonNull final byte[] data, @NonNull final Long offset, @NonNull final byte[] data,
@NonNull final byte[] md5Hash) throws Exception @NonNull final byte[] md5Hash) throws Exception
{ {
validateSessionToken(); validateSessionToken();
return request("POST", "write", Boolean.class, Map.of("owner", owner, "source", source, return request("POST", "write", Boolean.class, Map.of("owner", owner, "source", source,
"offset", offset.toString(), "data", Base64.getEncoder().encodeToString(data), "md5Hash", Base64.getEncoder().encodeToString(md5Hash))); "offset", offset.toString(), "data", Base64.getEncoder().encodeToString(data),
"md5Hash", Base64.getEncoder().encodeToString(md5Hash)));
} }
@Override @Override
...@@ -168,8 +169,9 @@ public final class AfsClient implements PublicAPI ...@@ -168,8 +169,9 @@ public final class AfsClient implements PublicAPI
throws Exception throws Exception
{ {
validateSessionToken(); validateSessionToken();
return request("POST", "copy", Boolean.class, Map.of("sourceOwner", sourceOwner, "source", source, return request("POST", "copy", Boolean.class,
"targetOwner", targetOwner, "target", target)); Map.of("sourceOwner", sourceOwner, "source", source,
"targetOwner", targetOwner, "target", target));
} }
@Override @Override
...@@ -179,8 +181,9 @@ public final class AfsClient implements PublicAPI ...@@ -179,8 +181,9 @@ public final class AfsClient implements PublicAPI
throws Exception throws Exception
{ {
validateSessionToken(); validateSessionToken();
return request("POST", "move", Boolean.class, Map.of("sourceOwner", sourceOwner, "source", source, return request("POST", "move", Boolean.class,
"targetOwner", targetOwner, "target", target)); Map.of("sourceOwner", sourceOwner, "source", source,
"targetOwner", targetOwner, "target", target));
} }
@Override @Override
...@@ -218,9 +221,9 @@ public final class AfsClient implements PublicAPI ...@@ -218,9 +221,9 @@ public final class AfsClient implements PublicAPI
return request("POST", "recover", List.class, Map.of()); return request("POST", "recover", List.class, Map.of());
} }
@SuppressWarnings({ "OptionalGetWithoutIsPresent", "unchecked" }) @SuppressWarnings({ "OptionalGetWithoutIsPresent", "unchecked" })
private <T> T request(@NonNull final String httpMethod, @NonNull final String apiMethod, Class<T> responseType, private <T> T request(@NonNull final String httpMethod, @NonNull final String apiMethod,
Class<T> responseType,
@NonNull Map<String, String> params) @NonNull Map<String, String> params)
throws Exception throws Exception
{ {
...@@ -236,7 +239,7 @@ public final class AfsClient implements PublicAPI ...@@ -236,7 +239,7 @@ public final class AfsClient implements PublicAPI
params.put("sessionToken", sessionToken); params.put("sessionToken", sessionToken);
} }
if(interactiveSessionKey != null) if (interactiveSessionKey != null)
{ {
params.put("interactiveSessionKey", interactiveSessionKey); params.put("interactiveSessionKey", interactiveSessionKey);
} }
...@@ -249,9 +252,7 @@ public final class AfsClient implements PublicAPI ...@@ -249,9 +252,7 @@ public final class AfsClient implements PublicAPI
String parameters = Stream.concat( String parameters = Stream.concat(
Stream.of(new AbstractMap.SimpleImmutableEntry<>("method", apiMethod)), Stream.of(new AbstractMap.SimpleImmutableEntry<>("method", apiMethod)),
params.entrySet().stream()) params.entrySet().stream())
.map(entry-> { .map(entry -> urlEncode(entry.getKey()) + "=" + urlEncode(entry.getValue()))
return urlEncode(entry.getKey()) + "=" + urlEncode(entry.getValue());
})
.reduce((s1, s2) -> s1 + "&" + s2).get(); .reduce((s1, s2) -> s1 + "&" + s2).get();
// //
...@@ -259,7 +260,8 @@ public final class AfsClient implements PublicAPI ...@@ -259,7 +260,8 @@ public final class AfsClient implements PublicAPI
// //
String queryParameters = null; String queryParameters = null;
if (httpMethod.equals("GET")) { if (httpMethod.equals("GET"))
{
queryParameters = parameters; queryParameters = parameters;
} }
...@@ -268,9 +270,11 @@ public final class AfsClient implements PublicAPI ...@@ -268,9 +270,11 @@ public final class AfsClient implements PublicAPI
// //
byte[] body = null; byte[] body = null;
if (httpMethod.equals("POST") || httpMethod.equals("DELETE")) { if (httpMethod.equals("POST") || httpMethod.equals("DELETE"))
{
body = parameters.getBytes(StandardCharsets.UTF_8); body = parameters.getBytes(StandardCharsets.UTF_8);
} else { } else
{
body = new byte[0]; body = new byte[0];
} }
...@@ -325,7 +329,8 @@ public final class AfsClient implements PublicAPI ...@@ -325,7 +329,8 @@ public final class AfsClient implements PublicAPI
} }
} }
public static <T> T getResponseResult(Class<T> responseType, String contentType, byte[] responseBody) public static <T> T getResponseResult(Class<T> responseType, String contentType,
byte[] responseBody)
throws Exception throws Exception
{ {
switch (contentType) switch (contentType)
...@@ -344,12 +349,16 @@ public final class AfsClient implements PublicAPI ...@@ -344,12 +349,16 @@ public final class AfsClient implements PublicAPI
private static <T> T parseFormDataResponse(Class<T> responseType, byte[] responseBody) private static <T> T parseFormDataResponse(Class<T> responseType, byte[] responseBody)
{ {
if (responseType == null) { if (responseType == null)
{
return null; return null;
} else if (responseType == String.class) { } else if (responseType == String.class)
{
return responseType.cast(new String(responseBody, StandardCharsets.UTF_8)); return responseType.cast(new String(responseBody, StandardCharsets.UTF_8));
} else if (responseType == Boolean.class) { } else if (responseType == Boolean.class)
return responseType.cast(Boolean.parseBoolean(new String(responseBody, StandardCharsets.UTF_8))); {
return responseType.cast(
Boolean.parseBoolean(new String(responseBody, StandardCharsets.UTF_8)));
} }
throw new IllegalStateException("Unreachable statement!"); throw new IllegalStateException("Unreachable statement!");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment