Skip to content

Commit fdc0546

Browse files
tarrowThomas Arrow
authored and
Thomas Arrow
committed
add http auth by ini file
1 parent 0605cdc commit fdc0546

8 files changed

+58
-1
lines changed

bin/elasticdump

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ var defaults = {
3232
awsSecretAccessKey: null,
3333
awsIniFileProfile: null,
3434
awsIniFileName: null,
35-
transform: null
35+
transform: null,
36+
httpAuthFile: null
3637
}
3738

3839
var options = {}

elasticdump.js

+7
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ var path = require('path')
55
var EventEmitter = require('events').EventEmitter
66
var isUrl = require('./lib/is-url')
77
var vm = require('vm')
8+
var addAuth = require('./lib/add-auth')
89

910
var elasticdump = function (input, output, options) {
1011
var self = this
@@ -29,6 +30,9 @@ var elasticdump = function (input, output, options) {
2930
if (self.options.input && !self.options.inputTransport) {
3031
if (isUrl(self.options.input)) {
3132
self.inputType = 'elasticsearch'
33+
if (self.options.httpAuthFile) {
34+
self.options.input = addAuth(self.options.input, self.options.httpAuthFile)
35+
}
3236
} else {
3337
self.inputType = 'file'
3438
}
@@ -46,6 +50,9 @@ var elasticdump = function (input, output, options) {
4650
if (self.options.output && !self.options.outputTransport) {
4751
if (isUrl(self.options.output)) {
4852
self.outputType = 'elasticsearch'
53+
if (self.options.httpAuthFile) {
54+
self.options.output = addAuth(self.options.output, self.options.httpAuthFile)
55+
}
4956
} else {
5057
self.outputType = 'file'
5158
if (self.options.output === '$') { self.options.toLog = false }

lib/add-auth.js

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
var fs = require('fs')
2+
var ini = require('ini')
3+
var url = require('url')
4+
5+
module.exports = addAuth
6+
7+
function addAuth (urlToAddAuth, authFile) {
8+
var authConf = ini.parse(fs.readFileSync(authFile, 'utf-8'))
9+
if (authConf.user && authConf.password) {
10+
var authString = authConf.user + ':' + authConf.password
11+
} else {
12+
throw new Error('Malformed Auth File')
13+
}
14+
var urlObject = url.parse(urlToAddAuth)
15+
if (!urlObject.auth) {
16+
urlObject.auth = authString
17+
urlToAddAuth = url.format(urlObject)
18+
}
19+
return urlToAddAuth
20+
}

lib/help.txt

+4
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,10 @@ Usage: elasticdump --input SOURCE --output DESTINATION [OPTIONS]
9494
value of field 'f1':
9595
doc._source["f2"] = doc._source.f1 * 2;
9696

97+
--httpAuthFile When using http auth provide credentials in ini file in form
98+
`user=<username>
99+
password=<password>`
100+
97101
--help
98102
This page
99103

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
"async": "^2.0.1",
3232
"aws4": "^1.4.1",
3333
"awscred": "^1.2.0",
34+
"ini": "^1.3.4",
3435
"optimist": "latest",
3536
"request": "2.x.x"
3637
},

test/add-auth.tests.js

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
var addAuth = require('../lib/add-auth')
2+
var should = require('should') // eslint-disable-line
3+
4+
describe('add-auth', function () {
5+
it('should throw ENOENT if the auth file is missing', function () {
6+
(function () {
7+
addAuth('http://blah.com', 'NotAFile.txt')
8+
}).should.throw('ENOENT: no such file or directory, open \'NotAFile.txt\'')
9+
})
10+
it('should throw error if the auth file is missing username and password', function () {
11+
(function () {
12+
addAuth('http://blah.com', 'test/test-resources/malformedHttpAuth.ini')
13+
}).should.throw('Malformed Auth File')
14+
})
15+
it('shouldn\'t overwrite existing auth parameters in url', function () {
16+
addAuth('http://user:[email protected]', 'test/test-resources/httpAuthTest.ini').should.equal('http://user:[email protected]')
17+
})
18+
it('should add auth parameters if they are missing', function () {
19+
addAuth('http://blah.com', 'test/test-resources/httpAuthTest.ini').should.equal('http://foo:[email protected]/')
20+
})
21+
})

test/test-resources/httpAuthTest.ini

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
user=foo
2+
password=bar
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
foobar

0 commit comments

Comments
 (0)