コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AuthorizationServer"/> class.
 /// </summary>
 /// <param name="authorizationServer">The authorization server.</param>
 /// <param name="clientAuthenticationModules">The list client authentication modules.</param>
 public AuthorizationServer(IAuthorizationServerHost authorizationServer, IList <ClientAuthenticationModule> clientAuthenticationModules)
 {
     this.aggregatingClientAuthenticationModule = new AggregatingClientCredentialReader(this.clientAuthenticationModules);
     this.Channel = new OAuth2AuthorizationServerChannel(authorizationServer, this.aggregatingClientAuthenticationModule);
     this.clientAuthenticationModules.AddRange(clientAuthenticationModules);
     this.ScopeSatisfiedCheck = DefaultScopeSatisfiedCheck;
 }
コード例 #2
0
 public AuthorizationServer(IAuthorizationServerHost authorizationServer)
 {
     this.aggregatingClientAuthenticationModule = new AggregatingClientCredentialReader(this.clientAuthenticationModules);
     this.Channel = new OAuth2AuthorizationServerChannel(authorizationServer, this.aggregatingClientAuthenticationModule);
     this.clientAuthenticationModules.AddRange(OAuth2AuthorizationServerSection.Configuration.ClientAuthenticationModules.CreateInstances(true, null));
     this.ScopeSatisfiedCheck = DefaultScopeSatisfiedCheck;
 }
コード例 #3
0
ファイル: AuthServerUtilities.cs プロジェクト: terry2012/DSV
        /// <summary>
        /// Verifies a condition is true or throws an exception describing the problem.
        /// </summary>
        /// <param name="condition">The condition that evaluates to true to avoid an exception.</param>
        /// <param name="requestMessage">The request message.</param>
        /// <param name="error">A single error code from <see cref="Protocol.AccessTokenRequestErrorCodes"/>.</param>
        /// <param name="authenticationModule">The authentication module from which to glean the WWW-Authenticate header when applicable.</param>
        /// <param name="unformattedDescription">A human-readable UTF-8 encoded text providing additional information, used to assist the client developer in understanding the error that occurred.</param>
        /// <param name="args">The formatting arguments to generate the actual description.</param>
        internal static void TokenEndpointVerify(bool condition, AccessTokenRequestBase requestMessage, string error, ClientAuthenticationModule authenticationModule = null, string unformattedDescription = null, params object[] args)
        {
            if (!condition)
            {
                string description = unformattedDescription != null?string.Format(CultureInfo.CurrentCulture, unformattedDescription, args) : null;

                string wwwAuthenticateHeader = null;
                if (authenticationModule != null)
                {
                    wwwAuthenticateHeader = authenticationModule.AuthenticateHeader;
                }

                throw new TokenEndpointProtocolException(requestMessage, error, description, authenticateHeader: wwwAuthenticateHeader);
            }
        }