2013-09-25 12:01:55 +02:00
|
|
|
var request = require('request');
|
|
|
|
var assert = require('assert');
|
|
|
|
|
|
|
|
function Server(url) {
|
|
|
|
if (!(this instanceof Server)) return new Server(url);
|
|
|
|
this.url = url.replace(/\/$/, '');
|
|
|
|
this.userAgent = 'node/v0.10.8 linux x64';
|
2013-10-22 07:10:25 +02:00
|
|
|
this.authstr = 'Basic '+(new Buffer('test:test')).toString('base64');
|
2013-09-25 12:01:55 +02:00
|
|
|
}
|
|
|
|
|
2013-09-27 04:27:11 +02:00
|
|
|
function prep(cb) {
|
|
|
|
return function(err, res, body) {
|
|
|
|
if (err) throw err;
|
|
|
|
cb(res, body);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2013-09-25 12:01:55 +02:00
|
|
|
Server.prototype.request = function(options, cb) {
|
2013-12-15 00:15:58 +01:00
|
|
|
assert(options.uri)
|
2013-09-27 13:31:28 +02:00
|
|
|
var headers = options.headers || {};
|
|
|
|
headers.accept = headers.accept || 'application/json';
|
|
|
|
headers['user-agent'] = headers['user-agent'] || this.userAgent;
|
2013-10-22 07:10:25 +02:00
|
|
|
headers.authorization = headers.authorization || this.authstr;
|
2013-09-25 12:01:55 +02:00
|
|
|
return request({
|
|
|
|
url: this.url + options.uri,
|
|
|
|
method: options.method || 'GET',
|
2013-09-27 13:31:28 +02:00
|
|
|
headers: headers,
|
2013-09-27 04:27:11 +02:00
|
|
|
json: options.json || true,
|
2013-09-25 12:01:55 +02:00
|
|
|
}, cb);
|
|
|
|
}
|
|
|
|
|
|
|
|
Server.prototype.auth = function(user, pass, cb) {
|
2013-10-22 07:10:25 +02:00
|
|
|
this.authstr = 'Basic '+(new Buffer(user+':'+pass)).toString('base64');
|
2013-09-25 12:01:55 +02:00
|
|
|
this.request({
|
|
|
|
uri: '/-/user/org.couchdb.user:'+escape(user)+'/-rev/undefined',
|
|
|
|
method: 'PUT',
|
|
|
|
json: {
|
|
|
|
content: "doesn't matter, 'cause sinopia uses info from Authorization header anywayz",
|
|
|
|
}
|
2013-09-27 04:27:11 +02:00
|
|
|
}, prep(cb));
|
2013-09-25 12:01:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Server.prototype.get_package = function(name, cb) {
|
2013-09-27 04:27:11 +02:00
|
|
|
this.request({
|
2013-09-25 12:01:55 +02:00
|
|
|
uri: '/'+name,
|
|
|
|
method: 'GET',
|
2013-09-27 04:27:11 +02:00
|
|
|
}, prep(cb));
|
2013-09-25 12:01:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Server.prototype.put_package = function(name, data, cb) {
|
2013-09-27 04:27:11 +02:00
|
|
|
if (typeof(data) === 'object' && !Buffer.isBuffer(data)) data = JSON.stringify(data);
|
|
|
|
this.request({
|
2013-09-27 10:56:44 +02:00
|
|
|
uri: '/'+escape(name),
|
|
|
|
method: 'PUT',
|
|
|
|
headers: {
|
|
|
|
'content-type': 'application/json'
|
|
|
|
},
|
|
|
|
}, prep(cb)).end(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
Server.prototype.put_version = function(name, version, data, cb) {
|
|
|
|
if (typeof(data) === 'object' && !Buffer.isBuffer(data)) data = JSON.stringify(data);
|
|
|
|
this.request({
|
|
|
|
uri: '/'+escape(name)+'/'+escape(version)+'/-tag/latest',
|
2013-09-25 12:01:55 +02:00
|
|
|
method: 'PUT',
|
2013-09-27 04:27:11 +02:00
|
|
|
headers: {
|
|
|
|
'content-type': 'application/json'
|
|
|
|
},
|
|
|
|
}, prep(cb)).end(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
Server.prototype.get_tarball = function(name, filename, cb) {
|
|
|
|
this.request({
|
2013-09-27 10:56:44 +02:00
|
|
|
uri: '/'+escape(name)+'/-/'+escape(filename),
|
2013-09-27 04:27:11 +02:00
|
|
|
method: 'GET',
|
|
|
|
}, prep(cb));
|
|
|
|
}
|
|
|
|
|
|
|
|
Server.prototype.put_tarball = function(name, filename, data, cb) {
|
|
|
|
this.request({
|
2013-09-27 10:56:44 +02:00
|
|
|
uri: '/'+escape(name)+'/-/'+escape(filename)+'/whatever',
|
2013-09-27 04:27:11 +02:00
|
|
|
method: 'PUT',
|
|
|
|
headers: {
|
|
|
|
'content-type': 'application/octet-stream'
|
|
|
|
},
|
|
|
|
}, prep(cb)).end(data);
|
2013-09-25 12:01:55 +02:00
|
|
|
}
|
|
|
|
|
2013-09-27 13:31:28 +02:00
|
|
|
Server.prototype.put_tarball_incomplete = function(name, filename, data, size, cb) {
|
|
|
|
var req = this.request({
|
|
|
|
uri: '/'+escape(name)+'/-/'+escape(filename)+'/whatever',
|
|
|
|
method: 'PUT',
|
|
|
|
headers: {
|
|
|
|
'content-type': 'application/octet-stream',
|
|
|
|
'content-length': size,
|
|
|
|
},
|
|
|
|
timeout: 1000,
|
|
|
|
}, function(err) {
|
|
|
|
assert(err);
|
|
|
|
cb();
|
|
|
|
});
|
|
|
|
req.write(data);
|
|
|
|
setTimeout(function() {
|
|
|
|
req.req.abort();
|
|
|
|
}, 20);
|
|
|
|
}
|
|
|
|
|
2013-09-25 12:01:55 +02:00
|
|
|
module.exports = Server;
|
|
|
|
|