|
@@ -1,7 +1,6 @@
|
|
|
package org.cryptomator.ui.keyloading.hub;
|
|
|
|
|
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
|
|
-import io.github.coffeelibs.tinyoauth2client.AuthFlow;
|
|
|
import io.github.coffeelibs.tinyoauth2client.TinyOAuth2;
|
|
|
import io.github.coffeelibs.tinyoauth2client.http.response.Response;
|
|
|
|
|
@@ -23,7 +22,7 @@ class AuthFlowTask extends Task<String> {
|
|
|
/**
|
|
|
* Spawns a server and waits for the redirectUri to be called.
|
|
|
*
|
|
|
- * @param hubConfig Configuration object holding parameters required by {@link AuthFlow}
|
|
|
+ * @param hubConfig Configuration object holding parameters required by {@link io.github.coffeelibs.tinyoauth2client.AuthorizationCodeGrant}
|
|
|
* @param redirectUriConsumer A callback invoked with the redirectUri, as soon as the server has started
|
|
|
*/
|
|
|
public AuthFlowTask(HubConfig hubConfig, AuthFlowContext authFlowContext, Consumer<URI> redirectUriConsumer) {
|
|
@@ -37,10 +36,10 @@ class AuthFlowTask extends Task<String> {
|
|
|
var response = TinyOAuth2.client(hubConfig.clientId) //
|
|
|
.withTokenEndpoint(URI.create(hubConfig.tokenEndpoint)) //
|
|
|
.withRequestTimeout(Duration.ofSeconds(10)) //
|
|
|
- .authFlow(URI.create(hubConfig.authEndpoint)) //
|
|
|
+ .authorizationCodeGrant(URI.create(hubConfig.authEndpoint)) //
|
|
|
.setSuccessResponse(Response.redirect(URI.create(hubConfig.authSuccessUrl + "&device=" + authFlowContext.deviceId()))) //
|
|
|
.setErrorResponse(Response.redirect(URI.create(hubConfig.authErrorUrl + "&device=" + authFlowContext.deviceId()))) //
|
|
|
- .authorize(redirectUriConsumer);
|
|
|
+ .authorize(HttpClient.newHttpClient(), redirectUriConsumer);
|
|
|
if (response.statusCode() != 200) {
|
|
|
throw new NotOkResponseException("Authorization returned status code " + response.statusCode());
|
|
|
}
|