easy-social-auth
Version:
A flexible, standalone package for social authentication using Google, Facebook & Twitter
106 lines (105 loc) • 4.73 kB
JavaScript
;
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.TiktokStrategy = 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 TiktokStrategy extends easy_social_auth_strategy_1.AuthStrategy {
constructor(config) {
super(config.clientId, config.clientSecret, config.userInfoEndpoint, config.tokenEndpoint, config.authUrl);
this.config = config;
}
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,
};
}
});
}
generateAuthUrl(redirectUri, scope) {
const csrfState = `tiktok_${Math.random().toString(36).substring(2)}`;
let url = this.authUrl;
url += `?client_key=${this.clientId}`;
url += `&scope=${scope}`;
url += "&response_type=code";
url += `&redirect_uri=${redirectUri}`;
url += "&state=" + csrfState;
return url;
}
exchangeCodeForToken(code, redirectUri) {
return __awaiter(this, void 0, void 0, function* () {
return yield this.exchangeToken({
client_key: this.clientId,
client_secret: this.clientSecret,
grant_type: grant_type_enum_1.GrantType.AUTHORIZATION_CODE,
redirect_uri: redirectUri,
code,
});
});
}
refreshAccessToken(refreshToken) {
return __awaiter(this, void 0, void 0, function* () {
return yield this.exchangeToken({
client_key: this.clientId,
client_secret: this.clientSecret,
grant_type: grant_type_enum_1.GrantType.REFRESH_TOKEN,
refresh_token: refreshToken,
});
});
}
getUserData(accessToken) {
return __awaiter(this, void 0, void 0, function* () {
var _a, _b, _c;
try {
const { data } = yield axios_1.default.get(this.userInfoEndpoint, {
headers: { Authorization: `Bearer ${accessToken}` },
});
if (data)
return {
status: true,
data: (_a = data === null || data === void 0 ? void 0 : data.data) === null || _a === void 0 ? void 0 : _a.user,
};
return { status: false, error: "unable to retrieve user data" };
}
catch (error) {
console.log(error.response.data);
return {
status: false,
error: ((_c = (_b = error.response) === null || _b === void 0 ? void 0 : _b.data) === null || _c === void 0 ? void 0 : _c.error_description) || error.message,
};
}
});
}
}
exports.TiktokStrategy = TiktokStrategy;