jellyfin/MediaBrowser.Controller/Entities/User.cs

264 lines
8.3 KiB
C#
Raw Normal View History

2013-03-04 06:43:06 +01:00
using MediaBrowser.Common.Configuration;
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Providers;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Model.Configuration;
2014-09-14 20:47:48 +02:00
using MediaBrowser.Model.Connect;
2013-03-13 06:19:03 +01:00
using MediaBrowser.Model.Serialization;
2013-02-21 02:33:05 +01:00
using System;
using System.IO;
using System.Runtime.Serialization;
using System.Threading;
using System.Threading.Tasks;
namespace MediaBrowser.Controller.Entities
{
/// <summary>
/// Class User
/// </summary>
public class User : BaseItem
{
public static IUserManager UserManager { get; set; }
public static IXmlSerializer XmlSerializer { get; set; }
2014-09-14 17:10:51 +02:00
/// <summary>
/// From now on all user paths will be Id-based.
/// This is for backwards compatibility.
/// </summary>
public bool UsesIdForConfigurationPath { get; set; }
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets or sets the password.
/// </summary>
/// <value>The password.</value>
public string Password { get; set; }
2014-08-15 18:35:41 +02:00
public string LocalPassword { get; set; }
2013-02-21 02:33:05 +01:00
2014-09-14 17:10:51 +02:00
public string ConnectUserName { get; set; }
public string ConnectUserId { get; set; }
2014-09-14 20:47:48 +02:00
public UserLinkType ConnectLinkType { get; set; }
2014-09-14 17:10:51 +02:00
public string ConnectAccessKey { get; set; }
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets or sets the path.
/// </summary>
/// <value>The path.</value>
2013-12-29 15:12:29 +01:00
[IgnoreDataMember]
2013-02-21 02:33:05 +01:00
public override string Path
{
get
{
// Return this so that metadata providers will look in here
return ConfigurationDirectoryPath;
}
set
{
base.Path = value;
}
}
/// <summary>
/// Returns the folder containing the item.
/// If the item is a folder, it returns the folder itself
/// </summary>
/// <value>The containing folder path.</value>
public override string ContainingFolderPath
{
get
{
return Path;
}
}
/// <summary>
/// Gets a value indicating whether this instance is owned item.
/// </summary>
/// <value><c>true</c> if this instance is owned item; otherwise, <c>false</c>.</value>
public override bool IsOwnedItem
{
get
{
return false;
}
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the root folder.
/// </summary>
/// <value>The root folder.</value>
[IgnoreDataMember]
2014-02-21 06:04:11 +01:00
public Folder RootFolder
2013-02-21 02:33:05 +01:00
{
get
{
2014-02-21 06:04:11 +01:00
return LibraryManager.GetUserRootFolder();
2013-02-21 02:33:05 +01:00
}
}
/// <summary>
/// Gets or sets the last login date.
/// </summary>
/// <value>The last login date.</value>
public DateTime? LastLoginDate { get; set; }
/// <summary>
/// Gets or sets the last activity date.
/// </summary>
/// <value>The last activity date.</value>
public DateTime? LastActivityDate { get; set; }
/// <summary>
/// The _configuration
/// </summary>
private UserConfiguration _configuration;
/// <summary>
/// The _configuration initialized
/// </summary>
private bool _configurationInitialized;
/// <summary>
/// The _configuration sync lock
/// </summary>
private object _configurationSyncLock = new object();
/// <summary>
/// Gets the user's configuration
/// </summary>
/// <value>The configuration.</value>
[IgnoreDataMember]
public UserConfiguration Configuration
{
get
{
// Lazy load
2013-03-04 06:43:06 +01:00
LazyInitializer.EnsureInitialized(ref _configuration, ref _configurationInitialized, ref _configurationSyncLock, () => (UserConfiguration)ConfigurationHelper.GetXmlConfiguration(typeof(UserConfiguration), ConfigurationFilePath, XmlSerializer));
2013-02-21 02:33:05 +01:00
return _configuration;
}
private set
{
_configuration = value;
2014-03-25 22:13:55 +01:00
_configurationInitialized = value != null;
2013-02-21 02:33:05 +01:00
}
}
/// <summary>
/// Renames the user.
/// </summary>
/// <param name="newName">The new name.</param>
/// <returns>Task.</returns>
/// <exception cref="System.ArgumentNullException"></exception>
public Task Rename(string newName)
2013-02-21 02:33:05 +01:00
{
if (string.IsNullOrEmpty(newName))
{
2014-09-14 17:10:51 +02:00
throw new ArgumentNullException("newName");
2013-02-21 02:33:05 +01:00
}
// If only the casing is changing, leave the file system alone
2014-09-14 17:10:51 +02:00
if (!UsesIdForConfigurationPath && !newName.Equals(Name, StringComparison.OrdinalIgnoreCase))
2013-02-21 02:33:05 +01:00
{
2014-09-14 17:10:51 +02:00
UsesIdForConfigurationPath = true;
2013-02-21 02:33:05 +01:00
// Move configuration
var newConfigDirectory = GetConfigurationDirectoryPath(newName);
2013-12-29 18:07:29 +01:00
var oldConfigurationDirectory = ConfigurationDirectoryPath;
2013-02-21 02:33:05 +01:00
// Exceptions will be thrown if these paths already exist
if (Directory.Exists(newConfigDirectory))
{
Directory.Delete(newConfigDirectory, true);
}
2013-12-29 18:07:29 +01:00
if (Directory.Exists(oldConfigurationDirectory))
{
Directory.Move(oldConfigurationDirectory, newConfigDirectory);
}
else
{
Directory.CreateDirectory(newConfigDirectory);
}
2013-02-21 02:33:05 +01:00
}
Name = newName;
return RefreshMetadata(new MetadataRefreshOptions
{
ReplaceAllMetadata = true,
ImageRefreshMode = ImageRefreshMode.FullRefresh,
2014-09-14 17:10:51 +02:00
MetadataRefreshMode = MetadataRefreshMode.FullRefresh,
ForceSave = true
}, CancellationToken.None);
2013-02-21 02:33:05 +01:00
}
public override Task UpdateToRepository(ItemUpdateType updateReason, CancellationToken cancellationToken)
{
return UserManager.UpdateUser(this);
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the path to the user's configuration directory
/// </summary>
/// <value>The configuration directory path.</value>
2013-12-29 18:07:29 +01:00
[IgnoreDataMember]
2014-09-14 17:10:51 +02:00
private string ConfigurationDirectoryPath
2013-02-21 02:33:05 +01:00
{
get
{
2013-12-29 18:07:29 +01:00
return GetConfigurationDirectoryPath(Name);
2013-02-21 02:33:05 +01:00
}
}
/// <summary>
/// Gets the configuration directory path.
/// </summary>
/// <param name="username">The username.</param>
/// <returns>System.String.</returns>
private string GetConfigurationDirectoryPath(string username)
{
2013-12-29 15:12:29 +01:00
if (string.IsNullOrEmpty(username))
{
throw new ArgumentNullException("username");
}
2014-09-14 17:10:51 +02:00
var parentPath = ConfigurationManager.ApplicationPaths.UserConfigurationDirectoryPath;
// Legacy
if (!UsesIdForConfigurationPath)
{
var safeFolderName = FileSystem.GetValidFilename(username);
return System.IO.Path.Combine(ConfigurationManager.ApplicationPaths.UserConfigurationDirectoryPath, safeFolderName);
}
2013-02-21 02:33:05 +01:00
2014-09-14 17:10:51 +02:00
return System.IO.Path.Combine(parentPath, Id.ToString("N"));
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Gets the path to the user's configuration file
/// </summary>
/// <value>The configuration file path.</value>
2013-12-29 18:07:29 +01:00
[IgnoreDataMember]
public string ConfigurationFilePath
2013-02-21 02:33:05 +01:00
{
get
{
return System.IO.Path.Combine(ConfigurationDirectoryPath, "config.xml");
}
}
/// <summary>
/// Updates the configuration.
/// </summary>
/// <param name="config">The config.</param>
/// <exception cref="System.ArgumentNullException">config</exception>
2014-06-22 07:52:31 +02:00
public void UpdateConfiguration(UserConfiguration config)
2013-02-21 02:33:05 +01:00
{
if (config == null)
{
throw new ArgumentNullException("config");
}
Configuration = config;
2014-06-22 07:52:31 +02:00
UserManager.UpdateConfiguration(this, Configuration);
2013-02-21 02:33:05 +01:00
}
}
}