diff options
Diffstat (limited to 'includes/external/addressbook/node_modules/http2-wrapper/source/proxies/get-auth-headers.js')
-rw-r--r-- | includes/external/addressbook/node_modules/http2-wrapper/source/proxies/get-auth-headers.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/includes/external/addressbook/node_modules/http2-wrapper/source/proxies/get-auth-headers.js b/includes/external/addressbook/node_modules/http2-wrapper/source/proxies/get-auth-headers.js new file mode 100644 index 0000000..364a858 --- /dev/null +++ b/includes/external/addressbook/node_modules/http2-wrapper/source/proxies/get-auth-headers.js @@ -0,0 +1,17 @@ +'use strict'; + +module.exports = self => { + const {username, password} = self.proxyOptions.url; + + if (username || password) { + const data = `${username}:${password}`; + const authorization = `Basic ${Buffer.from(data).toString('base64')}`; + + return { + 'proxy-authorization': authorization, + authorization + }; + } + + return {}; +}; |