Last active
June 26, 2024 13:36
-
-
Save jeroenvollenbrock/94edbbc62adc986d6d6a9a3076e66f5b to your computer and use it in GitHub Desktop.
Revisions
-
jeroenvollenbrock renamed this gist
Sep 7, 2022 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
jeroenvollenbrock created this gist
May 15, 2021 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,65 @@ var USERS = { protecteddir: [{ username: 'user', password: 'pass', }], }; //Response when auth is not valid. var response401 = { statusCode: 401, statusDescription: 'Unauthorized', headers: { 'www-authenticate': {value:'Basic'}, }, }; var b64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="; function btoa(input) { input = String(input); var bitmap, a, b, c, result = "", i = 0, rest = input.length % 3; // To determine the final padding for (; i < input.length;) { if ((a = input.charCodeAt(i++)) > 255 || (b = input.charCodeAt(i++)) > 255 || (c = input.charCodeAt(i++)) > 255) throw new TypeError("Failed to execute 'btoa' on 'Window': The string to be encoded contains characters outside of the Latin1 range."); bitmap = (a << 16) | (b << 8) | c; result += b64.charAt(bitmap >> 18 & 63) + b64.charAt(bitmap >> 12 & 63) + b64.charAt(bitmap >> 6 & 63) + b64.charAt(bitmap & 63); } // If there's need of padding, replace the last 'A's with equal signs return rest ? result.slice(0, rest - 3) + "===".substring(rest) : result; } function handler(event) { var request = event.request; var headers = request.headers; var auth = request.headers.authorization && request.headers.authorization.value; var project = request.uri.substring(1).split(/\.|\//)[0]; var users = USERS[project]; if(users) { if(!auth || !auth.startsWith('Basic ')) { return response401; } if(!users.find(function(user) { // Construct the Basic Auth string var authString = 'Basic ' + btoa(user.username + ':' + user.password); return authString === auth; })) { return response401; } } return request; }