mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
30 lines
927 B
JavaScript
30 lines
927 B
JavaScript
(function () {
|
|
Meteor.loginWithGithub = function (options, callback) {
|
|
// support both (options, callback) and (callback).
|
|
if (!callback && typeof options === 'function') {
|
|
callback = options;
|
|
options = {};
|
|
}
|
|
|
|
var config = Accounts.configuration.findOne({service: 'github'});
|
|
if (!config) {
|
|
callback && callback(new Accounts.ConfigError("Service not configured"));
|
|
return;
|
|
}
|
|
var state = Meteor.uuid();
|
|
|
|
var required_scope = ['user'];
|
|
var scope = _.union((options && options.scope) || [], required_scope);
|
|
var flat_scope = _.map(scope, encodeURIComponent).join('+');
|
|
|
|
var loginUrl =
|
|
'https://github.com/login/oauth/authorize' +
|
|
'?client_id=' + config.clientId +
|
|
'&scope=' + flat_scope +
|
|
'&redirect_uri=' + Meteor.absoluteUrl('_oauth/github?close') +
|
|
'&state=' + state;
|
|
|
|
Accounts.oauth.initiateLogin(state, loginUrl, callback);
|
|
};
|
|
}) ();
|