blob: 0bc55c2be6e56d8f5e2c32a6732dda28bc4628ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
//-----------------------------------------------------------------------
// <copyright file="IdentifierDiscoveryServices.cs" company="Outercurve Foundation">
// Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.OpenId {
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Threading;
using System.Threading.Tasks;
using DotNetOpenAuth.Configuration;
using DotNetOpenAuth.Logging;
using DotNetOpenAuth.Messaging;
using Validation;
/// <summary>
/// A service that can perform discovery on OpenID identifiers.
/// </summary>
internal class IdentifierDiscoveryServices {
/// <summary>
/// The RP or OP that is hosting these services.
/// </summary>
private readonly IOpenIdHost host;
/// <summary>
/// Backing field for the <see cref="DiscoveryServices"/> property.
/// </summary>
private readonly IList<IIdentifierDiscoveryService> discoveryServices = new List<IIdentifierDiscoveryService>(2);
/// <summary>
/// Initializes a new instance of the <see cref="IdentifierDiscoveryServices"/> class.
/// </summary>
/// <param name="host">The RP or OP that creates this instance.</param>
internal IdentifierDiscoveryServices(IOpenIdHost host) {
Requires.NotNull(host, "host");
this.host = host;
this.discoveryServices.AddRange(OpenIdElement.Configuration.RelyingParty.DiscoveryServices.CreateInstances(true, host.HostFactories));
}
/// <summary>
/// Gets the list of services that can perform discovery on identifiers given.
/// </summary>
public IList<IIdentifierDiscoveryService> DiscoveryServices {
get { return this.discoveryServices; }
}
/// <summary>
/// Performs discovery on the specified identifier.
/// </summary>
/// <param name="identifier">The identifier to discover services for.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>A non-null sequence of services discovered for the identifier.</returns>
public async Task<IEnumerable<IdentifierDiscoveryResult>> DiscoverAsync(Identifier identifier, CancellationToken cancellationToken) {
Requires.NotNull(identifier, "identifier");
IEnumerable<IdentifierDiscoveryResult> results = Enumerable.Empty<IdentifierDiscoveryResult>();
foreach (var discoverer in this.DiscoveryServices) {
var discoveryResults = await discoverer.DiscoverAsync(identifier, cancellationToken);
results = results.Concat(discoveryResults.Results.CacheGeneratedResults());
if (discoveryResults.AbortDiscoveryChain) {
Logger.OpenId.InfoFormat("Further discovery on '{0}' was stopped by the {1} discovery service.", identifier, discoverer.GetType().Name);
break;
}
}
// If any OP Identifier service elements were found, we must not proceed
// to use any Claimed Identifier services, per OpenID 2.0 sections 7.3.2.2 and 11.2.
// For a discussion on this topic, see
// http://groups.google.com/group/dotnetopenid/browse_thread/thread/4b5a8c6b2210f387/5e25910e4d2252c8
// Sometimes the IIdentifierDiscoveryService will automatically filter this for us, but
// just to be sure, we'll do it here as well.
if (!this.host.SecuritySettings.AllowDualPurposeIdentifiers) {
results = results.CacheGeneratedResults(); // avoid performing discovery repeatedly
var opIdentifiers = results.Where(result => result.ClaimedIdentifier == result.Protocol.ClaimedIdentifierForOPIdentifier);
var claimedIdentifiers = results.Where(result => result.ClaimedIdentifier != result.Protocol.ClaimedIdentifierForOPIdentifier);
results = opIdentifiers.Any() ? opIdentifiers : claimedIdentifiers;
}
return results;
}
}
}
|