supertokens-node
Version:
NodeJS driver for SuperTokens core
102 lines (101 loc) • 4.94 kB
JavaScript
;
/* Copyright (c) 2023, VRAI Labs and/or its affiliates. All rights reserved.
*
* This software is licensed under the Apache License, Version 2.0 (the
* "License") as published by the Apache Software Foundation.
*
* You may not use this file except in compliance with the License. You may
* obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = Bitbucket;
const thirdpartyUtils_1 = require("../../../thirdpartyUtils");
const custom_1 = __importDefault(require("./custom"));
const logger_1 = require("../../../logger");
function Bitbucket(input) {
if (input.config.name === undefined) {
input.config.name = "Bitbucket";
}
if (input.config.authorizationEndpoint === undefined) {
input.config.authorizationEndpoint = "https://bitbucket.org/site/oauth2/authorize";
}
if (input.config.tokenEndpoint === undefined) {
input.config.tokenEndpoint = "https://bitbucket.org/site/oauth2/access_token";
}
if (input.config.authorizationEndpointQueryParams === undefined) {
input.config.authorizationEndpointQueryParams = {
audience: "api.atlassian.com",
};
}
const oOverride = input.override;
input.override = function (originalImplementation) {
if (originalImplementation.type !== "oauth2") {
throw new Error(`Invalid provider type for Bitbucket: ${originalImplementation.type}`);
}
const oGetConfig = originalImplementation.getConfigForClientType;
originalImplementation.getConfigForClientType = async function (input) {
const config = await oGetConfig(input);
if (config.scope === undefined) {
config.scope = ["account", "email"];
}
return config;
};
originalImplementation.getUserInfo = async function (input) {
const accessToken = input.oAuthTokens.access_token;
if (accessToken === undefined) {
throw new Error("Access token not found");
}
const headers = {
Authorization: `Bearer ${accessToken}`,
};
let rawUserInfoFromProvider = {
fromUserInfoAPI: {},
fromIdTokenPayload: {},
};
const userInfoFromAccessToken = await (0, thirdpartyUtils_1.doGetRequest)("https://api.bitbucket.org/2.0/user", undefined, headers);
if (userInfoFromAccessToken.status >= 400) {
(0, logger_1.logDebugMessage)(`Received response with status ${userInfoFromAccessToken.status} and body ${userInfoFromAccessToken.stringResponse}`);
throw new Error(`Received response with status ${userInfoFromAccessToken.status} and body ${userInfoFromAccessToken.stringResponse}`);
}
rawUserInfoFromProvider.fromUserInfoAPI = userInfoFromAccessToken.jsonResponse;
const userInfoFromEmail = await (0, thirdpartyUtils_1.doGetRequest)("https://api.bitbucket.org/2.0/user/emails", undefined, headers);
if (userInfoFromEmail.status >= 400) {
(0, logger_1.logDebugMessage)(`Received response with status ${userInfoFromEmail.status} and body ${userInfoFromEmail.stringResponse}`);
throw new Error(`Received response with status ${userInfoFromEmail.status} and body ${userInfoFromEmail.stringResponse}`);
}
rawUserInfoFromProvider.fromUserInfoAPI.email = userInfoFromEmail.jsonResponse;
let email = undefined;
let isVerified = false;
for (const emailInfo of userInfoFromEmail.jsonResponse.values) {
if (emailInfo.is_primary) {
email = emailInfo.email;
isVerified = emailInfo.is_confirmed;
}
}
return {
thirdPartyUserId: rawUserInfoFromProvider.fromUserInfoAPI.uuid,
email: email === undefined
? undefined
: {
id: email,
isVerified,
},
rawUserInfoFromProvider,
};
};
if (oOverride !== undefined) {
originalImplementation = oOverride(originalImplementation);
}
return originalImplementation;
};
return (0, custom_1.default)(input);
}