forked from elasticsearch-dump/elasticsearch-dump
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaws4signer.js
58 lines (50 loc) · 2.28 KB
/
aws4signer.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
var aws4 = require('aws4')
var AWS = require('aws-sdk')
var path = require('path')
var os = require('os')
var credentials // lazily loaded, see below
var aws4signer = function (esRequest, parent) {
// Consider deprecating - insecure to use on command line and credentials can be found by default at ~/.aws/credentials or as environment variables
var useAwsCredentials = ((typeof parent.options.awsAccessKeyId === 'string') && (typeof parent.options.awsSecretAccessKey === 'string'))
// Consider deprecating - can be achieved with awsChain and setting AWS_PROFILE and AWS_CONFIG_FILE environment variables as needed
var useAwsProfile = (typeof parent.options.awsIniFileProfile === 'string')
var useAwsChain = (parent.options.awsChain === true)
if (useAwsCredentials || useAwsProfile || useAwsChain) {
// Lazy load credentials object depending on our flavor of credential loading
// Assumption is that loading only needs to happen once per execution and if refreshing is
// needed, credentials object should implement credentials.refresh() callback
if (!credentials) {
if (useAwsChain) {
new AWS.CredentialProviderChain().resolve(function (err, resolved) {
if (err) { throw err } else {
credentials = resolved
}
})
} else if (useAwsCredentials) {
credentials = {
accessKeyId: parent.options.awsAccessKeyId,
secretAccessKey: parent.options.awsSecretAccessKey,
sessionToken: parent.options.sessionToken
}
} else if (useAwsProfile) {
credentials = new AWS.SharedIniFileCredentials({
profile: parent.options.awsIniFileProfile,
filename: path.join(os.homedir(), '.aws', parent.options.awsIniFileName ? parent.options.awsIniFileName : 'config')
})
}
}
// get aws required stuff from uri or url
var esURL = ''
if ((esRequest.uri !== undefined) && (esRequest.uri !== null)) {
esURL = esRequest.uri
} else if ((esRequest.url !== undefined) && (esRequest.url !== null)) {
esURL = esRequest.url
}
const url = require('url')
var urlObj = url.parse(esURL)
esRequest.headers = { 'host': urlObj.hostname }
esRequest.path = urlObj.path
aws4.sign(esRequest, credentials)
}
}
module.exports = aws4signer