1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/lib/middleware.js

206 lines
5.4 KiB
JavaScript
Raw Permalink Normal View History

'use strict';
let crypto = require('crypto');
let Error = require('http-errors');
let utils = require('./utils');
let Logger = require('./logger');
2013-06-08 03:16:28 +02:00
module.exports.match = function match(regexp) {
return function(req, res, next, value, name) {
if (regexp.exec(value)) {
next();
} else {
next('route');
}
};
};
2013-06-08 03:16:28 +02:00
module.exports.validate_name = function validate_name(req, res, next, value, name) {
if (value.charAt(0) === '-') {
// special case in couchdb usually
next('route');
} else if (utils.validate_name(value)) {
next();
} else {
next( Error[403]('invalid ' + name) );
}
};
2013-06-08 03:16:28 +02:00
2014-11-16 18:44:46 +01:00
module.exports.validate_package = function validate_package(req, res, next, value, name) {
if (value.charAt(0) === '-') {
// special case in couchdb usually
next('route');
2014-11-16 18:44:46 +01:00
} else if (utils.validate_package(value)) {
next();
2014-11-16 18:44:46 +01:00
} else {
next( Error[403]('invalid ' + name) );
2014-11-16 18:44:46 +01:00
}
};
2014-11-16 18:44:46 +01: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) {
next( Error[415]('wrong content-type, expect: ' + expect
+ ', got: '+req.headers['content-type']) );
} else {
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)) {
return next( Error[400]('can\'t parse incoming json') );
}
next();
};
2013-06-08 03:16:28 +02:00
2013-12-09 04:59:31 +01:00
module.exports.anti_loop = function(config) {
return function(req, res, next) {
if (req.headers.via != null) {
let arr = req.headers.via.split(',');
for (let i=0; i<arr.length; i++) {
let m = arr[i].match(/\s*(\S+)\s+(\S+)/);
if (m && m[2] === config.server_id) {
return next( Error[508]('loop detected') );
}
}
}
next();
};
};
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) {
return crypto.createHash('md5').update(data).digest('hex');
2013-07-03 03:49:24 +02:00
}
2015-04-08 22:54:59 +02:00
module.exports.allow = function(auth) {
2014-11-13 19:32:31 +01:00
return function(action) {
return function(req, res, next) {
req.pause();
auth['allow_'+action](req.params.package, req.remote_user, function(error, allowed) {
req.resume();
2015-04-08 22:54:59 +02:00
if (error) {
next(error);
} else if (allowed) {
next();
} else {
2015-04-08 22:54:59 +02:00
// last plugin (that's our built-in one) returns either
// cb(err) or cb(null, true), so this should never happen
throw Error('bug in the auth plugin system');
2014-11-13 19:32:31 +01:00
}
});
};
};
};
2014-11-13 19:32:31 +01:00
module.exports.final = function(body, req, res, next) {
2014-11-16 13:37:50 +01:00
if (res.statusCode === 401 && !res.getHeader('WWW-Authenticate')) {
// they say it's required for 401, so...
res.header('WWW-Authenticate', 'Basic, Bearer');
2014-11-16 13:37:50 +01:00
}
2014-11-13 19:32:31 +01:00
try {
if (typeof(body) === 'string' || typeof(body) === 'object') {
if (!res.getHeader('Content-type')) {
res.header('Content-type', 'application/json');
2014-11-13 19:32:31 +01:00
}
if (typeof(body) === 'object' && body != null) {
if (typeof(body.error) === 'string') {
res._verdaccio_error = body.error;
2014-11-13 19:32:31 +01:00
}
body = JSON.stringify(body, undefined, ' ') + '\n';
2014-11-13 19:32:31 +01:00
}
// don't send etags with errors
if (!res.statusCode || (res.statusCode >= 200 && res.statusCode < 300)) {
res.header('ETag', '"' + md5sum(body) + '"');
2014-11-13 19:32:31 +01:00
}
} else {
// send(null), send(204), etc.
}
} catch(err) {
2016-11-07 18:15:38 +01:00
// if verdaccio sends headers first, and then calls res.send()
2014-11-13 19:32:31 +01:00
// as an error handler, we can't report error properly,
// and should just close socket
if (err.message.match(/set headers after they are sent/)) {
if (res.socket != null) res.socket.destroy();
return;
2014-11-13 19:32:31 +01:00
} else {
throw err;
2014-11-13 19:32:31 +01:00
}
}
res.send(body);
};
2014-11-13 19:32:31 +01:00
module.exports.log = function(req, res, next) {
// logger
req.log = Logger.logger.child({sub: 'in'});
let _auth = req.headers.authorization;
if (_auth != null) req.headers.authorization = '<Classified>';
let _cookie = req.headers.cookie;
if (_cookie != null) req.headers.cookie = '<Classified>';
2014-11-12 17:18:30 +01:00
req.url = req.originalUrl;
req.log.info( {req: req, ip: req.ip}
, '@{ip} requested \'@{req.method} @{req.url}\'' );
req.originalUrl = req.url;
2014-11-12 17:18:30 +01:00
if (_auth != null) req.headers.authorization = _auth;
if (_cookie != null) req.headers.cookie = _cookie;
let bytesin = 0;
req.on('data', function(chunk) {
bytesin += chunk.length;
});
let bytesout = 0;
let _write = res.write;
res.write = function(buf) {
bytesout += buf.length;
_write.apply(res, arguments);
};
function log() {
let message = '@{status}, user: @{user}, req: \'@{request.method} @{request.url}\'';
2016-11-07 18:15:38 +01:00
if (res._verdaccio_error) {
message += ', error: @{!error}';
} else {
message += ', bytes: @{bytes.in}/@{bytes.out}';
}
2014-11-12 17:18:30 +01:00
req.url = req.originalUrl;
req.log.warn({
request: {method: req.method, url: req.url},
level: 35, // http
user: req.remote_user && req.remote_user.name,
status: res.statusCode,
error: res._verdaccio_error,
bytes: {
in: bytesin,
out: bytesout,
},
}, message);
req.originalUrl = req.url;
}
req.on('close', function() {
log(true);
});
let _end = res.end;
res.end = function(buf) {
if (buf) bytesout += buf.length;
_end.apply(res, arguments);
log();
};
next();
};