Sdílet prostřednictvím


Postupy: Porovnávání deklarací

Infrastruktura modelu identit ve Windows Communication Foundation (WCF) se používá k provádění kontroly autorizace. Běžným úkolem je porovnat deklarace identity v kontextu autorizace s deklaracemi požadovanými k provedení požadované akce nebo přístupu k požadovanému zdroji. Toto téma popisuje, jak porovnat deklarace identity, včetně předdefinovaných a vlastních typů deklarací identity. Další informace o infrastruktuře modelu identit najdete v tématu Správa deklarací identit a autorizace pomocí modelu identit.

Porovnání deklarací identity zahrnuje porovnání tří částí deklarace identity (typ, právo a prostředek) se stejnými částmi v jiné deklaraci identity, abyste zjistili, jestli jsou stejné. Viz následující příklad.

Claim c1 = Claim.CreateNameClaim("someone");
Claim c2 = Claim.CreateNameClaim("someone");
Dim c1 As Claim = Claim.CreateNameClaim("someone")
Dim c2 As Claim = Claim.CreateNameClaim("someone")

Obě deklarace identity mají typ Namedeklarace identity , právo PossessPropertyna a prostředek řetězce "someone". Vzhledem k tomu, že všechny tři části deklarace identity jsou stejné, deklarace identity jsou stejné.

Předdefinované typy deklarací identity se porovnávají pomocí Equals metody. V případě potřeby se použije srovnávací kód specifický pro deklaraci identity. Například vzhledem k následujícím dvěma deklaracem hlavního názvu uživatele (UPN) vrátí trueporovnávací kód v Equals metodě za předpokladuexample\someone, že identifikuje stejného uživatele domény jako someone@example.com.

Claim c1 = Claim.CreateUpnClaim("someone@example.com");
Claim c2 = Claim.CreateUpnClaim("example\\someone");
Dim c1 As Claim = Claim.CreateUpnClaim("someone@example.com")
Dim c2 As Claim = Claim.CreateUpnClaim("example\someone")

Vlastní typy deklarací identity je také možné porovnat pomocí Equals metody. V případech, kdy typ vrácený Resource vlastností deklarace identity je něco jiného než primitivní typ, vrátí true pouze v případě, Equals že hodnoty vrácené Resource vlastnostmi jsou rovny podle Equals metody. V případech, kdy to není vhodné, by vlastní typ vrácený Resource vlastností měl přepsat Equals a GetHashCode metody k provedení jakéhokoli vlastního zpracování je nezbytné.

Porovnání předdefinovaných deklarací identity

  1. Při použití dvou instancí Claim třídy použijte Equals k porovnání porovnání, jak je znázorněno v následujícím kódu.

    public bool CompareTwoClaims(Claim c1, Claim c2)
    {
        return c1.Equals(c2);
    }
    
    Public Function CompareTwoClaims(ByVal c1 As Claim, ByVal c2 As Claim) As Boolean
        Return c1.Equals(c2)
    End Function
    

Porovnání vlastních deklarací identity s primitivními typy prostředků

  1. U vlastních deklarací identity s primitivními typy prostředků je možné porovnání provést jako u předdefinovaných deklarací identity, jak je znázorněno v následujícím kódu.

    public bool CompareTwoClaims(Claim c1, Claim c2)
    {
        return c1.Equals(c2);
    }
    
    Public Function CompareTwoClaims(ByVal c1 As Claim, _
    ByVal c2 As Claim) As Boolean
        Return c1.Equals(c2)
    
    End Function
    
  2. U vlastních deklarací identity s typy prostředků založenými na struktuře nebo třídě by měl typ prostředku přepsat metodu Equals .

  3. Nejprve zkontrolujte, zda obj je nullparametr , a pokud ano, vrátit false.

    if (obj == null) return false;
    
    If obj Is Nothing Then
        Return False
    
  4. Další volání ReferenceEquals a předání a obj jako this parametry. Pokud se vrátí true, vraťte true.

    if (ReferenceEquals(this, obj)) return true;
    
    If ReferenceEquals(Me, obj) Then
        Return True
    
  5. Další pokus o přiřazení obj k místní proměnné typu třídy. Pokud se to nezdaří, odkaz je null. V takových případech vraťte false.

  6. Proveďte vlastní porovnání potřebné k správnému porovnání aktuální deklarace identity se zadanou deklarací identity.

