blob: 2fa70a3ff838d99d1fecae22002d38e31285d668 (
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
|
//-----------------------------------------------------------------------
// <copyright file="UIRequestAtRelyingPartyFactory.cs" company="Andrew Arnott">
// Copyright (c) Andrew Arnott. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.ApplicationBlock.CustomExtensions {
using System.Collections.Generic;
using DotNetOpenAuth.Messaging;
using DotNetOpenAuth.OpenId.ChannelElements;
using DotNetOpenAuth.OpenId.Extensions.UI;
/// <summary>
/// An extension factory that allows the <see cref="UIRequest"/> extension to be received by the relying party.
/// </summary>
/// <remarks>
/// Typically UIRequest is only received by the Provider. But Google mirrors back this data to the relying party
/// if our web user is already logged into Google.
/// See the OpenIdRelyingPartyWebForms sample's DetectGoogleSession.aspx page for usage of this factory.
/// </remarks>
public class UIRequestAtRelyingPartyFactory : IOpenIdExtensionFactory {
/// <summary>
/// The Type URI for the UI extension.
/// </summary>
private const string UITypeUri = "http://specs.openid.net/extensions/ui/1.0";
/// <summary>
/// Allows UIRequest extensions to be received by the relying party. Useful when Google mirrors back the request
/// to indicate that a user is logged in.
/// </summary>
public DotNetOpenAuth.OpenId.Messages.IOpenIdMessageExtension Create(string typeUri, IDictionary<string, string> data, IProtocolMessageWithExtensions baseMessage, bool isProviderRole) {
if (typeUri == UITypeUri && !isProviderRole) {
return new UIRequest();
}
return null;
}
}
}
|