public DiscoveryCache(DiscoveryClient client)
     : this(client.Authority, new HttpClient(), client.Policy)
 {
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initialize instance of DiscoveryCache with passed DiscoveryClient.
 /// </summary>
 /// <param name="client">DiscoveryClient to use for obtaining discovery document.</param>
 public DiscoveryCache(DiscoveryClient client)
 {
     _client = client;
 }
Exemplo n.º 3
0
        public static async Task <DiscoveryResponse> GetAsync(string url)
        {
            var client = new DiscoveryClient(url);

            return(await client.GetAsync().ConfigureAwait(false));
        }
Exemplo n.º 4
0
 /// <summary>
 /// Initialize instance of DiscoveryCache with passed authority.
 /// </summary>
 /// <param name="authority">Base address or discovery document endpoint.</param>
 public DiscoveryCache(string authority)
 {
     _client = new DiscoveryClient(authority);
     _client.Policy.RequireHttps = authority.StartsWith("https://");
 }
        /// <summary>
        /// Sends a discovery document request
        /// </summary>
        /// <param name="client">The client.</param>
        /// <param name="request">The request.</param>
        /// <param name="cancellationToken">The cancellation token.</param>
        /// <returns></returns>
        public static async Task <DiscoveryResponse> GetDiscoveryDocumentAsync(this HttpClient client, DiscoveryDocumentRequest request = null, CancellationToken cancellationToken = default)
        {
            if (request == null)
            {
                request = new DiscoveryDocumentRequest();
            }

            string address;

            if (request.Address.IsPresent())
            {
                address = request.Address;
            }
            else
            {
                address = client.BaseAddress.AbsoluteUri;
            }

            var parsed    = DiscoveryClient.ParseUrl(address);
            var authority = parsed.Authority;
            var url       = parsed.Url;

            if (request.Policy.Authority.IsMissing())
            {
                request.Policy.Authority = authority;
            }

            string jwkUrl = "";

            if (!DiscoveryEndpoint.IsSecureScheme(new Uri(url), request.Policy))
            {
                return(new DiscoveryResponse(new InvalidOperationException("HTTPS required"), $"Error connecting to {url}"));
            }

            try
            {
                var httpRequest = new HttpRequestMessage(HttpMethod.Get, url);
                var response    = await client.SendAsync(httpRequest, cancellationToken).ConfigureAwait(false);

                string responseContent = null;

                if (response.Content != null)
                {
                    responseContent = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
                }

                if (!response.IsSuccessStatusCode)
                {
                    return(new DiscoveryResponse(response.StatusCode, $"Error connecting to {url}: {response.ReasonPhrase}", responseContent));
                }

                var disco = new DiscoveryResponse(responseContent, request.Policy);
                if (disco.IsError)
                {
                    return(disco);
                }

                try
                {
                    jwkUrl = disco.JwksUri;
                    if (jwkUrl != null)
                    {
                        response = await client.GetAsync(jwkUrl, cancellationToken).ConfigureAwait(false);

                        if (response.Content != null)
                        {
                            responseContent = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
                        }

                        if (!response.IsSuccessStatusCode)
                        {
                            return(new DiscoveryResponse(response.StatusCode, $"Error connecting to {jwkUrl}: {response.ReasonPhrase}", responseContent));
                        }

                        disco.KeySet = new JsonWebKeySet(responseContent);
                    }

                    return(disco);
                }
                catch (Exception ex)
                {
                    return(new DiscoveryResponse(ex, $"Error connecting to {jwkUrl}"));
                }
            }
            catch (Exception ex)
            {
                return(new DiscoveryResponse(ex, $"Error connecting to {url}"));
            }
        }