blob: 01dae40217099f31fe6d14140a782efe0b3a6857 (
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
86
87
88
89
|
//-----------------------------------------------------------------------
// <copyright file="DiscoveryResult.cs" company="Scott Hanselman, Andrew Arnott">
// Copyright (c) Scott Hanselman, Andrew Arnott. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.Yadis {
using System;
using System.IO;
using System.Net.Mime;
using System.Web.UI.HtmlControls;
using System.Xml;
using DotNetOpenAuth.Messaging;
/// <summary>
/// Contains the result of YADIS discovery.
/// </summary>
internal class DiscoveryResult {
/// <summary>
/// Initializes a new instance of the <see cref="DiscoveryResult"/> class.
/// </summary>
/// <param name="requestUri">The user-supplied identifier.</param>
/// <param name="initialResponse">The initial response.</param>
/// <param name="finalResponse">The final response.</param>
public DiscoveryResult(Uri requestUri, CachedDirectWebResponse initialResponse, CachedDirectWebResponse finalResponse) {
this.RequestUri = requestUri;
this.NormalizedUri = initialResponse.FinalUri;
if (finalResponse == null) {
this.ContentType = initialResponse.ContentType;
this.ResponseText = initialResponse.GetResponseString();
this.IsXrds = this.ContentType != null && this.ContentType.MediaType == ContentTypes.Xrds;
} else {
this.ContentType = finalResponse.ContentType;
this.ResponseText = finalResponse.GetResponseString();
this.IsXrds = true;
if (initialResponse != finalResponse) {
this.YadisLocation = finalResponse.RequestUri;
}
}
}
/// <summary>
/// Gets the URI of the original YADIS discovery request.
/// This is the user supplied Identifier as given in the original
/// YADIS discovery request.
/// </summary>
public Uri RequestUri { get; private set; }
/// <summary>
/// Gets the fully resolved (after redirects) URL of the user supplied Identifier.
/// This becomes the ClaimedIdentifier.
/// </summary>
public Uri NormalizedUri { get; private set; }
/// <summary>
/// Gets the location the XRDS document was downloaded from, if different
/// from the user supplied Identifier.
/// </summary>
public Uri YadisLocation { get; private set; }
/// <summary>
/// Gets the Content-Type associated with the <see cref="ResponseText"/>.
/// </summary>
public ContentType ContentType { get; private set; }
/// <summary>
/// Gets the text in the final response.
/// This may be an XRDS document or it may be an HTML document,
/// as determined by the <see cref="IsXrds"/> property.
/// </summary>
public string ResponseText { get; private set; }
/// <summary>
/// Gets a value indicating whether the <see cref="ResponseText"/>
/// represents an XRDS document. False if the response is an HTML document.
/// </summary>
public bool IsXrds { get; private set; }
/// <summary>
/// Gets a value indicating whether discovery resulted in an
/// XRDS document at a referred location.
/// </summary>
/// <value><c>true</c> if the response to the userSuppliedIdentifier
/// pointed to a different URL for the XRDS document.</value>
public bool UsedYadisLocation {
get { return this.YadisLocation != null; }
}
}
}
|