UNPKG

oauth2orize-openid

Version:

Extensions to support OpenID Connect with OAuth2orize.

38 lines (32 loc) 892 B
/** * Module dependencies. */ var OAuth2Error = require('./oauth2error'); /** * `AuthorizationError` error. * * @api public */ function AuthorizationError(message, code, uri, status) { if (!status) { switch (code) { case 'invalid_request': status = 400; break; case 'unauthorized_client': status = 403; break; case 'access_denied': status = 403; break; case 'unsupported_response_type': status = 501; break; case 'invalid_scope': status = 400; break; case 'temporarily_unavailable': status = 503; break; } } OAuth2Error.call(this, message, code, uri, status); Error.captureStackTrace(this, arguments.callee); this.name = 'AuthorizationError'; } /** * Inherit from `OAuth2Error`. */ AuthorizationError.prototype.__proto__ = OAuth2Error.prototype; /** * Expose `AuthorizationError`. */ module.exports = AuthorizationError;