mapRequest

Signature

def mapRequest(f: HttpRequest 

Description

Transforms the request before it is handled by the inner route.

The mapRequest directive is used as a building block for Custom Directives to transform a request before it is handled by the inner route. Changing the request.uri parameter has no effect on path matching in the inner route because the unmatched path is a separate field of the RequestContextRequestContext value which is passed into routes. To change the unmatched path or other fields of the RequestContextRequestContext use the mapRequestContext directive.

See Request Transforming Directives for an overview of similar directives.

Example

Scala
sourcedef transformToPostRequest(req: HttpRequest): HttpRequest = req.withMethod(HttpMethods.POST)
val route =
  mapRequest(transformToPostRequest) {
    extractRequest { req =>
      complete(s"The request method was ${req.method.name}")
    }
  }

Get("/") ~> route ~> check {
  responseAs[String] shouldEqual "The request method was POST"
}
Java
sourceimport static org.apache.pekko.http.javadsl.server.Directives.mapRequest;

import static org.apache.pekko.http.javadsl.server.Directives.extractRequest;
import static org.apache.pekko.http.javadsl.server.Directives.mapRequest;

final Route route =
    mapRequest(
        req -> req.withMethod(HttpMethods.POST),
        () -> extractRequest(req -> complete("The request method was " + req.method().name())));

// tests:
testRoute(route).run(HttpRequest.GET("/")).assertEntity("The request method was POST");