* Evernote provider is now available. Based on Evernote SDK for .NET and the obsolete doc (ie. https://dev.evernote.com/doc/articles/authentication.php) (Step 3 is POST, not GET) * Fix SyncrhonizationContext deadlock caused by ASP.NET site * Evernote provider now working trought Xamarin OAuthAuthenticator and Identity Server 3 * Add claims for notestoreuri and accesstoken * Evernote OK, before cleanup * Cleanup * Remove my credentials in demo project. * Change the default URL to lower case
98 lines
3.7 KiB
C#
98 lines
3.7 KiB
C#
using System;
|
|
using System.Net.Http;
|
|
using Microsoft.Owin;
|
|
using Microsoft.Owin.Security;
|
|
using Owin.Security.Providers.Evernote.Messages;
|
|
|
|
namespace Owin.Security.Providers.Evernote
|
|
{
|
|
public class EvernoteAuthenticationOptions : AuthenticationOptions
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the a pinned certificate validator to use to validate the endpoints used
|
|
/// in back channel communications belong to Evernote
|
|
/// </summary>
|
|
/// <value>
|
|
/// The pinned certificate validator.
|
|
/// </value>
|
|
/// <remarks>
|
|
/// If this property is null then the default certificate checks are performed,
|
|
/// validating the subject name and if the signing chain is a trusted party.
|
|
/// </remarks>
|
|
public ICertificateValidator BackchannelCertificateValidator { get; set; }
|
|
|
|
/// <summary>
|
|
/// The HttpMessageHandler used to communicate with Evernote.
|
|
/// This cannot be set at the same time as BackchannelCertificateValidator unless the value
|
|
/// can be downcast to a WebRequestHandler.
|
|
/// </summary>
|
|
public HttpMessageHandler BackchannelHttpHandler { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets timeout value in milliseconds for back channel communications with Evernote.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The back channel timeout in milliseconds.
|
|
/// </value>
|
|
public TimeSpan BackchannelTimeout { get; set; }
|
|
|
|
/// <summary>
|
|
/// The request path within the application's base path where the user-agent will be returned.
|
|
/// The middleware will process this request when it arrives.
|
|
/// Default value is "/signin-Evernote".
|
|
/// </summary>
|
|
public PathString CallbackPath { get; set; }
|
|
|
|
/// <summary>
|
|
/// Get or sets the text that the user can display on a sign in user interface.
|
|
/// </summary>
|
|
public string Caption
|
|
{
|
|
get { return Description.Caption; }
|
|
set { Description.Caption = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the Evernote supplied Application Key
|
|
/// </summary>
|
|
public string AppKey { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the Evernote supplied Application Secret
|
|
/// </summary>
|
|
public string AppSecret { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the Evernote sandbox mode
|
|
/// </summary>
|
|
public bool IsSandBox { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the <see cref="IEvernoteAuthenticationProvider" /> used in the authentication events
|
|
/// </summary>
|
|
public IEvernoteAuthenticationProvider Provider { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the name of another authentication middleware which will be responsible for actually issuing a user
|
|
/// <see cref="System.Security.Claims.ClaimsIdentity" />.
|
|
/// </summary>
|
|
public string SignInAsAuthenticationType { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the type used to secure data handled by the middleware.
|
|
/// </summary>
|
|
public ISecureDataFormat<RequestToken> StateDataFormat { get; set; }
|
|
|
|
/// <summary>
|
|
/// Initializes a new <see cref="EvernoteAuthenticationOptions" />
|
|
/// </summary>
|
|
public EvernoteAuthenticationOptions()
|
|
: base("Evernote")
|
|
{
|
|
Caption = Constants.DefaultAuthenticationType;
|
|
CallbackPath = new PathString("/signin-evernote");
|
|
AuthenticationMode = AuthenticationMode.Passive;
|
|
BackchannelTimeout = TimeSpan.FromSeconds(60);
|
|
}
|
|
}
|
|
} |