easy-social-auth
Version:
A flexible, standalone package for social authentication using Google, Facebook & Twitter
110 lines (109 loc) • 5.75 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.InstagramStrategy = 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 InstagramStrategy extends easy_social_auth_strategy_1.AuthStrategy {
constructor(config) {
super(config.clientId, config.clientSecret, config.userInfoEndpoint, config.tokenEndpoint, config.authUrl);
this.config = config;
}
exchangeCodeForToken(code_1, redirectUri_1) {
return __awaiter(this, arguments, void 0, function* (code, redirectUri, additionalParams = {}) {
var _a, _b, _c;
try {
const params = new FormData();
params.append("client_id", this.clientId);
params.append("client_secret", this.clientSecret);
params.append("grant_type", grant_type_enum_1.GrantType.AUTHORIZATION_CODE);
params.append("redirect_uri", redirectUri);
params.append("code", code);
Object.keys(additionalParams).forEach((param) => {
params.append(param, additionalParams[param]);
});
const { data } = yield axios_1.default.post(this.tokenEndpoint, params);
return { status: true, data: data === null || data === void 0 ? void 0 : data.access_token };
}
catch (error) {
return {
status: false,
error: ((_a = error === null || error === void 0 ? void 0 : error.data) === null || _a === void 0 ? void 0 : _a.error_message) || ((_c = (_b = error.response) === null || _b === void 0 ? void 0 : _b.data) === null || _c === void 0 ? void 0 : _c.error_description),
};
}
});
}
exchangeTokenForLongLivedToken(accessToken) {
return __awaiter(this, void 0, void 0, function* () {
var _a, _b;
try {
const url = new URL(this.config.longLivedTokenEndpoint);
url.searchParams.set("client_secret", this.clientSecret);
url.searchParams.set("grant_type", grant_type_enum_1.GrantType.INSTAGRAM_EXCHANGE_TOKEN);
url.searchParams.set("access_token", accessToken);
const { data } = yield axios_1.default.get(url.toString());
if (data)
return { status: true, data: data === null || data === void 0 ? void 0 : data.access_token };
return { status: false, error: "unable to exchange access 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,
};
}
});
}
refreshAccessToken(accessToken) {
return __awaiter(this, void 0, void 0, function* () {
var _a, _b;
try {
const url = new URL(this.config.refreshTokenEndpoint);
url.searchParams.set("grant_type", grant_type_enum_1.GrantType.INSTAGRAM_REFRESH_TOKEN);
url.searchParams.set("access_token", accessToken);
const { data } = yield axios_1.default.get(url.toString());
if (data)
return { status: true, data: data === null || data === void 0 ? void 0 : data.access_token };
return { status: false, error: "unable to refresh access 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,
};
}
});
}
getUserData(accessToken) {
return __awaiter(this, void 0, void 0, function* () {
var _a, _b;
try {
const url = new URL(this.config.userInfoEndpoint);
url.searchParams.set("access_token", accessToken);
const { data } = yield axios_1.default.get(url.toString());
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,
};
}
});
}
}
exports.InstagramStrategy = InstagramStrategy;