verdaccio/lib/up-storage.js

201 lines
4.8 KiB
JavaScript
Raw Normal View History

var URL = require('url');
2013-06-08 03:16:28 +02:00
var request = require('request');
2013-06-14 10:34:29 +02:00
var UError = require('./error').UserError;
var mystreams = require('./streams');
2013-06-08 03:16:28 +02:00
2013-09-25 11:12:33 +02:00
//
// Implements Storage interface
// (same for storage.js, local-storage.js, up-storage.js)
//
2013-06-19 18:58:16 +02:00
function Storage(config, mainconfig) {
2013-06-08 03:16:28 +02:00
if (!(this instanceof Storage)) return new Storage(config);
this.config = config;
2013-09-28 19:31:58 +02:00
this.is_alive = false;
this.userAgent = mainconfig.user_agent;
2013-10-01 20:02:23 +02:00
this.ca = config.ca;
2013-06-08 03:16:28 +02:00
2013-06-19 18:58:16 +02:00
this.url = URL.parse(this.config.url);
if (this.url.hostname === 'registry.npmjs.org') {
2013-10-01 20:02:23 +02:00
this.ca = this.ca || require('./npmsslkeys');
2013-06-20 15:41:07 +02:00
// npm registry is too slow working with ssl :(
/*if (this.config._autogenerated) {
2013-06-19 18:58:16 +02:00
// encrypt all the things!
this.url.protocol = 'https';
this.config.url = URL.format(this.url);
2013-06-20 15:41:07 +02:00
}*/
2013-06-08 03:16:28 +02:00
}
2013-06-19 18:58:16 +02:00
this.config.url = this.config.url.replace(/\/$/, '');
2013-06-08 03:16:28 +02:00
return this;
}
2013-09-28 19:31:58 +02:00
Storage.prototype.request = function(options, cb) {
var self = this;
var headers = options.headers || {};
headers.accept = headers.accept || 'application/json';
headers['user-agent'] = headers['user-agent'] || this.userAgent;
var req = request({
url: options.uri_full || (this.config.url + options.uri),
2013-09-28 19:31:58 +02:00
method: options.method || 'GET',
headers: headers,
json: options.json || true,
ca: this.ca,
}, function(err) {
if (cb) cb.apply(self, arguments);
});
req.on('response', function() {
self.status_check(true);
});
req.on('error', function() {
self.status_check(false);
});
return req;
}
Storage.prototype.status_check = function(alive) {
if (arguments.length === 0) {
if (!this.is_alive && Math.abs(Date.now() - this.is_alive_time()) > 60*1000) {
return false;
} else {
return true;
}
} else {
this.is_alive = alive;
this.is_alive_time = Date.now();
}
}
2013-06-19 18:58:16 +02:00
Storage.prototype.can_fetch_url = function(url) {
url = URL.parse(url);
return url.protocol === this.url.protocol
&& url.host === this.url.host
2013-06-20 15:41:07 +02:00
&& url.path.indexOf(this.url.path) === 0
2013-06-19 18:58:16 +02:00
}
2013-09-25 11:18:38 +02:00
Storage.prototype.add_package = function(name, metadata, callback) {
2013-09-28 19:31:58 +02:00
this.request({
uri: '/' + escape(name),
method: 'PUT',
json: metadata,
}, function(err, res, body) {
if (err) return callback(err);
if (!(res.statusCode >= 200 && res.statusCode < 300)) {
return callback(new Error('bad status code: ' + res.statusCode));
}
callback(null, body);
});
2013-09-25 11:18:38 +02:00
}
Storage.prototype.add_version = function(name, version, metadata, tag, callback) {
2013-09-28 19:31:58 +02:00
this.request({
uri: '/' + escape(name) + '/' + escape(version) + '/-tag/' + escape(tag),
method: 'PUT',
json: metadata,
}, function(err, res, body) {
if (err) return callback(err);
if (!(res.statusCode >= 200 && res.statusCode < 300)) {
return callback(new Error('bad status code: ' + res.statusCode));
}
callback(null, body);
});
2013-09-25 11:18:38 +02:00
}
Storage.prototype.add_tarball = function(name, filename) {
2013-09-28 14:19:40 +02:00
var stream = new mystreams.UploadTarballStream();
var self = this;
2013-09-28 19:31:58 +02:00
var wstream = this.request({
uri: '/' + escape(name) + '/-/' + escape(filename) + '/whatever',
2013-09-28 14:19:40 +02:00
method: 'PUT',
headers: {
'content-type': 'application/octet-stream'
},
});
wstream.on('response', function(res) {
if (!(res.statusCode >= 200 && res.statusCode < 300)) {
return stream.emit('error', new UError({
msg: 'bad uplink status code: ' + res.statusCode,
status: 500,
}));
}
stream.emit('success');
});
wstream.on('error', function(err) {
stream.emit('error', err);
});
stream.abort = function() {
2013-09-28 14:37:24 +02:00
process.nextTick(function() {
if (wstream.req) {
wstream.req.abort();
}
});
2013-09-28 14:19:40 +02:00
};
stream.done = function() {};
stream.pipe(wstream);
return stream;
2013-09-25 11:18:38 +02:00
}
2013-06-08 03:16:28 +02:00
Storage.prototype.get_package = function(name, callback) {
2013-09-28 19:31:58 +02:00
this.request({
uri: '/' + escape(name),
2013-06-08 03:16:28 +02:00
json: true,
}, function(err, res, body) {
if (err) return callback(err);
2013-06-14 10:34:29 +02:00
if (res.statusCode === 404) {
return callback(new UError({
msg: 'package doesn\'t exist on uplink',
status: 404,
}));
}
2013-06-14 09:56:02 +02:00
if (!(res.statusCode >= 200 && res.statusCode < 300)) {
return callback(new Error('bad status code: ' + res.statusCode));
}
2013-06-08 03:16:28 +02:00
callback(null, body);
});
}
2013-06-20 15:41:07 +02:00
Storage.prototype.get_tarball = function(name, filename) {
return this.get_url(this.config.url + '/' + name + '/-/' + filename);
}
Storage.prototype.get_url = function(url) {
var stream = new mystreams.ReadTarballStream();
stream.abort = function() {};
2013-06-20 15:41:07 +02:00
2013-09-28 19:31:58 +02:00
var rstream = this.request({
uri_full: url,
2013-06-19 18:58:16 +02:00
encoding: null,
2013-06-20 15:41:07 +02:00
});
rstream.on('response', function(res) {
2013-06-19 18:58:16 +02:00
if (res.statusCode === 404) {
2013-06-20 15:41:07 +02:00
return stream.emit('error', new UError({
2013-06-19 18:58:16 +02:00
msg: 'file doesn\'t exist on uplink',
status: 404,
}));
}
if (!(res.statusCode >= 200 && res.statusCode < 300)) {
2013-06-20 15:41:07 +02:00
return stream.emit('error', new UError({
msg: 'bad uplink status code: ' + res.statusCode,
status: 500,
}));
2013-06-19 18:58:16 +02:00
}
2013-06-20 15:41:07 +02:00
rstream.pipe(stream);
});
rstream.on('error', function(err) {
stream.emit('error', err);
2013-06-19 18:58:16 +02:00
});
2013-06-20 15:41:07 +02:00
return stream;
2013-06-19 18:58:16 +02:00
}
2013-06-08 03:16:28 +02:00
module.exports = Storage;