Border Patrol is a type-safe, immutable, functional Scala library built on top of Finagle that provides modular components useful for session management and authentication. This library is used at Lookout for single sign on with support for multiple authentication backends.
The original version (as a server) can be found here (nginx+lua): ngx_borderpatrol
Border Patrol uses a multi-project structure and contains the following modules:
core
- the core classes/functionsexample
- the demo app showing sessions and authentication for multiple servicesauth
- different authentication plugins for core authsecurity
- different security plugins, e.g. CSRF protectionserver
- a server composing these modules that can be configured
Every Border Patrol module is published at Bintray and SNAPSHOT builds are published to JFrog.
- stable release (not officially available yet):
libraryDependencies ++= Seq(
"com.lookout.borderpatrol" %% "[borderpatrol-module]" % "0.1.0"
)
SNAPSHOT
release:
libraryDependencies ++= Seq(
"com.lookout.borderpatrol" %% "[borderpatrol-module]" % "0.1.0-SNAPSHOT" changing()
)
To build Border Patrol you should have sbt
installed (prefer v0.13.8+). Run sbt
, and then use any of the following commands:
compile
: compile the codeproject [project]
: to switch projects, e.g. "project example"console
: launch a REPLtest
: run the testsunidoc
: generate the documentationscalastyle
: run the style-checker on the codevalidate
: run tests, style-checker, and doc generation
$ sbt
> project example
> run
- Scaladoc is available at http://lookout.github.io/borderpatrol/docs
We would love to make this better, so please help us!
- Submit a PR including an issue label "easy"
- Write ScalaDoc comments
- Write tutorials and examples
- Improve tests
- Help with code review
- Give it a star
- Join us on IRC
#borderpatrol
on Freenode
We use the MIT License License