easy-social-auth
Version:
A flexible, standalone package for social authentication using Google, Facebook & Twitter
115 lines (114 loc) • 4.83 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.RedditStrategy = 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");
const token_type_enum_1 = require("../enums/token-type.enum");
class RedditStrategy extends easy_social_auth_strategy_1.AuthStrategy {
constructor(config) {
super(config.clientId, config.clientSecret, config.userInfoEndpoint, config.tokenEndpoint, config.authUrl);
this.config = config;
}
get clientAuthorizationHeader() {
const credentials = Buffer.from(`${this.clientId}:${this.clientSecret}`).toString("base64");
return {
Authorization: `Basic ${credentials}`,
};
}
makeRequest(requestConfig) {
return __awaiter(this, void 0, void 0, function* () {
var _a, _b;
try {
const { data } = yield (0, axios_1.default)(requestConfig);
if (data)
return { status: true, data: data };
return { status: false, error: "No response data received." };
}
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,
};
}
});
}
postToTokenEndPoint(params) {
return __awaiter(this, void 0, void 0, function* () {
const headers = Object.assign({ 'Content-Type': 'application/x-www-form-urlencoded' }, this.clientAuthorizationHeader);
return this.makeRequest({
method: "post",
url: this.tokenEndpoint,
headers: headers,
params: params,
});
});
}
requestAppToken() {
return __awaiter(this, void 0, void 0, function* () {
return this.postToTokenEndPoint({
grant_type: grant_type_enum_1.GrantType.CLIENT_CREDENTIALS,
});
});
}
exchangeCodeForToken(code, redirectUri) {
return __awaiter(this, void 0, void 0, function* () {
return this.postToTokenEndPoint({
grant_type: grant_type_enum_1.GrantType.AUTHORIZATION_CODE,
code: code,
redirect_uri: redirectUri,
});
});
}
refreshAccessToken(refreshToken) {
return __awaiter(this, void 0, void 0, function* () {
return this.postToTokenEndPoint({
grant_type: grant_type_enum_1.GrantType.REFRESH_TOKEN,
refresh_token: refreshToken,
});
});
}
revokeToken(token, tokenType) {
return __awaiter(this, void 0, void 0, function* () {
var _a;
this.makeRequest({
method: "post",
url: (_a = this.config.revokeTokenUrl) !== null && _a !== void 0 ? _a : "https://www.reddit.com/api/v1/revoke_token",
headers: this.clientAuthorizationHeader,
params: {
token: token,
token_type_hint: tokenType !== null && tokenType !== void 0 ? tokenType : token_type_enum_1.TokenTypeEnum.ACCESS_TOKEN
}
});
return {
status: true,
data: "Token revoked successfully",
};
});
}
getUserData(accessToken) {
return __awaiter(this, void 0, void 0, function* () {
const headers = {
Authorization: `Bearer ${accessToken}`
};
return this.makeRequest({
method: "get",
url: this.userInfoEndpoint,
headers: headers,
});
});
}
}
exports.RedditStrategy = RedditStrategy;