How to log all requests with unfiltered

324 Views Asked by At

I'm using unfiltered to provide restful API, and have defined several intents. Now I have a new requirement, I have to log all the request url into a file, but I can't find a good solution for it.

I've read the document of unfiltered, not found something like "filter/interceptor" in SpringMVC. Is there any way to do it?

1

There are 1 best solutions below

0
On

No idea about SpringMVC. However, if you want to log every request you can write a logging Intent

object RequestLogging {
  def apply[A, B](intent: Cycle.Intent[A, B]) =
    Cycle.Intent[A, B] {
      case req =>
        Cycle.Intent.complete(intent)(req) ~> new ResponseFunction[Any]() {
          override def apply[C <: Any](resp: HttpResponse[C]) = {
            println(s"${req.remoteAddr} ${new Date()} ${req.method} ${req.uri} ${resp.underlying.asInstanceOf[Response].getStatus}")
            resp
          }
        }
    }
}

And then use it by wrapping your current Intent like this:

val plan = new unfiltered.filter.Plan {
  def intent = RequestLogging {
    case GET(Path("/record/1")) => ...
  }
}