Příklad

Následující příklad ukazuje porovnání vlastních deklarací identity, ve kterých je prostředek deklarace identity nemitivitivovým typem.

using System;
using System.IdentityModel.Claims;

namespace Samples
{
    public sealed class MyResourceType
    {
        // private members
        private string text;
        private int number;

        // Constructors
        public MyResourceType()
        {
        }

        public MyResourceType(string text, int number)
        {
            this.text = text;
            this.number = number;
        }

        // Public properties
        public string Text { get { return this.text; } }
        public int Number { get { return this.number; } }

        // Override Object.Equals to perform specific comparison
        public override bool Equals(Object obj)
        {
            // If the object we're being asked to compare ourselves to is null
            // then return false
            if (obj == null)
                return false;

            // If the object we're being asked to compare ourselves to is us
            // then return true
            if (ReferenceEquals(this, obj))
                return true;

            // Try to convert the object we're being asked to compare ourselves to
            // into an instance of MyResourceType
            MyResourceType rhs = obj as MyResourceType;

            // If the object we're being asked to compare ourselves to
            // isn't an instance of MyResourceType then return false
            if (rhs == null)
                return false;

            // Return true if our members are the same as those of the object
            // we're being asked to compare ourselves to. Otherwise return false
            return (this.text == rhs.text && this.number == rhs.number);
        }

        public override int GetHashCode()
        {
            return (this.text.GetHashCode() ^ this.number.GetHashCode());
        }
    }

    class Program
    {
        public static void Main()
        {
            // Create two claims
            Claim c1 = new Claim("http://example.org/claims/mycustomclaim",
                new MyResourceType("Martin", 38), Rights.PossessProperty);
            Claim c2 = new Claim("http://example.org/claims/mycustomclaim",
                new MyResourceType("Martin", 38), Rights.PossessProperty);

            // Compare the claims
            if (c1.Equals(c2))
                Console.WriteLine("Claims are equal");
            else
                Console.WriteLine("Claims are not equal");
        }
    }
}
Imports System.IdentityModel.Claims
Imports System.Security.Permissions

NotInheritable Public Class MyResourceType
    ' private members
    Private textValue As String
    Private numberValue As Integer


    ' Constructors
    Public Sub New()

    End Sub

    Public Sub New(ByVal textVal As String, ByVal numberValue As Integer)
        Me.textValue = textVal
        Me.numberValue = numberValue

    End Sub

    ' Public properties

    Public ReadOnly Property Text() As String
        Get
            Return Me.textValue
        End Get
    End Property

    Public ReadOnly Property Number() As Integer
        Get
            Return Me.numberValue
        End Get
    End Property
    ' Override Object.Equals to perform a specific comparison.
    Public Overrides Function Equals(ByVal obj As [Object]) As Boolean
        ' If the object being compared to is null then return false.
        If obj Is Nothing Then
            Return False
        End If
        ' If the object we are being asked to compare ourselves to is us
        ' then return true.
        If ReferenceEquals(Me, obj) Then
            Return True
        End If
        ' Try to convert the object we are being asked to compare ourselves to
        ' into an instance of MyResourceType.
        Dim rhs As MyResourceType = CType(obj, MyResourceType)

        ' If the object being compared to is not an instance of 
        ' MyResourceType then return false.
        If rhs Is Nothing Then
            Return False
        End If
        ' Return true if members are the same as those of the object
        ' being asked to compare to; otherwise, return false.
        Return Me.textValue = rhs.textValue AndAlso Me.numberValue = rhs.numberValue

    End Function

    Public Overrides Function GetHashCode() As Integer
        Return Me.textValue.GetHashCode() ^ Me.numberValue.GetHashCode()

    End Function
End Class
Class Program

    Public Shared Sub Main()
        ' Create two claims.
        Dim c1 As New Claim("http://example.org/claims/mycustomclaim", _
           New MyResourceType("Martin", 38), Rights.PossessProperty)
        Dim c2 As New Claim("http://example.org/claims/mycustomclaim", _
           New MyResourceType("Martin", 38), Rights.PossessProperty)

        ' Compare the claims.
        If c1.Equals(c2) Then
            Console.WriteLine("Claims are equal")
        Else
            Console.WriteLine("Claims are not equal")
        End If

    End Sub
End Class

Viz také