Documentation ¶
Overview ¶
Package login is a middleware for Martini that provides a simple way to track user sessions in on a website. Please see https://github.com/codegangsta/martini-contrib/blob/master/sessionauth/README.md for a more detailed description of the package.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func AuthenticateSession ¶
AuthenticateSession will mark the session and user object as authenticated. Then the Login() user function will be called. This function should be called after you have validated a user.
func LoginRequired ¶
LoginRequired verifies that the current user is authenticated. Any routes that require a login should have this handler placed in the flow. If the user is not authenticated, they will be redirected to /login with the "next" get parameter set to the attempted URL.
func SessionUser ¶
SessionUser will try to read a unique user ID out of the session. Then it tries to populate an anonymous user object from the database based on that ID. If this is successful, the valid user is mapped into the context. Otherwise the anonymous user is mapped into the contact. The newUser() function should provide a valid 0value structure for the caller's user type.
Types ¶
type User ¶
type User interface { // Return whether this user is logged in or not IsAuthenticated() bool // Set any flags or extra data that should be available Login() // Clear any sensitive data out of the user Logout() // Return the unique identifier of this user object UniqueId() interface{} // Populate this user object with values GetById(id interface{}) error }
User defines all the functions necessary to work with the user's authentication. The caller should implement these functions for whatever system of authentication they choose to use