* Added ApplyRedirect to LinkedInAuthentication Provider Changed LinkedInAuthenticationHandler to use ApplyRedirect Added LinkedInApplyRedirectContext Changes allow a developer to override the authorization endpoint
66 lines
2.8 KiB
C#
66 lines
2.8 KiB
C#
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Owin.Security.Providers.LinkedIn
|
|
{
|
|
/// <summary>
|
|
/// Default <see cref="ILinkedInAuthenticationProvider"/> implementation.
|
|
/// </summary>
|
|
public class LinkedInAuthenticationProvider : ILinkedInAuthenticationProvider
|
|
{
|
|
/// <summary>
|
|
/// Initializes a <see cref="LinkedInAuthenticationProvider"/>
|
|
/// </summary>
|
|
public LinkedInAuthenticationProvider()
|
|
{
|
|
OnAuthenticated = context => Task.FromResult<object>(null);
|
|
OnReturnEndpoint = context => Task.FromResult<object>(null);
|
|
OnApplyRedirect = context =>
|
|
context.Response.Redirect(context.RedirectUri);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the function that is invoked when the Authenticated method is invoked.
|
|
/// </summary>
|
|
public Func<LinkedInAuthenticatedContext, Task> OnAuthenticated { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the function that is invoked when the ReturnEndpoint method is invoked.
|
|
/// </summary>
|
|
public Func<LinkedInReturnEndpointContext, Task> OnReturnEndpoint { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the delegate that is invoked when the ApplyRedirect method is invoked.
|
|
/// </summary>
|
|
public Action<LinkedInApplyRedirectContext> OnApplyRedirect { get; set; }
|
|
|
|
/// <summary>
|
|
/// Invoked whenever LinkedIn successfully authenticates a user
|
|
/// </summary>
|
|
/// <param name="context">Contains information about the login session as well as the user <see cref="System.Security.Claims.ClaimsIdentity"/>.</param>
|
|
/// <returns>A <see cref="Task"/> representing the completed operation.</returns>
|
|
public virtual Task Authenticated(LinkedInAuthenticatedContext context)
|
|
{
|
|
return OnAuthenticated(context);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Invoked prior to the <see cref="System.Security.Claims.ClaimsIdentity"/> being saved in a local cookie and the browser being redirected to the originally requested URL.
|
|
/// </summary>
|
|
/// <param name="context"></param>
|
|
/// <returns>A <see cref="Task"/> representing the completed operation.</returns>
|
|
public virtual Task ReturnEndpoint(LinkedInReturnEndpointContext context)
|
|
{
|
|
return OnReturnEndpoint(context);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Called when a Challenge causes a redirect to authorize endpoint in the LinkedIn middleware
|
|
/// </summary>
|
|
/// <param name="context">Contains redirect URI and <see cref="AuthenticationProperties"/> of the challenge </param>
|
|
public virtual void ApplyRedirect(LinkedInApplyRedirectContext context)
|
|
{
|
|
OnApplyRedirect(context);
|
|
}
|
|
}
|
|
} |