Created
November 23, 2017 13:56
-
-
Save solisoft/3000e44159571488b5f8ac64043f8ffc to your computer and use it in GitHub Desktop.
Authentification endpoint
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
const db = require('@arangodb').db; | |
const joi = require('joi'); | |
const createRouter = require('@arangodb/foxx/router'); | |
const sessionsMiddleware = require('@arangodb/foxx/sessions'); | |
const jwtStorage = require('@arangodb/foxx/sessions/storages/jwt'); | |
const createAuth = require('@arangodb/foxx/auth'); | |
const auth = createAuth(); | |
const router = createRouter(); | |
const sessions = sessionsMiddleware({ | |
storage: jwtStorage({ secret: "Secret", ttl: 60 * 60 * 24 * 7 }), | |
ttl: 60 * 60 * 24 * 7, // one week in seconds | |
transport: 'header' | |
}); | |
module.context.use(sessions); | |
module.context.use(router); | |
router.post('/signup', function (req, res) { | |
const user = req.body; // get the form defined in the body section below | |
try { | |
// Create an authentication hash | |
user.authData = auth.create(user.password); | |
// Delete plain password data | |
delete user.password; | |
delete user.password_confirmation; | |
// Validate user (for demo purpose) | |
user.a = true | |
const meta = db.users.save(user); | |
Object.assign(user, meta); // assign _key, _id to user | |
} catch (e) { | |
res.throw('bad request', 'Username already taken', e); | |
} | |
// Set the session uid | |
req.session.uid = user._key; | |
res.send({success: true}); | |
}) | |
.body(joi.object({ | |
"fn": joi.string().required(), | |
"ln": joi.string().required(), | |
"username": joi.string().required(), | |
"password": joi.string().min(8).max(32).required(), | |
"password_confirmation": joi.string().required(), | |
}), 'Credentials') | |
.description('Creates a new user and logs them in.'); | |
router.post('/login', function (req, res) { | |
// This may return a user object or null | |
const user = db.users.firstExample({ | |
username: req.body.username, | |
a: true | |
}); | |
const valid = auth.verify( | |
user ? user.authData : {}, | |
req.body.password | |
); | |
// Log the user in | |
if(valid) { | |
req.session.uid = user._key; | |
} | |
// Corrs | |
res.setHeader("Access-Control-Expose-Headers", "X-Session-Id"); | |
res.send({success: valid, uid: req.session}); | |
}) | |
.body(joi.object({ | |
username: joi.string().required(), | |
password: joi.string().required() | |
}).required(), 'Credentials') | |
.description('Logs a registered user in.'); | |
router.post('/logout', function (req, res) { | |
if (req.session.uid) { | |
req.session.uid = null; | |
} | |
res.send({success: true}); | |
}) | |
.description('Logs the current user out.'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment