verdaccio/lib/middleware.js

170 lines
3.9 KiB
JavaScript
Raw Normal View History

2013-10-26 14:18:36 +02:00
var crypto = require('crypto')
, utils = require('./utils')
, UError = require('./error').UserError
, Logger = require('./logger')
2013-06-08 03:16:28 +02:00
module.exports.validate_name = function validate_name(req, res, next, value, name) {
if (utils.validate_name(req.params.package)) {
2013-10-26 14:18:36 +02:00
req.params.package = String(req.params.package)
next()
2013-06-08 03:16:28 +02:00
} else {
2013-06-14 10:34:29 +02:00
next(new UError({
2013-06-08 03:16:28 +02:00
status: 403,
msg: 'invalid package name',
2013-10-26 14:18:36 +02:00
}))
2013-06-08 03:16:28 +02:00
}
2013-10-26 14:18:36 +02:00
}
2013-06-08 03:16:28 +02:00
module.exports.media = function media(expect) {
return function(req, res, next) {
if (req.headers['content-type'] !== expect) {
2013-06-14 10:34:29 +02:00
next(new UError({
2013-06-08 03:16:28 +02:00
status: 415,
msg: 'wrong content-type, expect: '+expect+', got: '+req.headers['content-type'],
2013-10-26 14:18:36 +02:00
}))
2013-06-08 03:16:28 +02:00
} else {
2013-10-26 14:18:36 +02:00
next()
2013-06-08 03:16:28 +02:00
}
}
}
module.exports.expect_json = function expect_json(req, res, next) {
if (!utils.is_object(req.body)) {
2013-06-08 03:16:28 +02:00
return next({
status: 400,
msg: 'can\'t parse incoming json',
2013-10-26 14:18:36 +02:00
})
2013-06-08 03:16:28 +02:00
}
2013-10-26 14:18:36 +02:00
next()
2013-06-08 03:16:28 +02:00
}
module.exports.basic_auth = function basic_auth(callback) {
2013-12-06 18:46:51 +01:00
return function(req, res, _next) {
function next(err) {
// uncomment this to reject users with bad auth headers
//return _next.apply(null, arguments)
// swallow error, user remains unauthorized
return _next()
}
2013-10-26 14:18:36 +02:00
var authorization = req.headers.authorization
2013-06-08 03:16:28 +02:00
2013-12-06 18:46:51 +01:00
if (req.remoteUser != null) return next()
if (authorization == null) return next()
2013-06-08 03:16:28 +02:00
2013-10-26 14:18:36 +02:00
var parts = authorization.split(' ')
2013-06-08 03:16:28 +02:00
if (parts.length !== 2) return next({
status: 400,
msg: 'bad authorization header',
2013-10-26 14:18:36 +02:00
})
2013-06-08 03:16:28 +02:00
var scheme = parts[0]
, credentials = new Buffer(parts[1], 'base64').toString()
2013-10-26 14:18:36 +02:00
, index = credentials.indexOf(':')
2013-06-08 03:16:28 +02:00
if ('Basic' != scheme || index < 0) return next({
status: 400,
msg: 'bad authorization header',
2013-10-26 14:18:36 +02:00
})
2013-06-08 03:16:28 +02:00
var user = credentials.slice(0, index)
2013-10-26 14:18:36 +02:00
, pass = credentials.slice(index + 1)
2013-06-08 03:16:28 +02:00
if (callback(user, pass)) {
2013-12-06 18:46:51 +01:00
req.remoteUser = user
2013-10-26 14:18:36 +02:00
next()
2013-06-08 03:16:28 +02:00
} else {
next({
status: 403,
msg: 'bad username/password, access denied',
2013-10-26 14:18:36 +02:00
})
2013-06-08 03:16:28 +02:00
}
}
2013-10-26 14:18:36 +02:00
}
2013-06-08 03:16:28 +02:00
2013-07-03 03:49:24 +02:00
// express doesn't do etags with requests <= 1024b
// we use md5 here, it works well on 1k+ bytes, but sucks with fewer data
// could improve performance using crc32 after benchmarks
function md5sum(data) {
2013-10-26 14:18:36 +02:00
return crypto.createHash('md5').update(data).digest('hex')
2013-07-03 03:49:24 +02:00
}
module.exports.log_and_etagify = function(req, res, next) {
// logger
2013-10-26 14:18:36 +02:00
req.log = Logger.logger.child({sub: 'in'})
2013-10-12 16:37:47 +02:00
var _auth = req.headers.authorization
if (_auth) req.headers.authorization = '<Classified>'
req.log.info({req: req, ip: req.ip}, '@{ip} requested \'@{req.method} @{req.url}\'')
if (_auth) req.headers.authorization = _auth
2013-10-26 14:18:36 +02:00
var bytesin = 0
req.on('data', function(chunk){ bytesin += chunk.length })
2013-10-26 14:18:36 +02:00
var _send = res.send
2013-07-03 03:49:24 +02:00
res.send = function(body) {
if (typeof(body) === 'string' || typeof(body) === 'object') {
2013-10-26 14:18:36 +02:00
res.header('Content-type', 'application/json')
2013-07-03 03:49:24 +02:00
if (typeof(body) === 'object' && body != null) {
if (body.error) {
2013-10-26 14:18:36 +02:00
res._sinopia_error = body.error
}
2013-10-26 14:18:36 +02:00
body = JSON.stringify(body, undefined, '\t')
2013-07-03 03:49:24 +02:00
}
2013-10-26 14:18:36 +02:00
2013-12-06 18:46:11 +01:00
// don't send etags with errors
if (!res.statusCode || (res.statusCode >= 200 && res.statusCode < 300)) {
res.header('ETag', '"' + md5sum(body) + '"')
}
2013-07-03 03:49:24 +02:00
} else {
// send(null), send(204), etc.
}
2013-10-26 14:18:36 +02:00
res.send = _send
res.send(body)
2013-10-18 23:53:27 +02:00
}
var bytesout = 0
2013-10-26 14:18:36 +02:00
, _write = res.write
2013-10-18 23:53:27 +02:00
res.write = function(buf) {
bytesout += buf.length
_write.apply(res, arguments)
}
2013-10-22 11:37:28 +02:00
function log() {
2013-10-26 14:18:36 +02:00
var msg = '@{status}, user: @{user}, req: \'@{request.method} @{request.url}\''
2013-10-18 23:53:27 +02:00
if (res._sinopia_error) {
2013-10-26 14:18:36 +02:00
msg += ', error: @{!error}'
} else {
2013-10-26 14:18:36 +02:00
msg += ', bytes: @{bytes.in}/@{bytes.out}'
}
req.log.warn({
request: {method: req.method, url: req.url},
level: 35, // http
user: req.user,
status: res.statusCode,
2013-10-18 23:53:27 +02:00
error: res._sinopia_error,
bytes: {
in: bytesin,
2013-10-18 23:53:27 +02:00
out: bytesout,
}
2013-10-26 14:18:36 +02:00
}, msg)
2013-10-22 11:37:28 +02:00
}
req.on('close', function() {
log(true)
})
2013-10-26 14:18:36 +02:00
var _end = res.end
2013-10-22 11:37:28 +02:00
res.end = function(buf) {
if (buf) bytesout += buf.length
_end.apply(res, arguments)
log()
}
next()
2013-07-03 03:49:24 +02:00
}