headerValuePF
Description
Calls the specified partial function with the first request header the function is isDefinedAt
and extracts the
result of calling the function.
The headerValuePF
directive is an alternative syntax version of headerValue.
If the function throws an exception the request is rejected with a MalformedHeaderRejection
.
If the function is not defined for any header the request is rejected as "NotFound".
Example
final PartialFunction<HttpHeader, Integer> extractHostPort =
new JavaPartialFunction<HttpHeader, Integer>() {
@Override
public Integer apply(HttpHeader x, boolean isCheck) throws Exception {
if (x instanceof Host) {
if (isCheck) {
return null;
} else {
return ((Host) x).port();
}
} else {
throw noMatch();
}
}
};
final Route route = headerValuePF(extractHostPort, port ->
complete("The port was " + port)
);
// tests:
testRoute(route).run(HttpRequest.GET("/").addHeader(Host.create("example.com", 5043)))
.assertEntity("The port was 5043");
testRoute(route).run(HttpRequest.GET("/"))
.assertStatusCode(StatusCodes.NOT_FOUND)
.assertEntity("The requested resource could not be found.");
Contents