use of io.servicetalk.http.api.HttpResponseStatus.StatusClass.REDIRECTION_3XX in project servicetalk by apple.
the class ManualRedirectClient method main.
public static void main(String... args) throws Exception {
try (HttpClient secureClient = HttpClients.forSingleAddress("localhost", SECURE_SERVER_PORT).sslConfig(new ClientSslConfigBuilder(DefaultTestCerts::loadServerCAPem).build()).build()) {
try (HttpClient client = HttpClients.forSingleAddress("localhost", NON_SECURE_SERVER_PORT).build()) {
System.out.println("- Redirect of a GET request with a custom header:");
HttpRequest originalGet = client.get("/non-relative").addHeader(CUSTOM_HEADER, "value");
client.request(originalGet).flatMap(response -> {
if (response.status().statusClass() == REDIRECTION_3XX) {
CharSequence location = response.headers().get(LOCATION);
HttpClient redirectClient = lookupClient(location, client, secureClient);
return redirectClient.request(redirectClient.newRequest(originalGet.method(), location.toString()).addHeader(CUSTOM_HEADER, originalGet.headers().get(CUSTOM_HEADER)));
}
// Decided not to follow redirect, return the original response or an error:
return succeeded(response);
}).whenOnSuccess(resp -> {
System.out.println(resp.toString((name, value) -> value));
System.out.println(resp.payloadBody(textSerializerAscii()));
System.out.println();
}).toFuture().get();
System.out.println("- Redirect of a POST request with a payload body:");
HttpRequest originalPost = client.post("/non-relative").payloadBody(client.executionContext().bufferAllocator().fromAscii("some_content"));
client.request(originalPost).flatMap(response -> {
if (response.status().statusClass() == REDIRECTION_3XX) {
CharSequence location = response.headers().get(LOCATION);
HttpClient redirectClient = lookupClient(location, client, secureClient);
return redirectClient.request(redirectClient.newRequest(originalPost.method(), location.toString()).payloadBody(originalPost.payloadBody()));
}
// Decided not to follow redirect, return the original response or an error:
return succeeded(response);
}).whenOnSuccess(resp -> {
System.out.println(resp.toString((name, value) -> value));
System.out.println(resp.payloadBody(textSerializerAscii()));
}).toFuture().get();
}
}
}
Aggregations