#region Copyright
// /************************************************************************
// Copyright (c) 2016 Jamie Rees
// File: CustomAuthenticationConfiguration.cs
// Created By: Jamie Rees
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
// ************************************************************************/
#endregion
using Nancy.Cryptography;
using Ombi.Store.Models.Emby;
using Ombi.Store.Models.Plex;
using Ombi.Store.Repository;
namespace Ombi.UI.Authentication
{
public class CustomAuthenticationConfiguration
{
internal const string DefaultRedirectQuerystringKey = "returnUrl";
///
/// Gets or sets the forms authentication query string key for storing the return url
///
public string RedirectQuerystringKey { get; set; }
///
/// Gets or sets the redirect url for pages that require authentication
///
public string RedirectUrl { get; set; }
/// Gets or sets the username/identifier mapper
public IUserRepository LocalUserRepository { get; set; }
public IExternalUserRepository PlexUserRepository { get; set; }
public IExternalUserRepository EmbyUserRepository { get; set; }
/// Gets or sets RequiresSSL property
/// The flag that indicates whether SSL is required
public bool RequiresSSL { get; set; }
///
/// Gets or sets whether to redirect to login page during unauthorized access.
///
public bool DisableRedirect { get; set; }
/// Gets or sets the domain of the auth cookie
public string Domain { get; set; }
/// Gets or sets the path of the auth cookie
public string Path { get; set; }
/// Gets or sets the cryptography configuration
public CryptographyConfiguration CryptographyConfiguration { get; set; }
///
/// Gets a value indicating whether the configuration is valid or not.
///
public virtual bool IsValid => (this.DisableRedirect || !string.IsNullOrEmpty(this.RedirectUrl)) && (this.LocalUserRepository != null && PlexUserRepository != null && this.CryptographyConfiguration != null) && (this.CryptographyConfiguration.EncryptionProvider != null && this.CryptographyConfiguration.HmacProvider != null);
///
/// Initializes a new instance of the class.
///
public CustomAuthenticationConfiguration()
: this(CryptographyConfiguration.Default)
{
}
///
/// Initializes a new instance of the class.
///
/// Cryptography configuration
public CustomAuthenticationConfiguration(CryptographyConfiguration cryptographyConfiguration)
{
this.CryptographyConfiguration = cryptographyConfiguration;
this.RedirectQuerystringKey = "returnUrl";
}
}
}