org.webbitserver.handler.PathMatchHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webbit Show documentation
Show all versions of webbit Show documentation
A Java event based WebSocket and HTTP server
package org.webbitserver.handler;
import org.webbitserver.HttpControl;
import org.webbitserver.HttpHandler;
import org.webbitserver.HttpRequest;
import org.webbitserver.HttpResponse;
import java.net.URI;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class PathMatchHandler implements HttpHandler {
private final Pattern pathPattern;
private final HttpHandler httpHandler;
public PathMatchHandler(Pattern pathPattern, HttpHandler httpHandler) {
this.pathPattern = pathPattern;
this.httpHandler = httpHandler;
}
public PathMatchHandler(String path, HttpHandler httpHandler) {
this(Pattern.compile(path), httpHandler);
}
@Override
public void handleHttpRequest(HttpRequest request, HttpResponse response, HttpControl control) throws Exception {
String path = URI.create(request.uri()).getPath();
Matcher matcher = pathPattern.matcher(path);
if (matcher.matches()) {
httpHandler.handleHttpRequest(request, response, control);
} else {
control.nextHandler();
}
}
}