ncbi / finatra-xheaders-filter

X-* header support filters for Finatra

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

XHeaders Filter

Handles "X-Script-Name", "X-Forwarded-Host" and "X-Forwarded-Proto" headers within Finatra-based applications.

Supports Scala 2.11 and Finatra 2.9.0.

Configuration

  1. Add this finatra-xheaders-filter library into your project's build.sbt libraryDependencies list:
"gov.nih.nlm.ncbi" %% "finatra-xheaders-filter" % <version>
  1. Add XHeadersHttpResponseFilter to your server after the CommonFilters:
...
import gov.nih.nlm.ncbi.xheadersfilter.XHeadersHttpResponseFilter

class MyServer extends HttpServer{

  override def configureHttp(router: HttpRouter) {
    router
      ...
      .filter[TraceIdMDCFilter[Request, Response]]
      .filter[CommonFilters]
      .filter[XHeadersHttpResponseFilter[Request]]
      ...
  }

}

Note: It's very important to keep XHeadersHttpResponseFilter after CommonFilters since it overrides (therefore has to be executed before) HttpResponseFilter. In the future there might be NCBICommonFilters which will contain XHeadersHttpResponseFilter instead of HttpResponseFilter.

That's it. The filter will now extract all required headers from the incoming request and will update the response's location if necessary.

Ignoring "X-Script-Name"

Occasionally, you'll want to bypass "X-Script-Name", keeping it out of a c.t.f.Response's Location http header. To do so, use the fixLocation function from NCBIResponseUtils in your Controller:

...
import gov.nih.nlm.ncbi.xheadersfilter.NCBIResponseUtils.fixLocation

@Singleton
class MyController @Inject() extends Controller
{

  prefix("/cat") {

    get("/google/?", "Redirect to google") { request: Request =>
      fixLocation(response.movedPermanently.location("https://google.com")) }
    }

    get("/journals/123/?", "Redirect to some journal from another application") {request: Request =>
      fixLocation(response.movedPermanently.location("/journals/123"))
    }
  }
}

Questions? Comments? Concerns?

Contact: @anapana or @edwelker

About

X-* header support filters for Finatra

License:Other


Languages

Language:Scala 100.0%