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 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
|
//------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------
namespace System.IdentityModel.Tokens
{
using System;
using System.Collections.ObjectModel;
using System.Globalization;
using System.IO;
using System.IdentityModel.Claims;
using System.IdentityModel.Policy;
using System.Security.Cryptography;
using System.Security.Principal;
using System.Xml;
using System.Runtime.Serialization;
using System.Collections.Generic;
public class GenericXmlSecurityToken : SecurityToken
{
const int SupportedPersistanceVersion = 1;
string id;
SecurityToken proofToken;
SecurityKeyIdentifierClause internalTokenReference;
SecurityKeyIdentifierClause externalTokenReference;
XmlElement tokenXml;
ReadOnlyCollection<IAuthorizationPolicy> authorizationPolicies;
DateTime effectiveTime;
DateTime expirationTime;
public GenericXmlSecurityToken(
XmlElement tokenXml,
SecurityToken proofToken,
DateTime effectiveTime,
DateTime expirationTime,
SecurityKeyIdentifierClause internalTokenReference,
SecurityKeyIdentifierClause externalTokenReference,
ReadOnlyCollection<IAuthorizationPolicy> authorizationPolicies
)
{
if (tokenXml == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("tokenXml");
}
this.id = GetId(tokenXml);
this.tokenXml = tokenXml;
this.proofToken = proofToken;
this.effectiveTime = effectiveTime.ToUniversalTime();
this.expirationTime = expirationTime.ToUniversalTime();
this.internalTokenReference = internalTokenReference;
this.externalTokenReference = externalTokenReference;
this.authorizationPolicies = authorizationPolicies ?? EmptyReadOnlyCollection<IAuthorizationPolicy>.Instance;
}
public override string Id
{
get { return this.id; }
}
public override DateTime ValidFrom
{
get { return this.effectiveTime; }
}
public override DateTime ValidTo
{
get { return this.expirationTime; }
}
public SecurityKeyIdentifierClause InternalTokenReference
{
get { return this.internalTokenReference; }
}
public SecurityKeyIdentifierClause ExternalTokenReference
{
get { return this.externalTokenReference; }
}
public XmlElement TokenXml
{
get { return this.tokenXml; }
}
public SecurityToken ProofToken
{
get { return this.proofToken; }
}
public ReadOnlyCollection<IAuthorizationPolicy> AuthorizationPolicies
{
get { return this.authorizationPolicies; }
}
public override ReadOnlyCollection<SecurityKey> SecurityKeys
{
get
{
if (this.proofToken != null)
return this.proofToken.SecurityKeys;
else
return EmptyReadOnlyCollection<SecurityKey>.Instance;
}
}
public override string ToString()
{
StringWriter writer = new StringWriter(CultureInfo.InvariantCulture);
writer.WriteLine("Generic XML token:");
writer.WriteLine(" validFrom: {0}", this.ValidFrom);
writer.WriteLine(" validTo: {0}", this.ValidTo);
if (this.internalTokenReference != null)
writer.WriteLine(" InternalTokenReference: {0}", this.internalTokenReference);
if (this.externalTokenReference != null)
writer.WriteLine(" ExternalTokenReference: {0}", this.externalTokenReference);
writer.WriteLine(" Token Element: ({0}, {1})", this.tokenXml.LocalName, this.tokenXml.NamespaceURI);
return writer.ToString();
}
static string GetId(XmlElement tokenXml)
{
if (tokenXml != null)
{
string id = tokenXml.GetAttribute(UtilityStrings.IdAttribute, UtilityStrings.Namespace);
if ( string.IsNullOrEmpty( id ) )
{
// special case SAML 1.1 as this is the only possible ID as
// spec is closed. SAML 2.0 is xs:ID
id = tokenXml.GetAttribute("AssertionID");
// if we are still null, "Id"
if ( string.IsNullOrEmpty( id ) )
{
id = tokenXml.GetAttribute("Id");
}
//This fixes the unecnrypted SAML 2.0 case. Eg: <Assertion ID="_05955298-214f-41e7-b4c3-84dbff7f01b9"
if (string.IsNullOrEmpty(id))
{
id = tokenXml.GetAttribute("ID");
}
}
if ( !string.IsNullOrEmpty(id) )
{
return id;
}
}
return null;
}
public override bool CanCreateKeyIdentifierClause<T>()
{
if (this.internalTokenReference != null && typeof(T) == this.internalTokenReference.GetType())
return true;
if (this.externalTokenReference != null && typeof(T) == this.externalTokenReference.GetType())
return true;
return false;
}
public override T CreateKeyIdentifierClause<T>()
{
if (this.internalTokenReference != null && typeof(T) == this.internalTokenReference.GetType())
return (T)this.internalTokenReference;
if (this.externalTokenReference != null && typeof(T) == this.externalTokenReference.GetType())
return (T)this.externalTokenReference;
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new SecurityTokenException(SR.GetString(SR.UnableToCreateTokenReference)));
}
public override bool MatchesKeyIdentifierClause(SecurityKeyIdentifierClause keyIdentifierClause)
{
if (this.internalTokenReference != null && this.internalTokenReference.Matches(keyIdentifierClause))
{
return true;
}
else if (this.externalTokenReference != null && this.externalTokenReference.Matches(keyIdentifierClause))
{
return true;
}
return false;
}
}
}
|