forked from D-Net/dnet-hadoop
print logs
This commit is contained in:
parent
fcabee9242
commit
743d948d1c
|
@ -2,6 +2,7 @@
|
||||||
package eu.dnetlib.dhp.oa.graph.dump.gcat;
|
package eu.dnetlib.dhp.oa.graph.dump.gcat;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
import java.net.URI;
|
||||||
import java.net.URISyntaxException;
|
import java.net.URISyntaxException;
|
||||||
import java.nio.charset.StandardCharsets;
|
import java.nio.charset.StandardCharsets;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
@ -53,7 +54,9 @@ public class GCatAPIClient {
|
||||||
public int publish(final String jsonMetadata) throws IOException, URISyntaxException {
|
public int publish(final String jsonMetadata) throws IOException, URISyntaxException {
|
||||||
try (CloseableHttpClient client = HttpClients.createDefault()) {
|
try (CloseableHttpClient client = HttpClients.createDefault()) {
|
||||||
URIBuilder builder = new URIBuilder(getGcatBaseURL() + itemPath);
|
URIBuilder builder = new URIBuilder(getGcatBaseURL() + itemPath);
|
||||||
HttpPost post = new HttpPost(builder.build());
|
URI uri = builder.build();
|
||||||
|
System.out.println(uri.toString());
|
||||||
|
HttpPost post = new HttpPost(uri);
|
||||||
post.setHeader("gcube-token", getApplicationToken());
|
post.setHeader("gcube-token", getApplicationToken());
|
||||||
post.addHeader("Content-Type", "application/json");
|
post.addHeader("Content-Type", "application/json");
|
||||||
post.addHeader("Accept", "application/json");
|
post.addHeader("Accept", "application/json");
|
||||||
|
@ -62,6 +65,7 @@ public class GCatAPIClient {
|
||||||
HttpResponse response = client.execute(post);
|
HttpResponse response = client.execute(post);
|
||||||
if (log.isDebugEnabled()) {
|
if (log.isDebugEnabled()) {
|
||||||
log.debug(response.getStatusLine());
|
log.debug(response.getStatusLine());
|
||||||
|
System.out.println(response.getStatusLine());
|
||||||
log.debug(IOUtils.toString(response.getEntity().getContent()));
|
log.debug(IOUtils.toString(response.getEntity().getContent()));
|
||||||
}
|
}
|
||||||
return response.getStatusLine().getStatusCode();
|
return response.getStatusLine().getStatusCode();
|
||||||
|
@ -82,7 +86,9 @@ public class GCatAPIClient {
|
||||||
URIBuilder builder = new URIBuilder(getGcatBaseURL() + itemPath)
|
URIBuilder builder = new URIBuilder(getGcatBaseURL() + itemPath)
|
||||||
.addParameter("offset", String.valueOf(offset))
|
.addParameter("offset", String.valueOf(offset))
|
||||||
.addParameter("limit", String.valueOf(limit));
|
.addParameter("limit", String.valueOf(limit));
|
||||||
HttpGet get = new HttpGet(builder.build());
|
URI uri = builder.build();
|
||||||
|
System.out.println(uri.toString());
|
||||||
|
HttpGet get = new HttpGet(uri);
|
||||||
get.setHeader("gcube-token", getApplicationToken());
|
get.setHeader("gcube-token", getApplicationToken());
|
||||||
get.addHeader("Content-Type", "application/json");
|
get.addHeader("Content-Type", "application/json");
|
||||||
get.addHeader("Accept", "application/json");
|
get.addHeader("Accept", "application/json");
|
||||||
|
@ -112,7 +118,9 @@ public class GCatAPIClient {
|
||||||
try (CloseableHttpClient client = HttpClients.createDefault()) {
|
try (CloseableHttpClient client = HttpClients.createDefault()) {
|
||||||
URIBuilder builder = new URIBuilder(getGcatBaseURL() + itemPath + "/" + resCatName)
|
URIBuilder builder = new URIBuilder(getGcatBaseURL() + itemPath + "/" + resCatName)
|
||||||
.addParameter("purge", "true");
|
.addParameter("purge", "true");
|
||||||
HttpDelete del = new HttpDelete(builder.build());
|
URI uri = builder.build();
|
||||||
|
System.out.println(uri.toString());
|
||||||
|
HttpDelete del = new HttpDelete(uri);
|
||||||
del.setHeader("gcube-token", getApplicationToken());
|
del.setHeader("gcube-token", getApplicationToken());
|
||||||
del.addHeader("Content-Type", "application/json");
|
del.addHeader("Content-Type", "application/json");
|
||||||
del.addHeader("Accept", "application/json");
|
del.addHeader("Accept", "application/json");
|
||||||
|
|
Loading…
Reference in New Issue