fxa-auth-db-server/index.js

113 строки
3.7 KiB
JavaScript
Исходник Обычный вид История

2014-04-14 05:27:20 +04:00
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
var restify = require('restify')
2014-07-02 04:29:05 +04:00
var bufferize = require('./bufferize')
2014-07-17 21:29:36 +04:00
var version = require('./package.json').version
2014-04-14 05:27:20 +04:00
2014-07-23 22:23:25 +04:00
function createServer(db) {
2014-04-14 05:27:20 +04:00
function reply(fn) {
return function (req, res, next) {
fn.call(db, req.params.id, req.body)
.then(
function (result) {
2014-07-17 21:29:36 +04:00
api.emit(
'success',
{
code: 200,
route: req.route.name,
2014-05-15 07:58:09 +04:00
method: req.method,
path: req.url,
t: Date.now() - req.time()
}
)
2014-04-14 05:27:20 +04:00
if (Array.isArray(result)) {
res.send(result.map(bufferize.unbuffer))
}
else {
res.send(bufferize.unbuffer(result || {}))
}
},
function (err) {
2014-05-23 01:25:00 +04:00
if (typeof err !== 'object') {
err = { message: err || 'none' }
}
var statusCode = err.code || 500
2014-07-17 21:29:36 +04:00
api.emit(
'failure',
{
code: statusCode,
2014-07-17 21:29:36 +04:00
route: req.route.name,
method: req.method,
path: req.url,
2014-07-17 21:29:36 +04:00
err: err,
t: Date.now() - req.time(),
2014-07-17 21:29:36 +04:00
}
)
2014-06-06 01:18:53 +04:00
res.send(statusCode, err)
2014-04-14 05:27:20 +04:00
}
)
.done(next, next)
}
}
var api = restify.createServer()
api.use(restify.bodyParser())
api.use(bufferize.bufferizeRequest)
api.get('/account/:id', reply(db.account))
api.del('/account/:id', reply(db.deleteAccount))
api.put('/account/:id', reply(db.createAccount))
api.get('/account/:id/devices', reply(db.accountDevices))
api.post('/account/:id/reset', reply(db.resetAccount))
api.post('/account/:id/verifyEmail', reply(db.verifyEmail))
2014-07-17 21:29:36 +04:00
api.post('/account/:id/locale', reply(db.updateLocale))
api.post('/account/:id/lock', reply(db.lockAccount))
api.post('/account/:id/unlock', reply(db.unlockAccount))
api.get('/account/:id/unlockCode', reply(db.unlockCode))
2014-04-14 05:27:20 +04:00
api.get('/sessionToken/:id', reply(db.sessionToken))
api.del('/sessionToken/:id', reply(db.deleteSessionToken))
api.put('/sessionToken/:id', reply(db.createSessionToken))
api.get('/keyFetchToken/:id', reply(db.keyFetchToken))
api.del('/keyFetchToken/:id', reply(db.deleteKeyFetchToken))
api.put('/keyFetchToken/:id', reply(db.createKeyFetchToken))
api.get('/accountResetToken/:id', reply(db.accountResetToken))
api.del('/accountResetToken/:id', reply(db.deleteAccountResetToken))
api.put('/accountResetToken/:id', reply(db.createAccountResetToken))
api.get('/passwordChangeToken/:id', reply(db.passwordChangeToken))
api.del('/passwordChangeToken/:id', reply(db.deletePasswordChangeToken))
api.put('/passwordChangeToken/:id', reply(db.createPasswordChangeToken))
api.get('/passwordForgotToken/:id', reply(db.passwordForgotToken))
api.del('/passwordForgotToken/:id', reply(db.deletePasswordForgotToken))
api.put('/passwordForgotToken/:id', reply(db.createPasswordForgotToken))
api.post('/passwordForgotToken/:id/update', reply(db.updatePasswordForgotToken))
api.post('/passwordForgotToken/:id/verified', reply(db.forgotPasswordVerified))
api.get('/emailRecord/:id', reply(db.emailRecord))
api.head('/emailRecord/:id', reply(db.accountExists))
api.get('/__heartbeat__', reply(db.ping))
api.get(
'/',
function (req, res, next) {
2014-07-02 04:29:05 +04:00
res.send({ version: version })
next()
}
)
2014-07-02 04:29:05 +04:00
return api
}
2014-07-23 22:23:25 +04:00
module.exports = {
createServer: createServer,
errors: require('./error')
}