Implement OAuth2 password flow

This commit is contained in:
TANAKA Koichi
2016-09-10 17:32:55 +09:00
parent 776325b993
commit 7cdf83a932
5 changed files with 60 additions and 7 deletions

View File

@@ -122,6 +122,12 @@ SwaggerUi.Views.AuthView = Backbone.View.extend({
this.clientCredentialsFlow(scopes, dets.tokenUrl, container.OAuthSchemeKey);
return;
}
else if(auth.get('type') === 'oauth2' && flow && (flow === 'password')) {
dets = auth.attributes;
window.swaggerUi.tokenName = dets.tokenName || 'access_token';
this.passwordFlow(scopes, dets.tokenUrl, dets.username, dets.password, window.OAuthSchemeKey);
return;
}
else if(auth.get('grantTypes')) {
// 1.2 support
var o = auth.get('grantTypes');
@@ -176,6 +182,27 @@ SwaggerUi.Views.AuthView = Backbone.View.extend({
onOAuthComplete('');
}
});
}
},
passwordFlow: function (scopes, tokenUrl, username, password, OAuthSchemeKey) {
var params = {
'scope': scopes.join(' '),
'username': username,
'password': password,
'grant_type': 'password'
};
$.ajax({
url : tokenUrl,
type: 'POST',
data: params,
success: function (data)
{
onOAuthComplete(data, OAuthSchemeKey);
},
error: function ()
{
onOAuthComplete('');
}
});
}
});

View File

@@ -2,7 +2,8 @@
SwaggerUi.Models.Oauth2Model = Backbone.Model.extend({
defaults: {
scopes: {}
scopes: {},
isPasswordFlow: false
},
initialize: function () {
@@ -19,6 +20,8 @@ SwaggerUi.Models.Oauth2Model = Backbone.Model.extend({
attributes.scopes = scopes;
this.attributes = attributes;
}
this.set('isPasswordFlow', attributes.flow && attributes.flow === 'password');
this.on('change', this.validate);
},

View File

@@ -2,7 +2,9 @@
SwaggerUi.Views.Oauth2View = Backbone.View.extend({
events: {
'change .oauth-scope': 'scopeChange'
'change .oauth-scope': 'scopeChange',
'change .oauth-username': 'setUsername',
'change .oauth-password': 'setPassword'
},
template: Handlebars.templates.oauth2,
@@ -18,5 +20,13 @@ SwaggerUi.Views.Oauth2View = Backbone.View.extend({
var scope = $(e.target).data('scope');
this.model.setScopes(scope, val);
},
setUsername: function (e) {
this.model.set('username', $(e.target).val());
},
setPassword: function (e) {
this.model.set('password', $(e.target).val());
}
});