Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix user denial and missing state parameter on error redirect #649

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions lib/handlers/authorize-handler.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,6 @@ AuthorizeHandler.prototype.handle = function(request, response) {
throw new InvalidArgumentError('Invalid argument: `response` must be an instance of Response');
}

if ('false' === request.query.allowed) {
return Promise.reject(new AccessDeniedError('Access denied: user denied access to application'));
}

var fns = [
this.getAuthorizationCodeLifetime(),
this.getClient(request),
Expand All @@ -97,6 +93,12 @@ AuthorizeHandler.prototype.handle = function(request, response) {
var ResponseType;

return Promise.bind(this)
.then(function() {
state = this.getState(request);
if(request.query.allowed === 'false') {
throw new AccessDeniedError('Access denied: user denied access to application');
}
})
.then(function() {
var requestedScope = this.getScope(request);

Expand All @@ -108,9 +110,7 @@ AuthorizeHandler.prototype.handle = function(request, response) {
return this.generateAuthorizationCode(client, user, scope);
})
.then(function(authorizationCode) {
state = this.getState(request);
ResponseType = this.getResponseType(request);

return this.saveAuthorizationCode(authorizationCode, expiresAt, scope, client, uri, user);
})
.then(function(code) {
Expand Down
34 changes: 28 additions & 6 deletions test/integration/handlers/authorize-handler_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,13 +161,35 @@ describe('AuthorizeHandler integration', function() {

it('should throw an error if `allowed` is `false`', function() {
var model = {
getAccessToken: function() {},
getClient: function() {},
saveAuthorizationCode: function() {}
getAccessToken: function() {
return {
user: {},
accessTokenExpiresAt: new Date(new Date().getTime() + 10000)
};
},
getClient: function() {
return { grants: ['authorization_code'], redirectUris: ['http://example.com/cb'] };
},
saveAuthorizationCode: function() {
throw new Error('Unhandled exception');
}
};

var handler = new AuthorizeHandler({ authorizationCodeLifetime: 120, model: model });
var request = new Request({ body: {}, headers: {}, method: {}, query: { allowed: 'false' } });
var response = new Response({ body: {}, headers: {} });
var request = new Request({
body: {
client_id: 'test'
},
headers: {
'Authorization': 'Bearer foo'
},
method: {},
query: {
allowed: 'false',
state: 'foobar'
}
});

return handler.handle(request, response)
.then(should.fail)
Expand Down Expand Up @@ -328,7 +350,7 @@ describe('AuthorizeHandler integration', function() {
return handler.handle(request, response)
.then(should.fail)
.catch(function() {
response.get('location').should.equal('http://example.com/cb?error=invalid_scope&error_description=Invalid%20parameter%3A%20%60scope%60');
response.get('location').should.equal('http://example.com/cb?error=invalid_scope&error_description=Invalid%20parameter%3A%20%60scope%60&state=foobar');
});
});

Expand Down Expand Up @@ -416,7 +438,7 @@ describe('AuthorizeHandler integration', function() {
return handler.handle(request, response)
.then(should.fail)
.catch(function() {
response.get('location').should.equal('http://example.com/cb?error=invalid_scope&error_description=Invalid%20scope%3A%20Requested%20scope%20is%20invalid');
response.get('location').should.equal('http://example.com/cb?error=invalid_scope&error_description=Invalid%20scope%3A%20Requested%20scope%20is%20invalid&state=foobar');
});
});

Expand Down