Fix creds in URL

This commit is contained in:
Ben Hardill 2021-07-15 18:32:51 +01:00
parent 972c83cd52
commit 81f0fb3c74
No known key found for this signature in database
GPG Key ID: 74DD076979ABB1E7
1 changed files with 9 additions and 7 deletions

View File

@ -205,23 +205,25 @@ module.exports = function(RED) {
}
}
}
var parsedURL = new URL(url)
if (parsedURL.username) {
this.credentials.user = parsedURL.username
}
if (parsedURL.password) {
this.credentials.password = parsedURL.password
}
if (Object.keys(this.credentials).length != 0) {
if (this.authType === "basic") {
// Workaround for https://github.com/sindresorhus/got/issues/1169
var cred = ""
var parsedURL = new URL(url)
if (this.credentials.user) {
// opts.username = this.credentials.user;
cred = this.credentials.user
} else if (parsedURL.username) {
cred = parsedURL.username
}
}
if (this.credentials.password) {
// opts.password = this.credentials.password;
cred += ":" + this.credentials.password
} else if (parsedURL.password) {
cred += ":" + parsedURL.password
}
}
// build own basic auth header
opts.headers.Authorization = "Basic " + Buffer.from(cred).toString("base64");
} else if (this.authType === "digest") {