2019-01-06 20:50:43 +00:00
|
|
|
using System;
|
2016-10-29 05:40:15 +00:00
|
|
|
using System.Collections.Concurrent;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.IO;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Threading;
|
|
|
|
using MediaBrowser.Common.Configuration;
|
|
|
|
using MediaBrowser.Common.Events;
|
|
|
|
using MediaBrowser.Common.Extensions;
|
|
|
|
using MediaBrowser.Model.Configuration;
|
|
|
|
using MediaBrowser.Model.IO;
|
|
|
|
using MediaBrowser.Model.Serialization;
|
2019-01-13 19:20:16 +00:00
|
|
|
using Microsoft.Extensions.Logging;
|
2016-10-29 05:40:15 +00:00
|
|
|
|
2017-02-20 20:50:58 +00:00
|
|
|
namespace Emby.Server.Implementations.AppBase
|
2016-10-29 05:40:15 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Class BaseConfigurationManager
|
|
|
|
/// </summary>
|
|
|
|
public abstract class BaseConfigurationManager : IConfigurationManager
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the type of the configuration.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The type of the configuration.</value>
|
|
|
|
protected abstract Type ConfigurationType { get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Occurs when [configuration updated].
|
|
|
|
/// </summary>
|
|
|
|
public event EventHandler<EventArgs> ConfigurationUpdated;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Occurs when [configuration updating].
|
|
|
|
/// </summary>
|
|
|
|
public event EventHandler<ConfigurationUpdateEventArgs> NamedConfigurationUpdating;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Occurs when [named configuration updated].
|
|
|
|
/// </summary>
|
|
|
|
public event EventHandler<ConfigurationUpdateEventArgs> NamedConfigurationUpdated;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the logger.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The logger.</value>
|
|
|
|
protected ILogger Logger { get; private set; }
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the XML serializer.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The XML serializer.</value>
|
|
|
|
protected IXmlSerializer XmlSerializer { get; private set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the application paths.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The application paths.</value>
|
|
|
|
public IApplicationPaths CommonApplicationPaths { get; private set; }
|
|
|
|
public readonly IFileSystem FileSystem;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The _configuration loaded
|
|
|
|
/// </summary>
|
|
|
|
private bool _configurationLoaded;
|
|
|
|
/// <summary>
|
|
|
|
/// The _configuration sync lock
|
|
|
|
/// </summary>
|
|
|
|
private object _configurationSyncLock = new object();
|
|
|
|
/// <summary>
|
|
|
|
/// The _configuration
|
|
|
|
/// </summary>
|
|
|
|
private BaseApplicationConfiguration _configuration;
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the system configuration
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The configuration.</value>
|
|
|
|
public BaseApplicationConfiguration CommonConfiguration
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
// Lazy load
|
2019-02-06 19:38:42 +00:00
|
|
|
LazyInitializer.EnsureInitialized(ref _configuration, ref _configurationLoaded, ref _configurationSyncLock, () => (BaseApplicationConfiguration)ConfigurationHelper.GetXmlConfiguration(ConfigurationType, CommonApplicationPaths.SystemConfigurationFilePath, XmlSerializer));
|
2016-10-29 05:40:15 +00:00
|
|
|
return _configuration;
|
|
|
|
}
|
|
|
|
protected set
|
|
|
|
{
|
|
|
|
_configuration = value;
|
|
|
|
|
|
|
|
_configurationLoaded = value != null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private ConfigurationStore[] _configurationStores = { };
|
|
|
|
private IConfigurationFactory[] _configurationFactories = { };
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Initializes a new instance of the <see cref="BaseConfigurationManager" /> class.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="applicationPaths">The application paths.</param>
|
2018-12-14 23:06:57 +00:00
|
|
|
/// <param name="loggerFactory">The logger factory.</param>
|
2016-10-29 05:40:15 +00:00
|
|
|
/// <param name="xmlSerializer">The XML serializer.</param>
|
2019-01-06 20:50:43 +00:00
|
|
|
/// <param name="fileSystem">The file system</param>
|
2018-12-13 13:18:25 +00:00
|
|
|
protected BaseConfigurationManager(IApplicationPaths applicationPaths, ILoggerFactory loggerFactory, IXmlSerializer xmlSerializer, IFileSystem fileSystem)
|
2016-10-29 05:40:15 +00:00
|
|
|
{
|
|
|
|
CommonApplicationPaths = applicationPaths;
|
|
|
|
XmlSerializer = xmlSerializer;
|
|
|
|
FileSystem = fileSystem;
|
2018-12-13 13:18:25 +00:00
|
|
|
Logger = loggerFactory.CreateLogger(GetType().Name);
|
2016-10-29 05:40:15 +00:00
|
|
|
|
|
|
|
UpdateCachePath();
|
|
|
|
}
|
|
|
|
|
|
|
|
public virtual void AddParts(IEnumerable<IConfigurationFactory> factories)
|
|
|
|
{
|
|
|
|
_configurationFactories = factories.ToArray();
|
|
|
|
|
|
|
|
_configurationStores = _configurationFactories
|
|
|
|
.SelectMany(i => i.GetConfigurations())
|
|
|
|
.ToArray();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Saves the configuration.
|
|
|
|
/// </summary>
|
|
|
|
public void SaveConfiguration()
|
|
|
|
{
|
2018-12-13 13:18:25 +00:00
|
|
|
Logger.LogInformation("Saving system configuration");
|
2016-10-29 05:40:15 +00:00
|
|
|
var path = CommonApplicationPaths.SystemConfigurationFilePath;
|
|
|
|
|
2019-01-26 21:08:04 +00:00
|
|
|
Directory.CreateDirectory(Path.GetDirectoryName(path));
|
2016-10-29 05:40:15 +00:00
|
|
|
|
|
|
|
lock (_configurationSyncLock)
|
|
|
|
{
|
|
|
|
XmlSerializer.SerializeToFile(CommonConfiguration, path);
|
|
|
|
}
|
|
|
|
|
|
|
|
OnConfigurationUpdated();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Called when [configuration updated].
|
|
|
|
/// </summary>
|
|
|
|
protected virtual void OnConfigurationUpdated()
|
|
|
|
{
|
|
|
|
UpdateCachePath();
|
|
|
|
|
|
|
|
EventHelper.QueueEventIfNotNull(ConfigurationUpdated, this, EventArgs.Empty, Logger);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Replaces the configuration.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="newConfiguration">The new configuration.</param>
|
2019-01-13 20:37:13 +00:00
|
|
|
/// <exception cref="ArgumentNullException">newConfiguration</exception>
|
2016-10-29 05:40:15 +00:00
|
|
|
public virtual void ReplaceConfiguration(BaseApplicationConfiguration newConfiguration)
|
|
|
|
{
|
|
|
|
if (newConfiguration == null)
|
|
|
|
{
|
2019-01-06 20:50:43 +00:00
|
|
|
throw new ArgumentNullException(nameof(newConfiguration));
|
2016-10-29 05:40:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ValidateCachePath(newConfiguration);
|
|
|
|
|
|
|
|
CommonConfiguration = newConfiguration;
|
|
|
|
SaveConfiguration();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Updates the items by name path.
|
|
|
|
/// </summary>
|
|
|
|
private void UpdateCachePath()
|
|
|
|
{
|
|
|
|
string cachePath;
|
2019-02-09 23:37:35 +00:00
|
|
|
// If the configuration file has no entry (i.e. not set in UI)
|
2016-10-29 05:40:15 +00:00
|
|
|
if (string.IsNullOrWhiteSpace(CommonConfiguration.CachePath))
|
|
|
|
{
|
2019-02-09 23:37:35 +00:00
|
|
|
// If the current live configuration has no entry (i.e. not set on CLI/envvars, during startup)
|
|
|
|
if (string.IsNullOrWhiteSpace(((BaseApplicationPaths)CommonApplicationPaths).CachePath))
|
|
|
|
{
|
|
|
|
// Set cachePath to a default value under ProgramDataPath
|
2019-02-10 00:14:34 +00:00
|
|
|
cachePath = Path.Combine(((BaseApplicationPaths)CommonApplicationPaths).ProgramDataPath, "cache");
|
2019-02-09 23:37:35 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Set cachePath to the existing live value; will require restart if UI value is removed (but not replaced)
|
|
|
|
// TODO: Figure out how to re-grab this from the CLI/envvars while running
|
|
|
|
cachePath = ((BaseApplicationPaths)CommonApplicationPaths).CachePath;
|
|
|
|
}
|
2016-10-29 05:40:15 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-02-09 23:37:35 +00:00
|
|
|
// Set cachePath to the new UI-set value
|
|
|
|
cachePath = CommonConfiguration.CachePath;
|
2016-10-29 05:40:15 +00:00
|
|
|
}
|
|
|
|
|
2019-02-09 23:37:35 +00:00
|
|
|
Logger.LogInformation("Setting cache path to " + cachePath);
|
2016-10-29 05:40:15 +00:00
|
|
|
((BaseApplicationPaths)CommonApplicationPaths).CachePath = cachePath;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Replaces the cache path.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="newConfig">The new configuration.</param>
|
2019-01-13 20:37:13 +00:00
|
|
|
/// <exception cref="DirectoryNotFoundException"></exception>
|
2016-10-29 05:40:15 +00:00
|
|
|
private void ValidateCachePath(BaseApplicationConfiguration newConfig)
|
|
|
|
{
|
|
|
|
var newPath = newConfig.CachePath;
|
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(newPath)
|
|
|
|
&& !string.Equals(CommonConfiguration.CachePath ?? string.Empty, newPath))
|
|
|
|
{
|
|
|
|
// Validate
|
2019-01-26 21:59:53 +00:00
|
|
|
if (!Directory.Exists(newPath))
|
2016-10-29 05:40:15 +00:00
|
|
|
{
|
|
|
|
throw new FileNotFoundException(string.Format("{0} does not exist.", newPath));
|
|
|
|
}
|
|
|
|
|
|
|
|
EnsureWriteAccess(newPath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void EnsureWriteAccess(string path)
|
|
|
|
{
|
|
|
|
var file = Path.Combine(path, Guid.NewGuid().ToString());
|
2019-01-27 14:48:26 +00:00
|
|
|
File.WriteAllText(file, string.Empty);
|
2016-10-29 05:40:15 +00:00
|
|
|
FileSystem.DeleteFile(file);
|
|
|
|
}
|
|
|
|
|
|
|
|
private readonly ConcurrentDictionary<string, object> _configurations = new ConcurrentDictionary<string, object>();
|
|
|
|
|
|
|
|
private string GetConfigurationFile(string key)
|
|
|
|
{
|
2019-01-27 11:03:43 +00:00
|
|
|
return Path.Combine(CommonApplicationPaths.ConfigurationDirectoryPath, key.ToLowerInvariant() + ".xml");
|
2016-10-29 05:40:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public object GetConfiguration(string key)
|
|
|
|
{
|
|
|
|
return _configurations.GetOrAdd(key, k =>
|
|
|
|
{
|
|
|
|
var file = GetConfigurationFile(key);
|
|
|
|
|
|
|
|
var configurationInfo = _configurationStores
|
|
|
|
.FirstOrDefault(i => string.Equals(i.Key, key, StringComparison.OrdinalIgnoreCase));
|
|
|
|
|
|
|
|
if (configurationInfo == null)
|
|
|
|
{
|
|
|
|
throw new ResourceNotFoundException("Configuration with key " + key + " not found.");
|
|
|
|
}
|
|
|
|
|
|
|
|
var configurationType = configurationInfo.ConfigurationType;
|
|
|
|
|
|
|
|
lock (_configurationSyncLock)
|
|
|
|
{
|
|
|
|
return LoadConfiguration(file, configurationType);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
private object LoadConfiguration(string path, Type configurationType)
|
|
|
|
{
|
2019-01-27 16:00:17 +00:00
|
|
|
if (!File.Exists(path))
|
2016-10-29 05:40:15 +00:00
|
|
|
{
|
2019-01-27 16:00:17 +00:00
|
|
|
return Activator.CreateInstance(configurationType);
|
2016-10-29 05:40:15 +00:00
|
|
|
}
|
2019-01-27 16:00:17 +00:00
|
|
|
|
|
|
|
try
|
2016-10-29 05:40:15 +00:00
|
|
|
{
|
2019-01-27 16:00:17 +00:00
|
|
|
return XmlSerializer.DeserializeFromFile(configurationType, path);
|
2016-10-29 05:40:15 +00:00
|
|
|
}
|
|
|
|
catch (IOException)
|
|
|
|
{
|
|
|
|
return Activator.CreateInstance(configurationType);
|
|
|
|
}
|
|
|
|
catch (Exception ex)
|
|
|
|
{
|
2018-12-20 12:11:26 +00:00
|
|
|
Logger.LogError(ex, "Error loading configuration file: {path}", path);
|
2016-10-29 05:40:15 +00:00
|
|
|
|
|
|
|
return Activator.CreateInstance(configurationType);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void SaveConfiguration(string key, object configuration)
|
|
|
|
{
|
|
|
|
var configurationStore = GetConfigurationStore(key);
|
|
|
|
var configurationType = configurationStore.ConfigurationType;
|
|
|
|
|
|
|
|
if (configuration.GetType() != configurationType)
|
|
|
|
{
|
|
|
|
throw new ArgumentException("Expected configuration type is " + configurationType.Name);
|
|
|
|
}
|
|
|
|
|
|
|
|
var validatingStore = configurationStore as IValidatingConfiguration;
|
|
|
|
if (validatingStore != null)
|
|
|
|
{
|
|
|
|
var currentConfiguration = GetConfiguration(key);
|
|
|
|
|
|
|
|
validatingStore.Validate(currentConfiguration, configuration);
|
|
|
|
}
|
|
|
|
|
2019-01-13 19:20:16 +00:00
|
|
|
NamedConfigurationUpdating?.Invoke(this, new ConfigurationUpdateEventArgs
|
2016-10-29 05:40:15 +00:00
|
|
|
{
|
|
|
|
Key = key,
|
|
|
|
NewConfiguration = configuration
|
2018-12-28 14:21:02 +00:00
|
|
|
});
|
2016-10-29 05:40:15 +00:00
|
|
|
|
|
|
|
_configurations.AddOrUpdate(key, configuration, (k, v) => configuration);
|
|
|
|
|
|
|
|
var path = GetConfigurationFile(key);
|
2019-01-26 21:08:04 +00:00
|
|
|
Directory.CreateDirectory(Path.GetDirectoryName(path));
|
2016-10-29 05:40:15 +00:00
|
|
|
|
|
|
|
lock (_configurationSyncLock)
|
|
|
|
{
|
|
|
|
XmlSerializer.SerializeToFile(configuration, path);
|
|
|
|
}
|
|
|
|
|
|
|
|
OnNamedConfigurationUpdated(key, configuration);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected virtual void OnNamedConfigurationUpdated(string key, object configuration)
|
|
|
|
{
|
2018-12-28 14:21:02 +00:00
|
|
|
NamedConfigurationUpdated?.Invoke(this, new ConfigurationUpdateEventArgs
|
2016-10-29 05:40:15 +00:00
|
|
|
{
|
|
|
|
Key = key,
|
|
|
|
NewConfiguration = configuration
|
2018-12-28 14:21:02 +00:00
|
|
|
});
|
2016-10-29 05:40:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public Type GetConfigurationType(string key)
|
|
|
|
{
|
|
|
|
return GetConfigurationStore(key)
|
|
|
|
.ConfigurationType;
|
|
|
|
}
|
|
|
|
|
|
|
|
private ConfigurationStore GetConfigurationStore(string key)
|
|
|
|
{
|
|
|
|
return _configurationStores
|
|
|
|
.First(i => string.Equals(i.Key, key, StringComparison.OrdinalIgnoreCase));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|