63 lines
1.7 KiB
JavaScript
63 lines
1.7 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = Foursquare;
|
|
var _https = require("https");
|
|
var _events = require("events");
|
|
function Foursquare(options) {
|
|
const {
|
|
apiVersion = "20230131"
|
|
} = options;
|
|
return {
|
|
id: "foursquare",
|
|
name: "Foursquare",
|
|
type: "oauth",
|
|
authorization: "https://foursquare.com/oauth2/authenticate",
|
|
token: "https://foursquare.com/oauth2/access_token",
|
|
userinfo: {
|
|
async request({
|
|
tokens
|
|
}) {
|
|
const url = new URL("https://api.foursquare.com/v2/users/self");
|
|
url.searchParams.append("v", apiVersion);
|
|
url.searchParams.append("oauth_token", tokens.access_token);
|
|
const req = (0, _https.get)(url, {
|
|
timeout: 3500
|
|
});
|
|
const [response] = await Promise.race([(0, _events.once)(req, "response"), (0, _events.once)(req, "timeout")]);
|
|
if (!response) {
|
|
req.destroy();
|
|
throw new Error("HTTP Request Timed Out");
|
|
}
|
|
if (response.statusCode !== 200) {
|
|
throw new Error("Expected 200 OK from the userinfo endpoint");
|
|
}
|
|
const parts = [];
|
|
for await (const part of response) {
|
|
parts.push(part);
|
|
}
|
|
return JSON.parse(Buffer.concat(parts));
|
|
}
|
|
},
|
|
profile({
|
|
response: {
|
|
user: profile
|
|
}
|
|
}) {
|
|
return {
|
|
id: profile.id,
|
|
name: `${profile.firstName} ${profile.lastName}`,
|
|
email: profile.contact.email,
|
|
image: profile.photo ? `${profile.photo.prefix}original${profile.photo.suffix}` : null
|
|
};
|
|
},
|
|
style: {
|
|
logo: "/foursquare.svg",
|
|
text: "#fff",
|
|
bg: "#000"
|
|
},
|
|
options
|
|
};
|
|
} |