easy-social-auth
Version:
A flexible, standalone package for social authentication using Google, Facebook & Twitter
128 lines (127 loc) • 6.16 kB
JavaScript
"use strict";
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.LinkedinStrategy = void 0;
const axios_1 = __importDefault(require("axios"));
const easy_social_auth_strategy_1 = require("./easy-social-auth.strategy");
const grant_type_enum_1 = require("../enums/grant-type.enum");
class LinkedinStrategy extends easy_social_auth_strategy_1.AuthStrategy {
constructor(config) {
super(config.clientId, config.clientSecret, config.userInfoEndpoint, config.tokenEndpoint, config.authUrl);
}
exchangeToken(params) {
return __awaiter(this, void 0, void 0, function* () {
var _a, _b;
try {
const form = new URLSearchParams();
Object.keys(params).forEach((key) => { form.append(key, params[key]); });
const { data } = yield axios_1.default.post(this.tokenEndpoint, form, {
headers: { 'Content-Type': 'application/x-www-form-urlencoded', 'Cache-Control': 'no-cache' }
});
if (data)
return { status: true, data: data };
return { status: false, error: "unable to retrieve token" };
}
catch (error) {
return { status: false, error: ((_b = (_a = error.response) === null || _a === void 0 ? void 0 : _a.data) === null || _b === void 0 ? void 0 : _b.error_description) || error.message };
}
});
}
exchangeCodeForToken(code, redirectUri) {
return __awaiter(this, void 0, void 0, function* () {
var _a, _b;
try {
const { data } = yield axios_1.default.post(this.tokenEndpoint, null, {
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
},
params: {
grant_type: grant_type_enum_1.GrantType.AUTHORIZATION_CODE,
code: code,
redirect_uri: redirectUri,
client_id: this.clientId,
client_secret: this.clientSecret,
}
});
return { status: true, data: data };
}
catch (error) {
return { status: false, error: ((_b = (_a = error.response) === null || _a === void 0 ? void 0 : _a.data) === null || _b === void 0 ? void 0 : _b.error_description) || error.message };
}
});
}
refreshAccessToken(refreshToken) {
return __awaiter(this, void 0, void 0, function* () {
var _a, _b;
try {
const { data } = yield axios_1.default.post(this.tokenEndpoint, null, {
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
},
params: {
grant_type: grant_type_enum_1.GrantType.REFRESH_TOKEN,
refresh_token: refreshToken,
client_id: this.clientId,
client_secret: this.clientSecret,
}
});
return { status: true, data: data };
}
catch (error) {
return { status: false, error: ((_b = (_a = error.response) === null || _a === void 0 ? void 0 : _a.data) === null || _b === void 0 ? void 0 : _b.error_description) || error.message };
}
});
}
requestAppToken() {
return __awaiter(this, void 0, void 0, function* () {
var _a, _b;
try {
const { data } = yield axios_1.default.post(this.tokenEndpoint, null, {
headers: {
'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8',
},
params: {
grant_type: grant_type_enum_1.GrantType.CLIENT_CREDENTIALS,
client_secret: this.clientSecret,
client_id: this.clientId,
}
});
return { status: true, data: data };
}
catch (error) {
return { status: false, error: ((_b = (_a = error.response) === null || _a === void 0 ? void 0 : _a.data) === null || _b === void 0 ? void 0 : _b.error_description) || error.message };
}
});
}
getUserData(accessToken) {
return __awaiter(this, void 0, void 0, function* () {
var _a, _b;
try {
const { data } = yield axios_1.default.get(this.userInfoEndpoint, {
headers: { Authorization: `Bearer ${accessToken}` }
});
if (data)
return {
status: true,
data: data
};
return { status: false, error: "unable to retrieve user data" };
}
catch (error) {
return { status: false, error: ((_b = (_a = error.response) === null || _a === void 0 ? void 0 : _a.data) === null || _b === void 0 ? void 0 : _b.error_description) || error.message || error.errors };
}
});
}
}
exports.LinkedinStrategy = LinkedinStrategy;