blob: 9662cb2e4db277923f261a7fb70262a91eb1cb0e (
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
|
//-----------------------------------------------------------------------
// <copyright file="InMemoryClientAuthorizationTracker.cs" company="Outercurve Foundation">
// Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.ApplicationBlock {
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.ServiceModel;
using System.Text;
using System.Threading;
using DotNetOpenAuth.Messaging;
using DotNetOpenAuth.OAuth2;
#if SAMPLESONLY
internal class InMemoryClientAuthorizationTracker : IClientAuthorizationTracker {
private readonly Dictionary<int, IAuthorizationState> savedStates = new Dictionary<int, IAuthorizationState>();
private int stateCounter;
#region Implementation of IClientTokenManager
/// <summary>
/// Gets the state of the authorization for a given callback URL and client state.
/// </summary>
/// <param name="callbackUrl">The callback URL.</param>
/// <param name="clientState">State of the client stored at the beginning of an authorization request.</param>
/// <returns>The authorization state; may be <c>null</c> if no authorization state matches.</returns>
public IAuthorizationState GetAuthorizationState(Uri callbackUrl, string clientState) {
IAuthorizationState state;
if (this.savedStates.TryGetValue(int.Parse(clientState), out state)) {
if (state.Callback != callbackUrl) {
throw new DotNetOpenAuth.Messaging.ProtocolException("Client state and callback URL do not match.");
}
}
return state;
}
#endregion
internal IAuthorizationState NewAuthorization(HashSet<string> scope, out string clientState) {
int counter = Interlocked.Increment(ref this.stateCounter);
clientState = counter.ToString(CultureInfo.InvariantCulture);
return this.savedStates[counter] = new AuthorizationState(scope);
}
}
#endif
}
|