//-----------------------------------------------------------------------
//
// Copyright (c) Outercurve Foundation. All rights reserved.
//
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.OpenId.RelyingParty {
using System;
using System.Collections.Generic;
using System.Diagnostics.Contracts;
using System.Text;
using System.Web;
using DotNetOpenAuth.Messaging;
using DotNetOpenAuth.OpenId.Messages;
///
/// A serializable snapshot of a verified authentication message.
///
[Serializable]
internal class PositiveAuthenticationResponseSnapshot : IAuthenticationResponse {
///
/// The callback arguments that came with the authentication response.
///
private IDictionary callbackArguments;
///
/// The untrusted callback arguments that came with the authentication response.
///
private IDictionary untrustedCallbackArguments;
///
/// Initializes a new instance of the class.
///
/// The authentication response to copy from.
internal PositiveAuthenticationResponseSnapshot(IAuthenticationResponse copyFrom) {
Requires.NotNull(copyFrom, "copyFrom");
this.ClaimedIdentifier = copyFrom.ClaimedIdentifier;
this.FriendlyIdentifierForDisplay = copyFrom.FriendlyIdentifierForDisplay;
this.Status = copyFrom.Status;
this.Provider = copyFrom.Provider;
this.untrustedCallbackArguments = copyFrom.GetUntrustedCallbackArguments();
// Do this special check to avoid logging a warning for trying to clone a dictionary.
var anonResponse = copyFrom as PositiveAnonymousResponse;
if (anonResponse == null || anonResponse.TrustedCallbackArgumentsAvailable) {
this.callbackArguments = copyFrom.GetCallbackArguments();
} else {
this.callbackArguments = EmptyDictionary.Instance;
}
}
#region IAuthenticationResponse Members
///
/// Gets the Identifier that the end user claims to own. For use with user database storage and lookup.
/// May be null for some failed authentications (i.e. failed directed identity authentications).
///
///
///
///
/// This is the secure identifier that should be used for database storage and lookup.
/// It is not always friendly (i.e. =Arnott becomes =!9B72.7DD1.50A9.5CCD), but it protects
/// user identities against spoofing and other attacks.
///
///
/// For user-friendly identifiers to display, use the
/// property.
///
///
public Identifier ClaimedIdentifier { get; private set; }
///
/// Gets a user-friendly OpenID Identifier for display purposes ONLY.
///
///
///
///
/// This should be put through before
/// sending to a browser to secure against javascript injection attacks.
///
///
/// This property retains some aspects of the user-supplied identifier that get lost
/// in the . For example, XRIs used as user-supplied
/// identifiers (i.e. =Arnott) become unfriendly unique strings (i.e. =!9B72.7DD1.50A9.5CCD).
/// For display purposes, such as text on a web page that says "You're logged in as ...",
/// this property serves to provide the =Arnott string, or whatever else is the most friendly
/// string close to what the user originally typed in.
///
///
/// If the user-supplied identifier is a URI, this property will be the URI after all
/// redirects, and with the protocol and fragment trimmed off.
/// If the user-supplied identifier is an XRI, this property will be the original XRI.
/// If the user-supplied identifier is an OpenID Provider identifier (i.e. yahoo.com),
/// this property will be the Claimed Identifier, with the protocol stripped if it is a URI.
///
///
/// It is very important that this property never be used for database storage
/// or lookup to avoid identity spoofing and other security risks. For database storage
/// and lookup please use the property.
///
///
public string FriendlyIdentifierForDisplay { get; private set; }
///
/// Gets the detailed success or failure status of the authentication attempt.
///
///
public AuthenticationStatus Status { get; private set; }
///
/// Gets information about the OpenId Provider, as advertised by the
/// OpenID discovery documents found at the
/// location.
///
///
/// The Provider endpoint that issued the positive assertion;
/// or null if information about the Provider is unavailable.
///
public IProviderEndpoint Provider { get; private set; }
///
/// Gets the details regarding a failed authentication attempt, if available.
/// This will be set if and only if is .
///
///
public Exception Exception {
get { throw new NotSupportedException(OpenIdStrings.NotSupportedByAuthenticationSnapshot); }
}
///
/// Tries to get an OpenID extension that may be present in the response.
///
/// The type of extension to look for in the response message.
///
/// The extension, if it is found. Null otherwise.
///
///
/// Extensions are returned only if the Provider signed them.
/// Relying parties that do not care if the values were modified in
/// transit should use the method
/// in order to allow the Provider to not sign the extension.
/// Unsigned extensions are completely unreliable and should be
/// used only to prefill user forms since the user or any other third
/// party may have tampered with the data carried by the extension.
/// Signed extensions are only reliable if the relying party
/// trusts the OpenID Provider that signed them. Signing does not mean
/// the relying party can trust the values -- it only means that the values
/// have not been tampered with since the Provider sent the message.
///
public T GetExtension() where T : IOpenIdMessageExtension {
throw new NotSupportedException(OpenIdStrings.NotSupportedByAuthenticationSnapshot);
}
///
/// Tries to get an OpenID extension that may be present in the response.
///
/// Type of the extension to look for in the response.
///
/// The extension, if it is found. Null otherwise.
///
///
/// Extensions are returned only if the Provider signed them.
/// Relying parties that do not care if the values were modified in
/// transit should use the method
/// in order to allow the Provider to not sign the extension.
/// Unsigned extensions are completely unreliable and should be
/// used only to prefill user forms since the user or any other third
/// party may have tampered with the data carried by the extension.
/// Signed extensions are only reliable if the relying party
/// trusts the OpenID Provider that signed them. Signing does not mean
/// the relying party can trust the values -- it only means that the values
/// have not been tampered with since the Provider sent the message.
///
public IOpenIdMessageExtension GetExtension(Type extensionType) {
throw new NotSupportedException(OpenIdStrings.NotSupportedByAuthenticationSnapshot);
}
///
/// Tries to get an OpenID extension that may be present in the response, without
/// requiring it to be signed by the Provider.
///
/// The type of extension to look for in the response message.
///
/// The extension, if it is found. Null otherwise.
///
///
/// Extensions are returned whether they are signed or not.
/// Use the method to retrieve
/// extension responses only if they are signed by the Provider to
/// protect against tampering.
/// Unsigned extensions are completely unreliable and should be
/// used only to prefill user forms since the user or any other third
/// party may have tampered with the data carried by the extension.
/// Signed extensions are only reliable if the relying party
/// trusts the OpenID Provider that signed them. Signing does not mean
/// the relying party can trust the values -- it only means that the values
/// have not been tampered with since the Provider sent the message.
///
public T GetUntrustedExtension() where T : IOpenIdMessageExtension {
throw new NotSupportedException(OpenIdStrings.NotSupportedByAuthenticationSnapshot);
}
///
/// Tries to get an OpenID extension that may be present in the response.
///
/// Type of the extension to look for in the response.
///
/// The extension, if it is found. Null otherwise.
///
///
/// Extensions are returned whether they are signed or not.
/// Use the method to retrieve
/// extension responses only if they are signed by the Provider to
/// protect against tampering.
/// Unsigned extensions are completely unreliable and should be
/// used only to prefill user forms since the user or any other third
/// party may have tampered with the data carried by the extension.
/// Signed extensions are only reliable if the relying party
/// trusts the OpenID Provider that signed them. Signing does not mean
/// the relying party can trust the values -- it only means that the values
/// have not been tampered with since the Provider sent the message.
///
public IOpenIdMessageExtension GetUntrustedExtension(Type extensionType) {
throw new NotSupportedException(OpenIdStrings.NotSupportedByAuthenticationSnapshot);
}
///
/// Gets all the callback arguments that were previously added using
/// or as a natural part
/// of the return_to URL.
///
/// A name-value dictionary. Never null.
///
/// This MAY return any argument on the querystring that came with the authentication response,
/// which may include parameters not explicitly added using
/// .
/// Note that these values are NOT protected against tampering in transit.
///
public IDictionary GetCallbackArguments() {
// Return a copy so that the caller cannot change the contents.
return new Dictionary(this.callbackArguments);
}
///
/// Gets all the callback arguments that were previously added using
/// or as a natural part
/// of the return_to URL.
///
/// A name-value dictionary. Never null.
///
/// Callback parameters are only available even if the RP is in stateless mode,
/// or the callback parameters are otherwise unverifiable as untampered with.
/// Therefore, use this method only when the callback argument is not to be
/// used to make a security-sensitive decision.
///
public IDictionary GetUntrustedCallbackArguments() {
// Return a copy so that the caller cannot change the contents.
return new Dictionary(this.untrustedCallbackArguments);
}
///
/// Gets a callback argument's value that was previously added using
/// .
///
/// The name of the parameter whose value is sought.
///
/// The value of the argument, or null if the named parameter could not be found.
///
///
/// This may return any argument on the querystring that came with the authentication response,
/// which may include parameters not explicitly added using
/// .
/// Note that these values are NOT protected against tampering in transit.
///
public string GetCallbackArgument(string key) {
string value;
this.callbackArguments.TryGetValue(key, out value);
return value;
}
///
/// Gets a callback argument's value that was previously added using
/// .
///
/// The name of the parameter whose value is sought.
///
/// The value of the argument, or null if the named parameter could not be found.
///
///
/// Callback parameters are only available even if the RP is in stateless mode,
/// or the callback parameters are otherwise unverifiable as untampered with.
/// Therefore, use this method only when the callback argument is not to be
/// used to make a security-sensitive decision.
///
public string GetUntrustedCallbackArgument(string key) {
string value;
this.untrustedCallbackArguments.TryGetValue(key, out value);
return value;
}
#endregion
}
}