2.0.2 • Published 5 years ago
just-login-session-state v2.0.2
just-login-session-state
An optional module that handles session state for just-login.
example
var Core = require('just-login-core')
var SessionState = require('just-login-session-state')
var Level = require('level-mem')
var tokenDb = new Level()
var sessionDb = new Level()
var core = Core(tokenDb)
var sessionState = SessionState(core, sessionDb)api
var SessionState = require('just-login-session-state')var sessionState = SessionState(core, db, [options])
coreis an instance of a just-login-core.dbis expecting a levelup database.optionsis an optional object: -unauthenticateAfterMsis a number in milliseconds of a session's period of inactivity before they are unauthenticated. (Callingauthenticate()/isAuthenticated()counts as activity.) Defaults to 1 week. -deleteSessionAfterMsis a number in milliseconds of a session's period of inactivity before the session is deleted. If the user does not callisAuthenticated()within that time period, their session will be deleted. Defaults to 1 week. -checkIntervalMsis a number in milliseconds of the session's timeout's check interval. (See expireUnusedKeys({checkIntervalMs}).) Defaults to 10 seconds.- Returns
sessionState.
sessionState.createSession(cb)
Creates a new (unauthenticated) session.
cbis a function that has the following arguments: -errisnullor anErrorobject. -sessionIdis a string of the new session id.
sessionState.createSession(function(err, sessionId) {
if (err) {
console.error(err)
} else {
console.log('session created, but you\'re not logged in')
}
})sessionState.sessionExists(sessionId, cb)
sessionIdis a string of the session id for which to check the existence.cbis a function that has the following arguments: -errisnullor anErrorobject. -dateisnullif the session does not exist, otherwise it is adateobject.
sessionState.sessionExists('64416534-3199-11e5-96bb-ba029ef54746', function(err, date) {
if (err) {
console.error(err)
} else if (date) {
console.log('The session exists, and was created at ' + new Date(date))
} else {
console.log('The session does not exist')
}
})sessionState.deleteSession(sessionId, [cb])
sessionIdis a string of the session id to delete.cbis an optional function that has the following argument: -errisnullor anErrorobject.
sessionState.deleteSession('64416534-3199-11e5-96bb-ba029ef54746', function(err) {
if (err) {
console.error(err)
} else {
console.log('Session was deleted')
}
})sessionState.isAuthenticated(sessionId, cb)
Checks if a user is authenticated. (Logged in.)
sessionIdis a string of the session id in question.cbis a function with the following arguments: -errisnullor anErrorobject. -contactAddressisnullis the user is not authenticated, otherwise it is a string of their contact address.
sessionState.isAuthenticated('64416534-3199-11e5-96bb-ba029ef54746', function(err, contactAddress) {
if (err) {
console.error(err)
} else if (contactAddress) {
console.log('You are logged in')
} else {
console.log('You are not logged in')
}
})sessionState.unauthenticate(sessionId, [cb])
Sets the session id to be unauthenticated.
sessionIdis a string of the session id that is trying to get authenticated.cbis an optional function with the following argument: -errisnullor anErrorobject.
sessionState.unauthenticate('64416534-3199-11e5-96bb-ba029ef54746', function(err) {
if (err) {
console.error(err)
} else {
console.log('You have been logged out')
}
})