๐Ÿ”’

March 31, 2015 ยท View on GitHub

Nest example middleware to wrap your web application in HTTP auth.

NOTE: This is also the very first published Pod to use emoji as its name.

Installation

pod '๐Ÿ”’'

Usage

import Padlock

func application(env:Request) -> (Response) {
  return ("200 OK", [], "Hello World")
}

func isValidCredentials(username:String, password:String) -> Bool {
  return username == "kyle" && password == "nest"
}

let secureApplication = ๐Ÿ”’(isValidCredentials, application)

serve("127.0.0.1", 8080, secureApplication)

License

๐Ÿ”’ is licensed under the BSD license. See LICENSE for more information.