Files
meteor/packages/github-oauth/github_client.js
Jan Dvorak ee83c62cdc Follow if brackets convention
Co-authored-by: Denilson <denilsonh2014@gmail.com>
2022-02-07 02:09:12 +09:00

50 lines
1.7 KiB
JavaScript

Github = {};
// Request Github credentials for the user
// @param options {optional}
// @param credentialRequestCompleteCallback {Function} Callback function to call on
// completion. Takes one argument, credentialToken on success, or Error on
// error.
Github.requestCredential = (options, credentialRequestCompleteCallback) => {
// support both (options, callback) and (callback).
if (!credentialRequestCompleteCallback && typeof options === 'function') {
credentialRequestCompleteCallback = options;
options = {};
}
const config = ServiceConfiguration.configurations.findOne({service: 'github'});
if (!config) {
credentialRequestCompleteCallback && credentialRequestCompleteCallback(
new ServiceConfiguration.ConfigError());
return;
}
const credentialToken = Random.secret();
const scope = (options && options.requestPermissions) || ['user:email'];
const flatScope = scope.map(encodeURIComponent).join('+');
const loginStyle = OAuth._loginStyle('github', config, options);
let allowSignup = '';
if (Accounts._options?.forbidClientAccountCreation) {
allowSignup = '&allow_signup=false'; // https://docs.github.com/en/developers/apps/building-oauth-apps/authorizing-oauth-apps#parameters
}
const loginUrl =
'https://github.com/login/oauth/authorize' +
`?client_id=${config.clientId}` +
`&scope=${flatScope}` +
`&redirect_uri=${OAuth._redirectUri('github', config)}` +
`&state=${OAuth._stateParam(loginStyle, credentialToken, options && options.redirectUrl)}` +
allowSignup;
OAuth.launchLogin({
loginService: "github",
loginStyle,
loginUrl,
credentialRequestCompleteCallback,
credentialToken,
popupOptions: {width: 900, height: 450}
});
};