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
|
//-----------------------------------------------------------------------
// <copyright file="StoreRequest.cs" company="Outercurve Foundation">
// Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.OpenId.Extensions.AttributeExchange {
using System;
using System.Collections.ObjectModel;
using System.Linq;
using DotNetOpenAuth.Messaging;
using DotNetOpenAuth.OpenId.Messages;
/// <summary>
/// The Attribute Exchange Store message, request leg.
/// </summary>
[Serializable]
public sealed class StoreRequest : ExtensionBase, IMessageWithEvents {
/// <summary>
/// The factory method that may be used in deserialization of this message.
/// </summary>
internal static readonly StandardOpenIdExtensionFactory.CreateDelegate Factory = (typeUri, data, baseMessage, isProviderRole) => {
if (typeUri == Constants.TypeUri && isProviderRole) {
string mode;
if (data.TryGetValue("mode", out mode) && mode == Mode) {
return new StoreRequest();
}
}
return null;
};
/// <summary>
/// The value of the 'mode' parameter.
/// </summary>
[MessagePart("mode", IsRequired = true)]
private const string Mode = "store_request";
/// <summary>
/// The collection of provided attribute values. This field will never be null.
/// </summary>
private readonly KeyedCollection<string, AttributeValues> attributesProvided = new KeyedCollectionDelegate<string, AttributeValues>(av => av.TypeUri);
/// <summary>
/// Initializes a new instance of the <see cref="StoreRequest"/> class.
/// </summary>
public StoreRequest()
: base(new Version(1, 0), Constants.TypeUri, null) {
}
/// <summary>
/// Gets the collection of all the attributes that are included in the store request.
/// </summary>
public KeyedCollection<string, AttributeValues> Attributes {
get { return this.attributesProvided; }
}
#region IMessageWithEvents Members
/// <summary>
/// Called when the message is about to be transmitted,
/// before it passes through the channel binding elements.
/// </summary>
void IMessageWithEvents.OnSending() {
var fields = ((IMessage)this).ExtraData;
fields.Clear();
AXUtilities.SerializeAttributes(fields, this.attributesProvided);
}
/// <summary>
/// Called when the message has been received,
/// after it passes through the channel binding elements.
/// </summary>
void IMessageWithEvents.OnReceiving() {
var fields = ((IMessage)this).ExtraData;
foreach (var att in AXUtilities.DeserializeAttributes(fields)) {
this.Attributes.Add(att);
}
}
#endregion
/// <summary>
/// Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>.
/// </summary>
/// <param name="obj">The <see cref="T:System.Object"/> to compare with the current <see cref="T:System.Object"/>.</param>
/// <returns>
/// true if the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>; otherwise, false.
/// </returns>
/// <exception cref="T:System.NullReferenceException">
/// The <paramref name="obj"/> parameter is null.
/// </exception>
public override bool Equals(object obj) {
var other = obj as StoreRequest;
if (other == null) {
return false;
}
if (this.Version != other.Version) {
return false;
}
if (!MessagingUtilities.AreEquivalentUnordered(this.Attributes.ToList(), other.Attributes.ToList())) {
return false;
}
return true;
}
/// <summary>
/// Serves as a hash function for a particular type.
/// </summary>
/// <returns>
/// A hash code for the current <see cref="T:System.Object"/>.
/// </returns>
public override int GetHashCode() {
unchecked {
int hashCode = this.Version.GetHashCode();
foreach (AttributeValues att in this.Attributes) {
hashCode += att.GetHashCode();
}
return hashCode;
}
}
}
}
|