Skip to content

Instantly share code, notes, and snippets.

@beckje01
Created May 13, 2015 15:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save beckje01/c245f1ebf9aab022b81d to your computer and use it in GitHub Desktop.
Save beckje01/c245f1ebf9aab022b81d to your computer and use it in GitHub Desktop.
OAuth2 Vertx 3 Bearer Token start
import io.vertx.core.http.HttpHeaders
import io.vertx.core.http.HttpServerRequest
import io.vertx.core.json.JsonObject
import io.vertx.ext.apex.RoutingContext
import io.vertx.ext.apex.handler.impl.AuthHandlerImpl
import io.vertx.ext.auth.AuthProvider;
class BearerAuthHandler extends AuthHandlerImpl {
public BearerAuthHandler(AuthProvider authProvider) {
super(authProvider);
}
@Override
void handle(RoutingContext context) {
HttpServerRequest request = context.request()
String authorization = request.headers().get(HttpHeaders.AUTHORIZATION)
if (authorization == null) {
context.fail(401)
} else {
String token
String scheme
try {
String[] parts = authorization.split(" ")
scheme = parts[0]
token = parts[1]
} catch (ArrayIndexOutOfBoundsException e) {
context.fail(401)
return
} catch (IllegalArgumentException | NullPointerException e) {
// IllegalArgumentException includes PatternSyntaxException
context.fail(e)
return
}
if (scheme.equalsIgnoreCase("bearer")) {
JsonObject creds = new JsonObject()
creds.put("token", token)
authProvider.login(null, creds, { res ->
if (res.succeeded()) {
context.next()
} else {
context.fail(401)
}
})
} else {
context.fail(401)
}
}
}
}
import io.netty.handler.codec.http.HttpHeaders
import io.vertx.core.AsyncResult
import io.vertx.core.Future
import io.vertx.core.Handler
import io.vertx.core.http.HttpClient
import io.vertx.core.json.JsonObject
import io.vertx.ext.auth.AuthProvider
class OAuthIntrospectionProvider implements AuthProvider {
HttpClient httpClient
public OAuthIntrospectionProvider(HttpClient httpClient) {
this.httpClient = httpClient
}
@Override
void login(JsonObject principal, JsonObject credentials, Handler<AsyncResult<Void>> resultHandler) {
def request = httpClient.post(8180, "localhost", "/oauth/introspect ", { response ->
response.exceptionHandler({ ex ->
resultHandler.handle(Future.failedFuture(ex))
})
response.bodyHandler({ body ->
def obj = new JsonObject(body.toString())
def active = obj.getBoolean("active")
if (active) {
//TODO set user identity
resultHandler.handle(Future.succeededFuture())
} else {
resultHandler.handle(Future.failedFuture("Token not Active"))
}
})
})
//TODO Set client id and secret from config
String base64key = Base64.getEncoder().encodeToString("clientapp:123456".getBytes())
request.putHeader(HttpHeaders.Names.AUTHORIZATION, "Basic " + base64key);
request.putHeader(HttpHeaders.Names.CONTENT_TYPE, "application/x-www-form-urlencoded")
request.end("token=" + credentials.getString("token"))
}
@Override
void hasRole(JsonObject principal, String role, Handler<AsyncResult<Boolean>> resultHandler) {
resultHandler.handle(Future.failedFuture("Not Yet Supported by AuthProvider"))
}
@Override
void hasPermission(JsonObject principal, String permission, Handler<AsyncResult<Boolean>> resultHandler) {
resultHandler.handle(Future.failedFuture("Not Yet Supported by AuthProvider"))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment