From 83354b2b88218090988dd6e526b0a2505b57e0f1 Mon Sep 17 00:00:00 2001 From: RaindropsSys Date: Thu, 6 Apr 2023 22:18:28 +0200 Subject: Updated 5 files and added 1110 files (automated) --- .../http2-wrapper/source/proxies/get-auth-headers.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 includes/external/addressbook/node_modules/http2-wrapper/source/proxies/get-auth-headers.js (limited to 'includes/external/addressbook/node_modules/http2-wrapper/source/proxies/get-auth-headers.js') 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 {}; +}; -- cgit